PyTorch v0.1.1: Tar file with the sys_info , pickle , storages , and tensors directories PyTorch v0.1.10: Stacked pickle files TorchScript v1.0: ZIP file with the model.json file TorchScript v1.1: ZIP file with the model.json and attributes.pkl files (one pickle file) TorchScript v1.3: ZIP file with the data.pkl and constants.pkl files (two pickle files) TorchScript v1.4: ZIP file with the data.pkl , constants.pkl , and version files set at 2 or higher (two pickle files) PyTorch v1.3: ZIP file containing data.pkl (one pickle file) PyTorch model archive format [ZIP]: ZIP file that includes Python code files and pickle files > import torch > import torchvision.models as models > import fickling.polyglot as polyglot > model = models.mobilenet_v2() > torch.save(model, "mobilenet.pth") >…