write {dgpsi} | R Documentation |
Save the constructed emulator
Description
This function saves the constructed emulator to a .pkl
file.
Usage
write(object, pkl_file, light = TRUE)
Arguments
object |
an instance of the S3 class |
pkl_file |
the path to and the name of the |
light |
a bool indicating if a light version of the constructed emulator (that requires a small storage) will be saved.
This argument has no effects on GP or bundles of GP emulators. Defaults to |
Details
See further examples and tutorials at https://mingdeyu.github.io/dgpsi-R/.
Value
No return value. object
will be save to a local .pkl
file specified by pkl_file
.
Note
Since the constructed emulators are 'python' objects, save()
from R will not work as it is only for R objects.
Examples
## Not run:
# See gp(), dgp(), lgp(), or pack() for an example.
## End(Not run)
[Package dgpsi version 2.4.0 Index]