Replies: 4 comments
-
关于图标分组,两种基于API的自动分组方式: 第一种,斜杠 swanlab.log({
'train/loss': loss
}) 第二种,字典嵌套: swanlab.log({
'train':{
'loss': loss
}
}) |
Beta Was this translation helpful? Give feedback.
0 replies
-
config: import swanlab
run = swanlab.init()
config = run.config
config.lr = 0.01 |
Beta Was this translation helpful? Give feedback.
0 replies
-
在swanlab.init中增加API - autowatch,支持在运行训练脚本时自动开启实验看板 |
Beta Was this translation helpful? Give feedback.
0 replies
-
对于嵌套字典的处理逻辑,得再想想 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
pass
Beta Was this translation helpful? Give feedback.
All reactions