DeepTables icon indicating copy to clipboard operation
DeepTables copied to clipboard

Trained model is saved to '/tmp/workdir'

Open zrcahyx opened this issue 3 years ago • 1 comments

After training my deeptable model,i used dt.save('mypath') to store it. However, the model was not saved to the path i set. Instead, it was saved to /tmp/workdir/mypath. That's quite strange. Can anyone tell me the reason?

zrcahyx avatar Feb 23 '22 11:02 zrcahyx

DeepTables reuse Hypernets filesystem utility to store intermediate data (model files, cache data, etc.) in the work_dir, which is a subdirectory under the system temporary directory by default.

To customize work_dir location, see customize_storage (from HyperGBM) as a reference.

lixfz avatar Jan 10 '23 11:01 lixfz