DeepTables
DeepTables copied to clipboard
Trained model is saved to '/tmp/workdir'
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?
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.