Skip to content

Commit

Permalink
Commit configuration code and delete configs/.gitkeep.
Browse files Browse the repository at this point in the history
  • Loading branch information
hilinxinhui committed May 14, 2023
1 parent e0988f0 commit 26a9a2f
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
Empty file removed configs/.gitkeep
Empty file.
33 changes: 33 additions & 0 deletions configs/configuration.py
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 = {
# 日志保存在哪里

# 从哪里读取模型

# ...

}

0 comments on commit 26a9a2f

Please sign in to comment.