Skip to content

Commit ce8707d

Browse files
committed
docs: update requirements, version label, gitignore
1 parent 0e6824b commit ce8707d

4 files changed

Lines changed: 6 additions & 3 deletions

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ RLA.egg-info**
88
**/code/**
99
**/results/**
1010
**/log/**
11+
**/arc/**
1112
**/.ipynb_checkpoints/*
1213
**/.DS_Store
1314
test/target_data_root/*
14-
**/arc/**

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ We build an example project for integrating RLA, which can be seen in ./example/
116116
**/code/**
117117
**/results/**
118118
**/log/**
119+
**/arc/**
119120
```
120121
### Step2: record intermediate variables/checkpoints/other types of data.
121122

RLA/easy_log/log_tools.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,7 @@ def _archive_log(self, show=False):
198198
for root_dir in glob.glob(root_dir_regex):
199199
empty = False
200200
if os.path.exists(root_dir):
201+
# remove the overlapped path.
201202
archiving_target = osp.join(archive_root_dir, root_dir[prefix_len+1:])
202203
archiving_target_dir = '/'.join(archiving_target.split('/')[:-1])
203204
os.makedirs(archiving_target_dir, exist_ok=True)

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name='RLA',
8-
version="0.5.2",
8+
version="0.5.3",
99
description=(
1010
'RL assistant'
1111
),
@@ -20,6 +20,7 @@
2020
"argparse",
2121
"dill",
2222
"seaborn",
23-
"pathspec"
23+
"pathspec",
24+
'tensorboardX'
2425
]
2526
)

0 commit comments

Comments
 (0)