torch.jit.save¶
-
torch.jit.
save
(m, f, _extra_files=ExtraFilesMap{})[source]¶ Save an offline version of this module for use in a separate process. The saved module serializes all of the methods, submodules, parameters, and attributes of this module. It can be loaded into the C++ API using
torch::jit::load(filename)
or into the Python API withtorch.jit.load
.To be able to save a module, it must not make any calls to native Python functions. This means that all submodules must be subclasses of
ScriptModule
as well.Danger
All modules, no matter their device, are always loaded onto the CPU during loading. This is different from
torch.load()
’s semantics and may change in the future.- Parameters
m – A
ScriptModule
to save.f – A file-like object (has to implement write and flush) or a string containing a file name.
_extra_files – Map from filename to contents which will be stored as part of f.
Warning
If you are using Python 2, save does NOT support
StringIO.StringIO
as a valid file-like object. This is because the write method should return the number of bytes written;StringIO.write()
does not do this.Please use something like
io.BytesIO
instead.Example:
import torch import io class MyModule(torch.nn.Module): def forward(self, x): return x + 10 m = torch.jit.script(MyModule()) # Save to file torch.jit.save(m, 'scriptmodule.pt') # This line is equivalent to the previous m.save("scriptmodule.pt") # Save to io.BytesIO buffer buffer = io.BytesIO() torch.jit.save(m, buffer) # Save with extra files extra_files = torch._C.ExtraFilesMap() extra_files['foo.txt'] = 'bar' torch.jit.save(m, 'scriptmodule.pt', _extra_files=extra_files)