mirror of
https://github.com/FoundationAgents/MetaGPT.git
synced 2026-04-26 17:26:22 +02:00
1. update readme
2. fix duration
This commit is contained in:
parent
72bd1665b1
commit
aea524b4ea
2 changed files with 13 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue