Why pytorch's model is much smaller than torch's?

Hi,

I’m new to pytorch, and I find that pytorch’s model files size is much smaller than torch’s. For example: resent-18

pytorch’s model is 44.7MB, torch’s model is 138MB

Why there is so much difference ?

Thanks in advance.

torch’s models still saves gradWeight/gradBias i think. So pytorch saves half size on that.

1 Like

Yes, that’s right, after I set the gradWeight/gradBias to nil, the two model are nearly same.

Thanks!