You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
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.
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?The text was updated successfully, but these errors were encountered: