Upload README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,49 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<div align="center">
|
| 2 |
+
<h1>基于AIGC的智慧教育舞蹈大模型DanceGLM</h1>
|
| 3 |
+
</div>
|
| 4 |
+
|
| 5 |
+
|
| 6 |
+
<img src="assets/DanceGLM.svg" alt="Demo webpage" style="display: block; margin-left: auto; margin-right: auto;">
|
| 7 |
+
<img src="assets/img.png" alt="Demo webpage" style="display: block; margin-left: auto; margin-right: auto;">
|
| 8 |
+
<img src="assets/img_1.png" alt="Demo webpage" style="display: block; margin-left: auto; margin-right: auto;">
|
| 9 |
+
<img src="assets/dance.png" alt="Demo webpage" style="display: block; margin-left: auto; margin-right: auto;">
|
| 10 |
+
|
| 11 |
+
## 安装
|
| 12 |
+
|
| 13 |
+
我们建议通过 [Conda](https://docs.conda.io/en/latest/) 进行环境管理。
|
| 14 |
+
|
| 15 |
+
执行以下命令新建一个 conda 环境并安装所需依赖:
|
| 16 |
+
|
| 17 |
+
```bash
|
| 18 |
+
conda create -n sway python=3.10
|
| 19 |
+
activate sway
|
| 20 |
+
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118
|
| 21 |
+
pip install git+https://github.com/facebookresearch/pytorch3d.git
|
| 22 |
+
pip install git+https://github.com/rodrigo-castellon/jukemirlib.git
|
| 23 |
+
pip install accelerate
|
| 24 |
+
#此处根据您的服务器配置自行选择
|
| 25 |
+
accelerate config
|
| 26 |
+
pip install -r requirements.txt
|
| 27 |
+
```
|
| 28 |
+
|
| 29 |
+
## 依赖说明
|
| 30 |
+
```bash
|
| 31 |
+
运行环境:
|
| 32 |
+
Ubuntu 22.04
|
| 33 |
+
|
| 34 |
+
vue依赖:
|
| 35 |
+
下载链接:https://pan.baidu.com/s/1Zpn1HTkitNg47b5DtqziKA?pwd=zdax
|
| 36 |
+
使用方法:下载解压后整体放到vue/frontend文件夹下
|
| 37 |
+
|
| 38 |
+
SWAY.checkpoint依赖:
|
| 39 |
+
下载链接:https://pan.baidu.com/s/1t5hRfg60sns0RfCaGmH7AQ?pwd=cy8z
|
| 40 |
+
使用方法:下载后放到SWAY文件夹下
|
| 41 |
+
```
|
| 42 |
+
|
| 43 |
+
## 引用
|
| 44 |
+
```bash
|
| 45 |
+
更多详细内容请访问:
|
| 46 |
+
https://github.com/THUDM/ChatGLM3
|
| 47 |
+
https://github.com/Stanford-TML/EDGE
|
| 48 |
+
https://google.github.io/aistplusplus_dataset
|
| 49 |
+
```
|