Azdeen commited on
Commit
2f30af4
·
verified ·
1 Parent(s): a59e10a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +24 -8
README.md CHANGED
@@ -1,13 +1,29 @@
1
- ---
2
- title: CreateDataBase
3
- emoji:
4
- colorFrom: purple
5
- colorTo: green
6
  sdk: gradio
7
- sdk_version: 6.20.0
8
- python_version: '3.12'
9
  app_file: app.py
10
  pinned: false
11
  ---
12
 
13
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ title: Professional Audio Dataset Manager
2
+ emoji: 🎙️
3
+ colorFrom: indigo
4
+ colorTo: blue
 
5
  sdk: gradio
6
+ sdk_version: 5.49.1
 
7
  app_file: app.py
8
  pinned: false
9
  ---
10
 
11
+ # Audio Dataset Manager
12
+
13
+ ## Required Space secrets
14
+
15
+ - `token_login`: login token for the UI.
16
+ - `auth_acess_data`: Hugging Face token used to read private datasets and push results.
17
+
18
+ ## Main fix
19
+
20
+ The Python module `df` is provided by the PyPI package `deepfilternet`.
21
+ It must be declared in `requirements.txt`:
22
+
23
+ ```text
24
+ deepfilternet==0.5.6
25
+ ```
26
+
27
+ The application now loads DeepFilterNet lazily, validates audio, normalizes
28
+ without division-by-zero, uses safe pandas assignments, and reports clear UI
29
+ errors instead of terminating the Space during startup.