| saveRDS | R Documentation |
SpatialExperiment objects as RDS filesSave SpatialExperiment and
DeconvDLModel objects as RDS files. keras models
cannot be stored natively as R objects (e.g. RData or RDS files). By saving
the architecture as a JSON-like character object and the weights as a list,
it is possible to retrieve a functional model and make new predictions. If
the trained.model slot is empty, the function will behave as usual.
Note: with this option, the state of optimizer is not saved, only
model's architecture and weights. It is possible to save the entire model as
an HDF5 file with the saveTrainedModelAsH5 function and load it
into a SpatialExperiment object with the
loadTrainedModelFromH5 function. See documentation for details.
saveRDS(
object,
file,
ascii = FALSE,
version = NULL,
compress = TRUE,
refhook = NULL
)
## S4 method for signature 'DeconvDLModel'
saveRDS(
object,
file,
ascii = FALSE,
version = NULL,
compress = TRUE,
refhook = NULL
)
## S4 method for signature 'SpatialDDLS'
saveRDS(
object,
file,
ascii = FALSE,
version = NULL,
compress = TRUE,
refhook = NULL
)
object |
|
file |
File path where the object will be saved |
ascii |
a logical. If |
version |
the workspace format version to use. |
compress |
a logical specifying whether saving to a named file is
to use |
refhook |
a hook function for handling reference objects. |
No return value, saves a
SpatialExperiment object as an RDS file on
disk.
SpatialExperiment
saveTrainedModelAsH5
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.