Takes a Keras model and saves it in two files. One file is the keras model itself (saved as hdf5) and the other is the R environment required for sits to work with the model.
sits_keras_save(
model,
hdffile = "./model_keras.h5",
rdsfile = "./model_keras.rds"
)
An R Keras model.
An hdf5 file where the keras model is to be saved.
A rds file where the R environment is to be saved.