leezhuuu commited on
Commit
cd5ae38
1 Parent(s): a6ea6ae

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +0 -105
README.md CHANGED
@@ -1,105 +0,0 @@
1
- # GLM-4-Voice
2
- Read this in [English](./README_en.md)
3
-
4
- GLM-4-Voice 是智谱 AI 推出的端到端语音模型。GLM-4-Voice 能够直接理解和生成中英文语音,进行实时语音对话,并且能够遵循用户的指令要求改变语音的情感、语调、语速、方言等属性。
5
-
6
- ## Model Architecture
7
- ![Model Architecture](./resources/architecture.jpeg)
8
-
9
- GLM-4-Voice 由三个部分组成:
10
- * GLM-4-Voice-Tokenizer: 通过在 [Whisper](https://github.com/openai/whisper) 的 Encoder 部分增加 Vector Quantization 并在 ASR 数据上有监督训练,将连续的语音输入转化为离散的 token。每秒音频平均只需要用 12.5 个离散 token 表示。
11
- * GLM-4-Voice-Decoder: 基于 [CosyVoice](https://github.com/FunAudioLLM/CosyVoice) 的 Flow Matching 模型结构训练的支持流式推理的语音解码器,将离散化的语音 token 转化为连续的语音输出。最少只需要 10 个语音 token 即可开始生成,降低端到端对话延迟。
12
- * GLM-4-Voice-9B: 在 [GLM-4-9B](https://github.com/THUDM/GLM-4) 的基础上进行语音模态的预训练和对齐,从而能够理解和生成离散化的语音 token。
13
-
14
- 预训练方面,为了攻克模型在语音模态下的智商和合成表现力两个难关,我们将 Speech2Speech 任务解耦合为“根据用户音频做出文本回复”和“根据文本回复和用户语音合成回复语音”两个任务,并设计两种预训练目标,分别基于文本预训练数据和无监督音频数据合成语音-文本交错数据以适配这两种任务形式。GLM-4-Voice-9B 在 GLM-4-9B 的基座模型基础之上,经过了数百万小时音频和数千亿 token 的音频文本交错数据预训练,拥有很强的音频理解和建模能力。
15
-
16
- 对齐方面,为了支持高质量的语音对话,我们设计了一套流式思考架构:根据用户语音,GLM-4-Voice 可以流式交替输出文本和语音两个模态的内容,其中语音模态以文本作为参照保证回复内容的高质量,并根据用户的语音指令要求做出相应的声音变化,在最大程度保留语言模型智商的情况下仍然具有端到端建模的能力,同时具备低延迟性,最低只需要输出 20 个 token 便可以合成语音。
17
-
18
- 更详细的技术报告将在之后公布。
19
-
20
- ## Model List
21
-
22
- | Model | Type | Download |
23
- |:---------------------:| :---: |:------------------------------------------------------------------------------------------------------------------------------------------------:|
24
- | GLM-4-Voice-Tokenizer | Speech Tokenizer | [🤗 Huggingface](https://huggingface.co/THUDM/glm-4-voice-tokenizer) [🤖 ModelScope](https://modelscope.cn/models/ZhipuAI/glm-4-voice-tokenizer) |
25
- | GLM-4-Voice-9B | Chat Model | [🤗 Huggingface](https://huggingface.co/THUDM/glm-4-voice-9b) [🤖 ModelScope](https://modelscope.cn/models/ZhipuAI/glm-4-voice-9b)
26
- | GLM-4-Voice-Decoder | Speech Decoder | [🤗 Huggingface](https://huggingface.co/THUDM/glm-4-voice-decoder) [🤖 ModelScope](https://modelscope.cn/models/ZhipuAI/glm-4-voice-decoder)
27
-
28
- ## Usage
29
- 我们提供了可以直接启动的 Web Demo。用户可以输入语音或文本,模型会同时给出语音和文字回复。
30
-
31
- ![](resources/web_demo.png)
32
-
33
- ### Preparation
34
- 首先下载仓库
35
- ```shell
36
- git clone --recurse-submodules https://github.com/THUDM/GLM-4-Voice
37
- cd GLM-4-Voice
38
- ```
39
- 然后安装依赖。
40
- ```shell
41
- pip install -r requirements.txt
42
- ```
43
- 由于 Decoder 模型不支持通过 `transformers` 初始化,因此 checkpoint 需要单独下载。
44
-
45
- ```shell
46
- # git 模型下载,请确保已安装 git-lfs
47
- git clone https://huggingface.co/THUDM/glm-4-voice-decoder
48
- ```
49
-
50
- ### Launch Web Demo
51
- 首先启动模型服务
52
- ```shell
53
- python model_server.py --model-path glm-4-voice-9b
54
- ```
55
- 此命令会自动下载 `glm-4-voice-9b`。如果网络条件不好,也手动下载之后通过 `--model-path` 指定本地的路径。
56
-
57
- 然后启动 web 服务
58
- ```shell
59
- python web_demo.py
60
- ```
61
- 即可在 http://127.0.0.1:8888 访问 web demo。此命令会自动下载 `glm-4-voice-tokenizer` 和 `glm-4-voice-9b`。如果网络条件不好,也可以手动下载之后通过 `--tokenizer-path` 和 `--model-path` 指定本地的路径。
62
-
63
- ### Known Issues
64
- * Gradio 的流式音频播放效果不稳定。在生成完成后点击对话框中的音频质量会更高。
65
-
66
- ## Cases
67
- 我们提供了 GLM-4-Voice 的部分对话案例,包括控制情绪、改变语速、生成方言等。
68
-
69
- * 用轻柔的声音引导我放松
70
-
71
- https://github.com/user-attachments/assets/4e3d9200-076d-4c28-a641-99df3af38eb0
72
-
73
- * 用激动的声音解说足球比赛
74
-
75
- https://github.com/user-attachments/assets/0163de2d-e876-4999-b1bc-bbfa364b799b
76
-
77
- * 用哀怨的声音讲一个鬼故事
78
-
79
- https://github.com/user-attachments/assets/a75b2087-d7bc-49fa-a0c5-e8c99935b39a
80
-
81
- * 用东北话介绍一下冬天有多冷
82
-
83
- https://github.com/user-attachments/assets/91ba54a1-8f5c-4cfe-8e87-16ed1ecf4037
84
-
85
- * 用重庆话念“吃葡萄不吐葡萄皮”
86
-
87
- https://github.com/user-attachments/assets/7eb72461-9e84-4d8e-9c58-1809cf6a8a9b
88
-
89
- * 用北京话念一句绕口令
90
-
91
- https://github.com/user-attachments/assets/a9bb223e-9c0a-440d-8537-0a7f16e31651
92
-
93
- * 加快语速
94
-
95
- https://github.com/user-attachments/assets/c98a4604-366b-4304-917f-3c850a82fe9f
96
-
97
- * 再快一点
98
-
99
- https://github.com/user-attachments/assets/d5ff0815-74f8-4738-b0f1-477cfc8dcc2d
100
-
101
- ## Acknowledge
102
- 本项目的部分代码来自:
103
- * [CosyVoice](https://github.com/FunAudioLLM/CosyVoice)
104
- * [transformers](https://github.com/huggingface/transformers)
105
- * [GLM-4](https://github.com/THUDM/GLM-4)