Update requirements.txt
Browse files- requirements.txt +30 -29
requirements.txt
CHANGED
|
@@ -1,34 +1,35 @@
|
|
| 1 |
-
--extra-index-url https://download.pytorch.org/whl/
|
| 2 |
|
| 3 |
-
torch
|
| 4 |
-
torchaudio
|
| 5 |
-
numpy
|
| 6 |
-
gradio
|
| 7 |
-
mido
|
| 8 |
-
librosa
|
| 9 |
-
torchlibrosa
|
| 10 |
-
resampy
|
| 11 |
-
matplotlib
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
|
| 13 |
-
|
|
|
|
| 14 |
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
scikit-learn
|
| 18 |
-
psutil
|
| 19 |
-
pretty_midi
|
| 20 |
-
mutagen
|
| 21 |
-
soundfile
|
| 22 |
-
pyloudnorm
|
| 23 |
-
ffmpeg-python
|
| 24 |
-
piano_transcription_inference
|
| 25 |
|
| 26 |
-
|
| 27 |
-
|
| 28 |
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
audio-separator[gpu]; sys_platform != 'darwin'
|
| 34 |
-
audio-separator[cpu]; sys_platform == 'darwin'
|
|
|
|
| 1 |
+
--extra-index-url https://download.pytorch.org/whl/cu118
|
| 2 |
|
| 3 |
+
torch>=2.1.0
|
| 4 |
+
torchaudio>=2.1.0
|
| 5 |
+
numpy>=1.24.0
|
| 6 |
+
gradio>=5.42.0
|
| 7 |
+
mido>=1.3.0
|
| 8 |
+
librosa>=0.10.0
|
| 9 |
+
torchlibrosa>=0.1.0
|
| 10 |
+
resampy>=0.4.0
|
| 11 |
+
matplotlib>=3.7.0
|
| 12 |
+
huggingface_hub>=0.20.0
|
| 13 |
+
scipy>=1.11.0
|
| 14 |
+
networkx>=3.0
|
| 15 |
+
scikit-learn>=1.3.0
|
| 16 |
+
psutil>=5.9.0
|
| 17 |
+
pretty_midi>=0.2.10
|
| 18 |
+
mutagen>=1.47.0
|
| 19 |
+
soundfile>=0.12.0
|
| 20 |
+
pyloudnorm>=0.1.1
|
| 21 |
+
ffmpeg-python>=0.2.0
|
| 22 |
+
piano_transcription_inference>=1.0.0
|
| 23 |
|
| 24 |
+
# Basic Pitch - offizielle Version ohne TensorFlow-Zwang
|
| 25 |
+
basic-pitch>=0.7.3
|
| 26 |
|
| 27 |
+
# PyFluidSynth
|
| 28 |
+
pyfluidsynth>=2.5.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
|
| 30 |
+
# Demucs
|
| 31 |
+
demucs>=4.0.0
|
| 32 |
|
| 33 |
+
# Audio Separator - korrigierte Plattform-Logik
|
| 34 |
+
audio-separator[gpu]>=0.20.0; sys_platform == 'linux'
|
| 35 |
+
audio-separator[cpu]>=0.20.0; sys_platform == 'darwin'
|
|
|
|
|
|
|
|
|