"torchvision/git@developer.sourcefind.cn:OpenDAS/vision.git" did not exist on "a7501e13087ec74af9f52ec155ec1948f6318c90"
Unverified Commit b9b145c3 authored by Tong Gao's avatar Tong Gao Committed by GitHub
Browse files

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

parent ca68637c
...@@ -19,3 +19,5 @@ opt125m = dict( ...@@ -19,3 +19,5 @@ opt125m = dict(
batch_size=128, batch_size=128,
run_cfg=dict(num_gpus=1), # Run configuration for specifying resource requirements run_cfg=dict(num_gpus=1), # Run configuration for specifying resource requirements
) )
models = [opt125m]
...@@ -19,3 +19,5 @@ opt350m = dict( ...@@ -19,3 +19,5 @@ opt350m = dict(
batch_size=64, batch_size=64,
run_cfg=dict(num_gpus=1), # Run configuration for specifying resource requirements run_cfg=dict(num_gpus=1), # Run configuration for specifying resource requirements
) )
models = [opt350m]
...@@ -90,7 +90,7 @@ In OpenCompass, each evaluation task consists of the model to be evaluated and t ...@@ -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`. Users can combine the models and datasets they want to test using `--models` and `--datasets`.
```bash ```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`. 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`.
......
...@@ -89,7 +89,7 @@ OpenCompass 中,每个评测任务都由待评测的模型和数据集组成 ...@@ -89,7 +89,7 @@ OpenCompass 中,每个评测任务都由待评测的模型和数据集组成
用户可以通过 `--models` 和 `--datasets` 组合待测试的模型和数据集。 用户可以通过 `--models` 和 `--datasets` 组合待测试的模型和数据集。
```bash ```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` 查看或筛选当前可用的模型和数据集配置。 模型和数据集以配置文件的形式预先存放在 `configs/models` 和 `configs/datasets` 下。用户可以通过 `tools/list_configs.py` 查看或筛选当前可用的模型和数据集配置。
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment