yandex-research / rtdl-num-embeddings

(NeurIPS 2022) On Embeddings for Numerical Features in Tabular Deep Learning
https://arxiv.org/abs/2203.05556
MIT License
312 stars 34 forks source link

How can I save model parameters? I want to load the pre-trained model by myself in other experiments #16

Closed Phoebe-ovo closed 1 year ago

Phoebe-ovo commented 1 year ago

I observed that: the checkpoint.pt only save: report, study, trail_reports, timer, random_state. I want to save the model parameters which can be loaded by anyone else.

Yura52 commented 1 year ago

We don't save all model checkpoints during hyperparameter tuning, because that would consume significant amount of memory.

How to implement:

Phoebe-ovo commented 1 year ago

Thank you!