| plot.keras_model {sits} | R Documentation |
plots a deep learning model developed using keras
## S3 method for class 'keras_model' plot(x, y, ...)
x |
Object of class "keras_model" |
y |
ignored |
... |
further specifications for plot. |
The plot itself.
Gilberto Camara, gilberto.camara@inpe.br
## Not run:
# Get a set of samples
samples_ndvi_evi <- sits_select(samples_modis_4bands,
bands = c("NDVI", "EVI"))
# train a deep learning model
dl_model <- sits_train(samples_ndvi_evi, ml_method = sits_mlp())
plot(dl_model)
## End(Not run)