Pytorch model taking too much space

Hi,
While saving a model, I came to realize that they are taking huge space. Is there any way to store Pytorch’s models in a compressed format?
Thanks.
:-}

torch.save already compresses the file via the _use_new_zipfile_serialization=True argument. I don’t know, if another pickle_module or pickle_protocol could potentially yield more space savings.