summaryrefslogtreecommitdiff
path: root/torch/serialization.py
AgeCommit message (Expand)AuthorFilesLines
2019-03-28Serialization supports pathlib.Path object for the input argument (#18562)Hyungjoo Andrew Cho1-2/+4
2019-02-21Avoid unnecessary CPU-to-GPU copy of torch.load with CUDA (#17297)Luca Wehrstedt1-3/+9
2019-01-29create type hint stub files for module torch (#12500)Thomas Viehmann1-1/+1
2018-12-28Error when torch.load-ing a JIT model (#15578)David Riazati1-0/+4
2018-12-10Support torch.load with encoding (#14743)SsnL1-15/+39
2018-12-03Restore device when import jit script module (#14454)Lu Fang1-17/+26
2018-09-06Reimplement storage slicing. (#11314)Edward Yang1-14/+1
2018-07-16Eliminate storage views. (#9466)Edward Yang1-7/+22
2018-06-29add note to avoid memory surge on GPU (#9019)Ailing Zhang1-0/+5
2018-06-12raise more informative error msg for torch.load not support seek (#7754)Wei Yang1-0/+20
2018-05-31support loading gzip (#6490)li-roy1-7/+21
2018-05-31Raise error when torch.load a storage on a non-existing device (#7921)Richard Zou1-0/+13
2018-05-10Allow the use of torch.device for loading (#7339)Ethan Steinberg1-3/+9
2018-04-21Update docs with new tensor repr (#6454)li-roy1-1/+1
2018-03-13[ready] General Documentation Improvements - 2 (#5685)Vishwak Srinivasan1-3/+2
2018-03-08torch.load() / torch.save() support arbitrary file-like object (#5466)Richard Zou1-12/+50
2018-03-08[ready] General documentation improvements (#5450)Vishwak Srinivasan1-11/+11
2018-02-20add guards when source of container cannot be retreived (#5317)Soumith Chintala1-1/+7
2017-12-16Allow map_location in torch.load to be a stringAdam Paszke1-2/+11
2017-12-05Delete _write_metadata and move _new_with_metadata_file into Python (#4020)Sam Gross1-2/+8
2017-11-17Remove hard file offset reset in load() (#3695)Philipp Lang1-6/+8
2017-11-11Allow torch.load and torch.save to take pathlib.Path (#3589)Jaemin Cho1-2/+7
2017-10-23Fix E722 ('do not use bare except') (#3239)Sam Gross1-1/+1
2017-10-17Change device_id to device in python land (#3133)SsnL1-2/+2
2017-10-14improve torch.load documentation (#3118)greaber1-11/+28
2017-09-05Frontend refactor, and some documentation.Edward Z. Yang1-9/+17
2017-07-10[Ready] Limit docs line length (#1900)Leonid Vlasenkov1-5/+7
2017-04-11Handle all errors if Module's sources can't be retrievedAdam Paszke1-1/+1
2017-03-15Fix map_location in torch.load (#1006)Sam Gross1-2/+9
2017-02-26CUDA documentation tweaks (#858)Eli Stevens1-22/+1
2017-02-26CUDA documentation enhancement and docs versioning (#848)Eli Stevens1-0/+23
2017-02-22improved serialization (no tar copy) (#713)Adam Lerer1-130/+161
2017-01-28[pep8] Fix most lint automatically with autopep8Luke Yeager1-14/+14
2017-01-16Deprecate nn.Container in favor of nn.ModuleAdam Paszke1-2/+2
2016-12-16serialization bug fix (#314)Soumith Chintala1-1/+1
2016-12-01Don't raise an error when retrieval of container's source code failsAdam Paszke1-3/+11
2016-11-03Move source code checks from __getstate__ to torch.load (#200)Sam Gross1-7/+61
2016-11-01Accept file paths in torch.save and torch.loadAdam Paszke1-1/+26
2016-10-31Make every user-visible Tensor have a Storage (#179)Sam Gross1-7/+3
2016-10-04Allow remapping storages at load time and serialize data in little endian orderAdam Paszke1-12/+126
2016-09-25Preserve storage view sharing in torch.save and torch.loadAdam Paszke1-13/+37
2016-09-20Codemod to remove camel case method namingAdam Paszke1-2/+2
2016-09-15Fix nn serialization errorsAdam Paszke1-3/+7
2016-08-23Fix Log autograd testAdam Paszke1-1/+3
2016-08-23Add torch.save and torch.loadAdam Paszke1-0/+120