jit_save_for_mobile {torch} | R Documentation |
Saves a script_function
or script_module
in bytecode form,
to be loaded on a mobile device
Description
Saves a script_function
or script_module
in bytecode form,
to be loaded on a mobile device
Usage
jit_save_for_mobile(obj, path, ...)
Arguments
obj |
An |
path |
The path to save the serialized function. |
... |
currently unused |
Examples
if (torch_is_installed()) {
fn <- function(x) {
torch_relu(x)
}
input <- torch_tensor(c(-1, 0, 1))
tr_fn <- jit_trace(fn, input)
tmp <- tempfile("tst", fileext = "pt")
jit_save_for_mobile(tr_fn, tmp)
}
[Package torch version 0.13.0 Index]