Skip to content

Commit

Permalink
Merge pull request InternLM#413 from fly2tomato/main
Browse files Browse the repository at this point in the history
Usw `ln` instead of the `cp` to alleviate storage pressure
  • Loading branch information
crazysteeaam committed Jan 22, 2024
2 parents cc23ede + 9412b47 commit 8404bee
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions xtuner/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![m3qx](imgs/head2.png)

> 怎么硕呢,祝大家炼丹愉快吧~ 😙
> 怎么说呢,祝大家炼丹愉快吧~ 😙
## 1 概述

Expand Down Expand Up @@ -120,8 +120,12 @@ xtuner copy-cfg internlm_chat_7b_qlora_oasst1_e3 .
> 由于下载模型很慢,用教学平台的同学可以直接复制模型。
```Bash
cp -r /root/share/temp/model_repos/internlm-chat-7b ~/ft-oasst1/
ln -s /share/temp/model_repos/internlm-chat-7b ~/ft-oasst1/
```
以上是通过软链的方式,将模型文件挂载到家目录下,优势是:
1. 节省拷贝时间,无需等待
2. 节省用户开发机存储空间
> 当然,也可以用 `cp -r /share/temp/model_repos/internlm-chat-7b ~/ft-oasst1/` 进行数据拷贝。
> 以下是自己下载模型的步骤。
Expand Down

0 comments on commit 8404bee

Please sign in to comment.