Update README

This commit is contained in:
duzx16 2023-07-17 11:41:23 +08:00
parent 9d50b01310
commit 6c6a93d0c6

View File

@ -194,6 +194,11 @@ GIT_LFS_SKIP_SMUDGE=1 git clone https://huggingface.co/THUDM/chatglm2-6b
模型的实现仍然处在变动中。如果希望固定使用的模型实现以保证兼容性,可以在 `from_pretrained` 的调用中增加 `revision="v1.0"` 参数。`v1.0` 是当前最新的版本号,完整的版本列表参见 [Change Log](https://huggingface.co/THUDM/chatglm2-6b#change-log)。 模型的实现仍然处在变动中。如果希望固定使用的模型实现以保证兼容性,可以在 `from_pretrained` 的调用中增加 `revision="v1.0"` 参数。`v1.0` 是当前最新的版本号,完整的版本列表参见 [Change Log](https://huggingface.co/THUDM/chatglm2-6b#change-log)。
### 网页版 Demo ### 网页版 Demo
![web-demo](resources/web-demo.gif)
可以通过以下命令启动基于 Gradio 的网页版 demo
```shell
python web_demo.py
```
![web-demo](resources/web-demo2.gif) ![web-demo](resources/web-demo2.gif)
@ -202,17 +207,7 @@ GIT_LFS_SKIP_SMUDGE=1 git clone https://huggingface.co/THUDM/chatglm2-6b
streamlit run web_demo2.py streamlit run web_demo2.py
``` ```
程序会运行一个 Web Server并输出地址。在浏览器中打开输出的地址即可使用。 网页版 demo 会运行一个 Web Server并输出地址。在浏览器中打开输出的地址即可使用。 经测试,基于 Streamlit 的网页版 Demo 会更流畅。
[web_demo.py](./web_demo.py) 中提供了旧版基于 Gradio 的 web demo可以通过如下命令运行
```shell
python web_demo.py
```
运行效果如下:
![web-demo](resources/web-demo.gif)
经测试,如果输入的 prompt 较长的话,使用基于 Streamlit 的网页版 Demo 会更流畅。
### 命令行 Demo ### 命令行 Demo