save_load_rda {gnn} | R Documentation |
Save and Load .rda Files with Conversion to Raw and Keras Models
Description
Save and load .rda
files with conversion to objects of class
raw
(for save_gnn()
) or "keras.engine.training.Model"
(for load_gnn()
).
Usage
save_gnn(..., file, name = NULL)
load_gnn(file)
Arguments
... |
objects to be saved in |
file |
|
name |
|
Value
- save_gnn()
nothing (generates an
.rda
by side-effect).- load_gnn()
the loaded object(s). Those of class
"gnn_GNN"
are converted withas.keras()
before they are returned; this also applies to a component of a loaded object of classlist
.
Author(s)
Marius Hofert
See Also
See the underlying functions load()
and save()
(among others).
Examples
if(TensorFlow_available()) { # rather restrictive (due to R-Forge, winbuilder)
library(gnn) # for being standalone
file <- tempfile("foo", fileext = ".rda")
GMMN1 <- FNN()
save_gnn(GMMN1, file = file) # converts GMMN via as.raw()
GMMN2 <- load_gnn(file) # converts loaded object via as.keras()
stopifnot(is.GNN(GMMN2), inherits(GMMN2[["model"]], "keras.engine.training.Model"))
rm(GMMN1, GMMN2) # clean-up
stopifnot(file.remove(file))
}
[Package gnn version 0.0-4 Index]