plot.keras_model {sits}R Documentation

Plot Keras (deep learning) model

Description

plots a deep learning model developed using keras

Usage

## S3 method for class 'keras_model'
plot(x, y, ...)

Arguments

x

Object of class "keras_model"

y

ignored

...

further specifications for plot.

Value

The plot itself.

Author(s)

Gilberto Camara, gilberto.camara@inpe.br

Examples

## 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)


[Package sits version 0.16.2 Index]