New Features
- New UI & UX By SAKURA-CAT, Feudalman in 177
- Responsive page design: Optimized viewing experience for various resolution devices such as mobile phones and tablets. By SAKURA-CAT, Feudalman, 177
- Addition of automatic environment recording: Command, Git Branch, Git Commit, Memory. By xiaolin199912 in 169
- Addition of automatic environment recording for Requirements - Supports automatically recording the pip environment list of the current training environment. By xiaolin199912 in 169
- Logs and Requirements support search, copy and download by Feudalman in 179, 173
- `swanlab.init` adds API `logdir`: Supports setting the save location of log files. By SAKURA-CAT ,Feudalman in 142
- `swanlab watch` adds API `--logdir`, supports specifying the location of log files to be read.
- `swanlab.init`->`config` supports calling like Argparse by xiaolin199912,SAKURA-CAT in 178 examples:
python
import swanlab
run = swanlab.init(
config={'epoch': 20}
)
print(run.config.epoch)
Optimization
- Optimized logic for displaying x-axis on Charts by SAKURA-CAT.
- Optimized auto-refresh logic for Charts to improve performance by SAKURA-CAT.
- Optimized record format for extremely small and large numbers on Charts and Summary by SAKURA-CAT,Feudalman in 196.
- Added unit tests by Ink in 171.
Bug Fixes
- Fixed an issue with recording Requirements: by xiaolin199912in 184
- Fixed display issue when rounding floating point numbers on Charts: by Feudalman in 105.
新增功能
- 全新的UI & UX By SAKURA-CAT、Feudalman in 177
- 页面响应式:优化手机、平板等各种分辨率设备查看实验看板的体验 By SAKURA-CAT、Feudalman,177
- 自动环境记录增加:Command 、Git Branch、Git Commit、内存 By xiaolin199912 in 169
- 自动环境记录增加Requirements-支持自动记录当前训练环境的pip环境列表 By xiaolin199912 in 169
- Logs、Requirements支持搜索、复制与下载 by Feudalman in 179、173
- `swanlab.init`增加API`logdir`:支持设定日志文件的保存位置 by SAKURA-CAT 、Feudalman in 142
- `swanlab watch`增加API`--logdir`,支持指定要读取的日志文件位置,
- `swanlab.init`->`config`支持形如Argparse的方式调用 by xiaolin199912、SAKURA-CAT in 178, examples:
python
import swanlab
run = swanlab.init(
config={'epoch': 20}
)
print(run.config.epoch)
优化
- 优化Charts横坐标的显示逻辑 by SAKURA-CAT
- 优化Charts的自动刷新逻辑,提高性能 by SAKURA-CAT
- 优化Charts、Summary对极小数、极大数的记录方式 by SAKURA-CAT、Feudalman in 196
- 增加单元测试 by swpfY in 171
问题修复
- 修复记录Requirements时的问题:by xiaolin199912 in 184
- 修复Charts记录取整的浮点数时的显示问题:by Feudalman in 105
Full changes: https://github.com/SwanHubX/SwanLab/compare/v0.1.3...v0.1.4