YWMditto commited on
Commit
c723d15
·
2 Parent(s): 3b2adff ed1fd8b

Merge branch 'main' of hf.co:OpenMOSS-Team/MOSS-TTS-Realtime

Browse files
Files changed (1) hide show
  1. README.md +21 -3
README.md CHANGED
@@ -78,14 +78,32 @@ When a single piece of audio needs to **sound like a real person**, **pronounce
78
 
79
  ### 1.2 Model Architecture
80
 
81
-
82
  <p align="center">
83
  <img src="https://speech-demo.oss-cn-shanghai.aliyuncs.com/moss_tts_demo/tts_readme_imgaes_demo/moss_tts_realtime" width="60%"/>
84
  </p>
85
 
86
- ## 2. Usage
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
87
  Please refer to the following GitHub repository for detailed usage instructions and examples:
 
88
  👉 **Usage Guide**:
89
- https://github.com/OpenMOSS/MOSS-TTS/blob/main/moss_tts_realtime_model_card.md
90
 
91
  ---
 
78
 
79
  ### 1.2 Model Architecture
80
 
 
81
  <p align="center">
82
  <img src="https://speech-demo.oss-cn-shanghai.aliyuncs.com/moss_tts_demo/tts_readme_imgaes_demo/moss_tts_realtime" width="60%"/>
83
  </p>
84
 
85
+ ## 2. Quick Start
86
+ ### 2.1 Environment Setup
87
+
88
+ We recommend a clean, isolated Python environment with **Transformers 5.0.0** to avoid dependency conflicts.
89
+
90
+ ```bash
91
+ conda create -n moss-tts python=3.12 -y
92
+ conda activate moss-tts
93
+ ```
94
+
95
+ Install all required dependencies:
96
+
97
+ ```bash
98
+ git clone https://github.com/OpenMOSS/MOSS-TTS.git
99
+ cd MOSS-TTS
100
+ pip install --extra-index-url https://download.pytorch.org/whl/cu128 -e .
101
+ ```
102
+
103
+ ### 2.2 Usage
104
  Please refer to the following GitHub repository for detailed usage instructions and examples:
105
+
106
  👉 **Usage Guide**:
107
+ https://github.com/OpenMOSS/MOSS-TTS/blob/main/docs/moss_tts_realtime_model_card.md
108
 
109
  ---