Skip to content

Commit 02149fe

Browse files
committed
-- v 0.6
1 parent 4c40692 commit 02149fe

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

docs/history.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,11 @@ History
3737
- Added a few more Trainer Params like `deterministic`, `auto_select_gpus`
3838
- Some bug fixes and changes to docs
3939
- Added `seed_everything` to the fit method to ensure reproducibility
40-
- Refactored data_aware_initialization to be part of the BaseModel. Inherited Models can override the method to implement data aware initialization techniques
40+
- Refactored data_aware_initialization to be part of the BaseModel. Inherited Models can override the method to implement data aware initialization techniques
41+
42+
0.7.0 (2021-09-01)
43+
------------------
44+
- Implemented TabTransformer and FTTransformer models
45+
- Included capability to save a model using GPU an load in CPU
46+
- Made the temp folder pytorch tabular specific to avoid conflicts with other tmp folders.
47+
- Some bug fixes and changes to docs

pytorch_tabular/config/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ def __init__(
494494
self.exp_version_manager = OmegaConf.load(exp_version_manager)
495495
else:
496496
self.exp_version_manager = OmegaConf.create({})
497-
os.makedirs(".pt_tmp", exist_ok=True)
497+
os.makedirs(os.path.split(exp_version_manager)[0], exist_ok=True)
498498
with open(self._exp_version_manager, "w") as file:
499499
OmegaConf.save(config=self.exp_version_manager, f=file)
500500

0 commit comments

Comments
 (0)