Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #118

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ python3.6、 transformers==4.2.0、pytorch==1.7.0
### Quick Start
在[模型分享](#model_share)中下载模型,将模型文件夹model_epoch40_50w放到model目录下,执行如下命令,进行对话
```
python interact.py --no_cuda --model_path model_epoch40_50w (使用cpu生成,速度相对较慢)
python interact.py --no_cuda --model_path ./model/model_epoch40_50w (使用cpu生成,速度相对较慢)
python interact.py --model_path model_epoch40_50w --device 0 (指定0号GPU进行生成,速度相对较快)
python interact.py --model_path ./model/model_epoch40_50w --device 0 (指定0号GPU进行生成,速度相对较快)
```


Expand Down