typo(installation.md): fix unzip commands (#774)

* Update installation.md

* Update installation.md
This commit is contained in:
tpoisonooo 2024-01-08 14:23:35 +08:00 committed by GitHub
parent 11f3b91e78
commit ba1b684fec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -87,13 +87,13 @@ wget https://github.com/open-compass/opencompass/releases/download/0.1.8.rc1/Ope
unzip OpenCompassData-core-20231110.zip
```
If you need to use the more comprehensive dataset (~500M) provided by OpenCompass, You can download it using the following command:
If you need to use the more comprehensive dataset (~500M) provided by OpenCompass, You can download and `unzip` it using the following command:
```bash
wget https://github.com/open-compass/opencompass/releases/download/0.1.8.rc1/OpenCompassData-complete-20231110.zip
unzip OpenCompassData-complete-20231110.zip
cd ./data
unzip *.zip
find . -name "*.zip" -exec unzip {} \;
```
The list of datasets included in both `.zip` can be found [here](https://github.com/open-compass/opencompass/releases/tag/0.1.8.rc1)

View File

@ -88,13 +88,13 @@ wget https://github.com/open-compass/opencompass/releases/download/0.1.8.rc1/Ope
unzip OpenCompassData-core-20231110.zip
```
如果需要使用 OpenCompass 提供的更加完整的数据集 (~500M),可以使用下述命令进行下载:
如果需要使用 OpenCompass 提供的更加完整的数据集 (~500M),可以使用下述命令进行下载和解压
```bash
wget https://github.com/open-compass/opencompass/releases/download/0.1.8.rc1/OpenCompassData-complete-20231110.zip
unzip OpenCompassData-complete-20231110.zip
cd ./data
unzip *.zip
find . -name "*.zip" -exec unzip {} \;
```
两个 `.zip` 中所含数据集列表如[此处](https://github.com/open-compass/opencompass/releases/tag/0.1.8.rc1)所示。