Spaces:
Sleeping
Sleeping
node v
Browse files- requirements.txt +43 -21
requirements.txt
CHANGED
|
@@ -1,23 +1,45 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
|
|
|
|
| 17 |
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: Realistic Voice Cloner 🎙️
|
| 3 |
+
emoji: 🧠
|
| 4 |
+
colorFrom: blue
|
| 5 |
+
colorTo: indigo
|
| 6 |
+
sdk: gradio
|
| 7 |
+
sdk_version: 4.44.0
|
| 8 |
+
python_version: 3.10
|
| 9 |
+
app_file: app.py
|
| 10 |
+
hardware:
|
| 11 |
+
- gpu
|
| 12 |
+
tags:
|
| 13 |
+
- text-to-speech
|
| 14 |
+
- voice-cloning
|
| 15 |
+
- huggingface
|
| 16 |
+
- gradio
|
| 17 |
+
- audio
|
| 18 |
+
license: mit
|
| 19 |
+
short_description: A neural voice cloning demo built with Gradio and Hugging Face Inference API.
|
| 20 |
+
---
|
| 21 |
|
| 22 |
+
# 🎧 Realistic Voice Cloner
|
| 23 |
|
| 24 |
+
This Hugging Face Space demonstrates a **neural voice cloning** pipeline built with:
|
| 25 |
+
- **Gradio 4.44.0**
|
| 26 |
+
- **Torch 2.2+**
|
| 27 |
+
- **Transformers 4.46.3**
|
| 28 |
+
- **Diffusers 0.29.0**
|
| 29 |
+
- **Resemble-Perth**, **Silero-VAD**, and **Conformer**
|
| 30 |
+
|
| 31 |
+
## 🚀 Features
|
| 32 |
+
- Upload a short audio sample of a speaker
|
| 33 |
+
- Enter any text to synthesize speech in that voice
|
| 34 |
+
- Fast inference powered by **CUDA (GPU)**
|
| 35 |
+
- Optional language segmentation (Chinese, Japanese, Russian, etc.)
|
| 36 |
+
|
| 37 |
+
## 🧠 Tech Stack
|
| 38 |
+
- **Backend:** PyTorch, Transformers, Diffusers
|
| 39 |
+
- **Frontend:** Gradio
|
| 40 |
+
- **Audio:** Librosa, SoundFile, Resampy
|
| 41 |
+
|
| 42 |
+
## ⚙️ Requirements
|
| 43 |
+
See `requirements.txt` for all dependencies:
|
| 44 |
+
```bash
|
| 45 |
+
pip install -r requirements.txt
|