[Docs] Fix incorrect name in get_started (#380)

This commit is contained in:
Tong Gao 2023-09-11 16:10:09 +08:00 committed by GitHub
parent ca68637c4e
commit b9b145c335
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 2 deletions

View File

@ -19,3 +19,5 @@ opt125m = dict(
batch_size=128,
run_cfg=dict(num_gpus=1), # Run configuration for specifying resource requirements
)
models = [opt125m]

View File

@ -19,3 +19,5 @@ opt350m = dict(
batch_size=64,
run_cfg=dict(num_gpus=1), # Run configuration for specifying resource requirements
)
models = [opt350m]

View File

@ -90,7 +90,7 @@ In OpenCompass, each evaluation task consists of the model to be evaluated and t
Users can combine the models and datasets they want to test using `--models` and `--datasets`.
```bash
python run.py --models opt_125m opt_350m --datasets siqa_gen winograd_ppl
python run.py --models hf_opt_125m hf_opt_350m --datasets siqa_gen winograd_ppl
```
The models and datasets are pre-stored in the form of configuration files in `configs/models` and `configs/datasets`. Users can view or filter the currently available model and dataset configurations using `tools/list_configs.py`.

View File

@ -89,7 +89,7 @@ OpenCompass 中,每个评测任务都由待评测的模型和数据集组成
用户可以通过 `--models``--datasets` 组合待测试的模型和数据集。
```bash
python run.py --models opt_125m opt_350m --datasets siqa_gen winograd_ppl
python run.py --models hf_opt_125m hf_opt_350m --datasets siqa_gen winograd_ppl
```
模型和数据集以配置文件的形式预先存放在 `configs/models``configs/datasets` 下。用户可以通过 `tools/list_configs.py` 查看或筛选当前可用的模型和数据集配置。