Saving to deploy to production #57
-
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
PyTorch Tabular only saves the files which are necessary for reconstruction, even if it is for inference. Apart from the model (which is the The large object might be the |
Beta Was this translation helpful? Give feedback.
PyTorch Tabular only saves the files which are necessary for reconstruction, even if it is for inference. Apart from the model (which is the
.ckpt
), it also needs the necessary preprocessing of the data(which isdatamodule.sav
), the config (config.yml
), etc. to do inference.The large object might be the
datamodule.sav
, which is because we are holding on to the data in the datamodule. That is something that we can remove to make the whole folder size lesser. Will add that to the roadmap to make this experience smoother.