yandex-research / rtdl-num-embeddings

(NeurIPS 2022) On Embeddings for Numerical Features in Tabular Deep Learning
https://arxiv.org/abs/2203.05556
MIT License
302 stars 33 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 10 months ago

Phoebe-ovo commented 10 months 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 10 months 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 10 months ago

Thank you!