Nothing
#' Plot model architecture to a file
#'
#' This function requires that you have installed graphviz and
#' pydot in Python.
#'
#' @param model model object to plot
#' @param to_file output location of the plot)
#' @param show_shapes controls whether output shapes are shown in the
#' graph
#' @param show_layer_names controls whether layer names are shown in the
#' graph
#'
#' @template boilerplate
#' @export
plot_model <- function(model, to_file = "model.png", show_shapes = FALSE,
show_layer_names = TRUE) {
keras_check() # nocov
if (!reticulate::py_module_available("pydot")) {
py_path <- reticulate::py_config()$python
msg <-
c("The python module pydot is not\n",
"available from the Python executable located here:",
"\n\n ",
py_path, "\n\n",
"These can be installed with pip by running either of:\n",
"\n pip install pydot\n\n",
"If you believe it is already installed, you may be linking \n",
"to the wrong version of Python. See reticulate::use_python()\n",
"to set python path, then use kerasR::keras_init() to retry.\n",
"You may need to restart R before use_python takes effect.")
stop(msg)
}
if (!reticulate::py_module_available("graphviz")) {
py_path <- reticulate::py_config()$python
msg <-
c("The python module graphviz is not\n",
"available from the Python executable located here:",
"\n\n ",
py_path, "\n\n",
"These can be installed with pip by running either of:\n",
"\n pip install graphviz\n\n",
"If you believe it is already installed, you may be linking \n",
"to the wrong version of Python. See reticulate::use_python()\n",
"to set python path, then use kerasR::keras_init() to retry.\n",
"You may need to restart R before use_python takes effect.")
stop(msg)
}
modules$keras.utils$plot_model(model = model, to_file = to_file, # nocov
show_shapes = show_shapes, # nocov
show_layer_names = show_layer_names) # nocov
}
#' Converts a class vector (integers) to binary class matrix.
#'
#' This function takes a vector or 1 column matrix of class labels
#' and converts it into a matrix with p columns, one for each category.
#' This is the format most commonly used in the fitting and predicting
#' of neural networks.
#'
#' @param y class vector to be converted into a matrix
#' (integers from 0 to num_classes).
#' @param num_classes total number of classes. Set to `NULL` to
#' autodetect from the input.
#'
#' @template boilerplate
#' @export
to_categorical <- function(y, num_classes = NULL) {
keras_check()
if (!is.null(num_classes))
num_classes <- int32(num_classes)
modules$keras.utils$to_categorical(y = int32(y), num_classes = num_classes)
}
#' Normalize a Numpy array.
#'
#' It is generally very important to normalize the data matrix before
#' fitting a neural network model in keras.
#'
#' @param x Numpy array to normalize
#' @param axis axis along which to normalize. (starts at 0). -1
#' @param order Normalization order (e.g. 2 for L2 norm).
#'
#' @template boilerplate
#' @export
normalize <- function(x, axis = -1, order = 2) {
keras_check()
modules$keras.utils$normalize(x = x, axis = int32(axis),
order = int32(order))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.