Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@ Suggests:
png,
jpeg
Roxygen: list(markdown = TRUE, r6 = FALSE)
RoxygenNote: 7.3.1
RoxygenNote: 7.3.2
VignetteBuilder: knitr
2 changes: 1 addition & 1 deletion R/callbacks.R
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ callback_lambda <- function(on_epoch_begin = NULL, on_epoch_end = NULL,
#'
#' @docType class
#'
#' @format An [R6Class] generator object
#' @format An [R6::R6Class] generator object
#'
#' @field params Named list with training parameters (eg. verbosity, batch size, number of epochs...).
#' @field model Reference to the Keras model being trained.
Expand Down
2 changes: 1 addition & 1 deletion R/constraints.R
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ constraint_minmaxnorm <- function(min_value = 0.0, max_value = 1.0, rate = 1.0,
#'
#' @docType class
#'
#' @format An [R6Class] generator object
#' @format An [R6::R6Class] generator object
#'
#' @section Methods:
#' \describe{
Expand Down
2 changes: 1 addition & 1 deletion R/layer-custom.R
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#'
#' @docType class
#'
#' @format An [R6Class] generator object
#' @format An [R6::R6Class] generator object
#' @section Methods: \describe{ \item{\code{build(input_shape)}}{Creates the
#' layer weights (must be implemented by all layers that have weights)}
#' \item{\code{call(inputs,mask)}}{Call the layer on an input tensor.}
Expand Down
4 changes: 4 additions & 0 deletions R/package.R
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,10 @@ keras <- NULL

.onLoad <- function(libname, pkgname) {

packageStartupMessage(
"The keras package is deprecated. Use the keras3 package instead."
)

# resolve the implementation module (might be keras proper or might be tensorflow)
implementation_module <- resolve_implementation_module()

Expand Down
2 changes: 1 addition & 1 deletion R/wrapper_custom.R
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#'
#' @docType class
#'
#' @format An [R6Class] generator object
#' @format An [R6::R6Class] generator object
#'
#' @section Methods: \describe{
#' \item{\code{build(input_shape)}}{Builds the wrapped layer.
Expand Down
2 changes: 1 addition & 1 deletion man/KerasCallback.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/KerasConstraint.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/KerasLayer.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/KerasWrapper.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading