Upload 3 files
Browse files- README.md +22 -22
- app.py +0 -0
- requirements.txt +34 -34
README.md
CHANGED
|
@@ -1,23 +1,23 @@
|
|
| 1 |
-
---
|
| 2 |
-
title: Audio To MIDI And Advanced Renderer
|
| 3 |
-
emoji: 🎹
|
| 4 |
-
colorFrom: purple
|
| 5 |
-
colorTo: green
|
| 6 |
-
sdk: gradio
|
| 7 |
-
app_file: app.py
|
| 8 |
-
pinned: false
|
| 9 |
-
python_version: 3.10.11
|
| 10 |
-
tags:
|
| 11 |
-
- MIDI
|
| 12 |
-
- music
|
| 13 |
-
- renderer
|
| 14 |
-
- MIDI rendering
|
| 15 |
-
- MIDI renderer
|
| 16 |
-
short_description: Audio to MIDI Transcription and Advanced render
|
| 17 |
-
sdk_version: 5.42.0
|
| 18 |
-
license: cc-by-nc-4.0
|
| 19 |
-
thumbnail: >-
|
| 20 |
-
https://cdn-uploads.huggingface.co/production/uploads/5f57ea2d3f32f12a3c0692e6/SvsnExU8EVOdm-Ol32RIn.png
|
| 21 |
-
---
|
| 22 |
-
|
| 23 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: Audio To MIDI And Advanced Renderer
|
| 3 |
+
emoji: 🎹
|
| 4 |
+
colorFrom: purple
|
| 5 |
+
colorTo: green
|
| 6 |
+
sdk: gradio
|
| 7 |
+
app_file: app.py
|
| 8 |
+
pinned: false
|
| 9 |
+
python_version: 3.10.11
|
| 10 |
+
tags:
|
| 11 |
+
- MIDI
|
| 12 |
+
- music
|
| 13 |
+
- renderer
|
| 14 |
+
- MIDI rendering
|
| 15 |
+
- MIDI renderer
|
| 16 |
+
short_description: Audio to MIDI Transcription and Advanced render
|
| 17 |
+
sdk_version: 5.42.0
|
| 18 |
+
license: cc-by-nc-4.0
|
| 19 |
+
thumbnail: >-
|
| 20 |
+
https://cdn-uploads.huggingface.co/production/uploads/5f57ea2d3f32f12a3c0692e6/SvsnExU8EVOdm-Ol32RIn.png
|
| 21 |
+
---
|
| 22 |
+
|
| 23 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
app.py
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
requirements.txt
CHANGED
|
@@ -1,35 +1,35 @@
|
|
| 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'
|
|
|
|
| 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'
|