vedmistry commited on
Commit
ecf9345
·
1 Parent(s): 0928555

document hardware requirements

Browse files
Files changed (2) hide show
  1. Dockerfile +0 -2
  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
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.