Zhyw commited on
Commit
ed1fd8b
·
verified ·
1 Parent(s): 0fcd55a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -2
README.md CHANGED
@@ -57,13 +57,31 @@ When a single piece of audio needs to **sound like a real person**, **pronounce
57
 
58
  ### 1.2 Model Architecture
59
 
60
-
61
  <p align="center">
62
  <img src="https://speech-demo.oss-cn-shanghai.aliyuncs.com/moss_tts_demo/tts_readme_imgaes_demo/moss_tts_realtime" width="60%"/>
63
  </p>
64
 
65
- ## 2. Usage
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
66
  Please refer to the following GitHub repository for detailed usage instructions and examples:
 
67
  👉 **Usage Guide**:
68
  https://github.com/OpenMOSS/MOSS-TTS/blob/main/docs/moss_tts_realtime_model_card.md
69
 
 
57
 
58
  ### 1.2 Model Architecture
59
 
 
60
  <p align="center">
61
  <img src="https://speech-demo.oss-cn-shanghai.aliyuncs.com/moss_tts_demo/tts_readme_imgaes_demo/moss_tts_realtime" width="60%"/>
62
  </p>
63
 
64
+ ## 2. Quick Start
65
+ ### 2.1 Environment Setup
66
+
67
+ We recommend a clean, isolated Python environment with **Transformers 5.0.0** to avoid dependency conflicts.
68
+
69
+ ```bash
70
+ conda create -n moss-tts python=3.12 -y
71
+ conda activate moss-tts
72
+ ```
73
+
74
+ Install all required dependencies:
75
+
76
+ ```bash
77
+ git clone https://github.com/OpenMOSS/MOSS-TTS.git
78
+ cd MOSS-TTS
79
+ pip install --extra-index-url https://download.pytorch.org/whl/cu128 -e .
80
+ ```
81
+
82
+ ### 2.2 Usage
83
  Please refer to the following GitHub repository for detailed usage instructions and examples:
84
+
85
  👉 **Usage Guide**:
86
  https://github.com/OpenMOSS/MOSS-TTS/blob/main/docs/moss_tts_realtime_model_card.md
87