Spaces:
Sleeping
Sleeping
document hardware requirements
Browse files- Dockerfile +0 -2
- README.md +15 -1
Dockerfile
CHANGED
|
@@ -21,8 +21,6 @@ COPY requirements.txt /app/requirements.txt
|
|
| 21 |
RUN pip install --no-cache-dir gradio==5.28.0
|
| 22 |
RUN pip install --no-cache-dir -r /app/requirements.txt
|
| 23 |
|
| 24 |
-
RUN python -c "from audiosr import build_model; build_model(model_name='basic', device='cpu')"
|
| 25 |
-
|
| 26 |
COPY app.py /app/app.py
|
| 27 |
|
| 28 |
ENV PORT=7860
|
|
|
|
| 21 |
RUN pip install --no-cache-dir gradio==5.28.0
|
| 22 |
RUN pip install --no-cache-dir -r /app/requirements.txt
|
| 23 |
|
|
|
|
|
|
|
| 24 |
COPY app.py /app/app.py
|
| 25 |
|
| 26 |
ENV PORT=7860
|
README.md
CHANGED
|
@@ -8,4 +8,18 @@ app_port: 7860
|
|
| 8 |
pinned: false
|
| 9 |
---
|
| 10 |
|
| 11 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
pinned: false
|
| 9 |
---
|
| 10 |
|
| 11 |
+
# AudioSR — HARP Endpoint
|
| 12 |
+
|
| 13 |
+
Deploys [AudioSR](https://github.com/haoheliu/versatile_audio_super_resolution) as a [PyHARP](https://github.com/TEAMuP-dev/pyharp) endpoint, accessible from within DAWs (Logic Pro, Reaper, Ableton) via the [HARP plugin](https://github.com/TEAMuP-dev/HARP).
|
| 14 |
+
|
| 15 |
+
## What it does
|
| 16 |
+
|
| 17 |
+
Upsamples any audio to 48kHz using audio super-resolution. Files already at 48kHz or above are returned unchanged.
|
| 18 |
+
|
| 19 |
+
## Usage
|
| 20 |
+
|
| 21 |
+
Load this Space's URL into HARP as a custom endpoint. Upload an audio file and adjust DDIM Steps (more steps = better quality, slower processing).
|
| 22 |
+
|
| 23 |
+
## Hardware Requirements
|
| 24 |
+
|
| 25 |
+
This Space requires at minimum a **T4 Small** GPU instance due to the AudioSR model size (~6GB). It will time out on free CPU hardware.
|