-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Commit configuration code and delete configs/.gitkeep.
- Loading branch information
1 parent
e0988f0
commit 26a9a2f
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import os.path as osp | ||
|
||
# 一些常量 | ||
|
||
MODEL_CONFIG = { | ||
|
||
} | ||
|
||
TRAIN_CONFIG = { | ||
# checkpoints保存在哪里 | ||
|
||
# 随机数种子 | ||
|
||
# 训练数据集配置 | ||
|
||
# 优化器 | ||
|
||
# 学习率 | ||
|
||
# 日志保存在哪里 | ||
|
||
# ... | ||
|
||
} | ||
|
||
TEST_CONFIG = { | ||
# 日志保存在哪里 | ||
|
||
# 从哪里读取模型 | ||
|
||
# ... | ||
|
||
} |