| plot.keras_training_history | R Documentation | 
Plots metrics recorded during training.
## S3 method for class 'keras_training_history'
plot(
  x,
  y,
  metrics = NULL,
  method = c("auto", "ggplot2", "base"),
  smooth = getOption("keras.plot.history.smooth", TRUE),
  theme_bw = getOption("keras.plot.history.theme_bw", FALSE),
  ...
)
| x | Training history object returned from
 | 
| y | Unused. | 
| metrics | One or more metrics to plot (e.g.  | 
| method | Method to use for plotting. The default "auto" will use ggplot2 if available, and otherwise will use base graphics. | 
| smooth | Whether a loess smooth should be added to the plot, only
available for the  | 
| theme_bw | Use  | 
| ... | Additional parameters to pass to the  | 
if method == "ggplot2", the ggplot object is returned. If
method == "base", then this function will draw to the graphics device and
return NULL, invisibly.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.