acanivet commited on
Commit
c524223
1 Parent(s): 8b5e6d1

add readme

Browse files
Files changed (3) hide show
  1. README.md +21 -1
  2. app.png +0 -0
  3. requirements.txt +2 -1
README.md CHANGED
@@ -9,4 +9,24 @@ app_file: app.py
9
  pinned: false
10
  ---
11
 
12
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  pinned: false
10
  ---
11
 
12
+ # Sound Generation
13
+
14
+ ![Screenshot of the app](app.png)
15
+
16
+ This is a demo for the sound generation models built in `pytorch`. It relies on a simple `streamlit` app calling the model with the parameters given by the user.
17
+
18
+ ## Install :
19
+
20
+ The app relies on `Python 3.10+`. To install the requirements, just type this command in your terminal:
21
+
22
+ ```bash
23
+ pip install -r requirements.txt
24
+ ```
25
+
26
+ ## Launch :
27
+
28
+ Once everything is setup correctly, this command in your terminal will launch the app :
29
+
30
+ ```bash
31
+ streamlit run app.py
32
+ ```
app.png ADDED
requirements.txt CHANGED
@@ -5,4 +5,5 @@ torchaudio
5
  numpy
6
  lightning
7
  auraloss
8
- scipy
 
 
5
  numpy
6
  lightning
7
  auraloss
8
+ scipy
9
+ streamlit