jade
commited on
Commit
·
0628ad4
1
Parent(s):
a6feaa0
Add requirements.txt and update .gitignore
Browse files- .gitignore +1 -1
- requirements.txt +11 -0
.gitignore
CHANGED
|
@@ -15,7 +15,7 @@ wheels/
|
|
| 15 |
**/*.safetensors
|
| 16 |
**/*.mp3
|
| 17 |
!example_prompt.mp3
|
| 18 |
-
|
| 19 |
|
| 20 |
.ruff_cache
|
| 21 |
.ipynb_checkpoints
|
|
|
|
| 15 |
**/*.safetensors
|
| 16 |
**/*.mp3
|
| 17 |
!example_prompt.mp3
|
| 18 |
+
|
| 19 |
|
| 20 |
.ruff_cache
|
| 21 |
.ipynb_checkpoints
|
requirements.txt
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
descript-audio-codec>=1.0.0
|
| 2 |
+
gradio>=5.25.2
|
| 3 |
+
huggingface-hub>=0.30.2
|
| 4 |
+
numpy>=2.2.4
|
| 5 |
+
pydantic>=2.11.3
|
| 6 |
+
safetensors>=0.5.3
|
| 7 |
+
soundfile>=0.13.1
|
| 8 |
+
torch==2.6.0
|
| 9 |
+
torchaudio==2.6.0
|
| 10 |
+
triton==3.2.0; sys_platform == 'linux'
|
| 11 |
+
triton-windows==3.2.0.post18; sys_platform == 'win32'
|