1. update readme

2. fix duration
This commit is contained in:
Yizhou Chi 2024-09-04 14:49:18 +08:00
parent 72bd1665b1
commit aea524b4ea
2 changed files with 13 additions and 1 deletions

View file

@ -57,6 +57,18 @@ ### AIDE
提供github链接并说明使用的命令以及参数设置
### Autogluon
#### Setup
```
pip install -U pip
pip install -U setuptools wheel
CPU version of pytorch has smaller footprint - see installation instructions in
pytorch documentation - https://pytorch.org/get-started/locally/
pip install torch==2.3.1 torchvision==0.18.1 --index-url https://download.pytorch.org/whl/cpu
pip install autogluon
```
提供github链接并说明使用的命令以及参数设置
### Base DI

View file

@ -77,7 +77,7 @@ class Experimenter:
time_info = {
"start_time": self.start_time,
"end_time": end_time,
"duration (seconds)": float(end_time) - float(self.start_time)
"duration (minutes)": float(end_time) - float(self.start_time)
}
result = result.copy()
result.insert(0, time_info)