Spaces:
Sleeping
Sleeping
add readme
Browse files- README.md +21 -1
- app.png +0 -0
- requirements.txt +2 -1
README.md
CHANGED
|
@@ -9,4 +9,24 @@ app_file: app.py
|
|
| 9 |
pinned: false
|
| 10 |
---
|
| 11 |
|
| 12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
pinned: false
|
| 10 |
---
|
| 11 |
|
| 12 |
+
# Sound Generation
|
| 13 |
+
|
| 14 |
+

|
| 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
|