| sits_keras_diagnostics {sits} | R Documentation |
After the Keras deeplearning model is compiled and fit, this function provides access to the history plot and the evaluation results.
sits_keras_diagnostics(dl_model)
dl_model |
A valid keras model. |
This function returns NULL. It only prints the model diagnostics.
Gilberto Camara, gilberto.camara@inpe.br
## Not run:
# Retrieve the set of samples for the Mato Grosso (provided by EMBRAPA)
data(cerrado_2classes)
# obtain a DL model
dl_model <- sits_train(
cerrado_2classes,
sits_deeplearning(
layers = c(512, 512), dropout_rates = c(0.45, 0.25),
epochs = 100
)
)
# run the keras diagnostics
sits_keras_diagnostics(dl_model)
## End(Not run)