Commit
·
5c6dea8
1
Parent(s):
f6ead32
Changed the ReadMe file
Browse files
README.md
CHANGED
|
@@ -19,17 +19,18 @@ configs:
|
|
| 19 |
- split: train
|
| 20 |
path: data/train-*
|
| 21 |
---
|
| 22 |
-
# Dataset Card for "test_audio_clips"
|
| 23 |
-
|
| 24 |
Follow these steps to set up and upload your audio dataset to Hugging Face:
|
| 25 |
|
| 26 |
* **Create a Virtual Environment**
|
| 27 |
- Start by creating a virtual environment on your machine. Run the following commands:
|
| 28 |
-
|
|
|
|
| 29 |
python -m venv env
|
| 30 |
-
./env/Scripts/activate
|
| 31 |
-
|
| 32 |
-
|
|
|
|
|
|
|
| 33 |
pip install -r requirements.txt
|
| 34 |
```
|
| 35 |
|
|
|
|
| 19 |
- split: train
|
| 20 |
path: data/train-*
|
| 21 |
---
|
|
|
|
|
|
|
| 22 |
Follow these steps to set up and upload your audio dataset to Hugging Face:
|
| 23 |
|
| 24 |
* **Create a Virtual Environment**
|
| 25 |
- Start by creating a virtual environment on your machine. Run the following commands:
|
| 26 |
+
# On Windows
|
| 27 |
+
```
|
| 28 |
python -m venv env
|
| 29 |
+
./env/Scripts/activate
|
| 30 |
+
```
|
| 31 |
+
# On macOS/Linux
|
| 32 |
+
```
|
| 33 |
+
source env/bin/activate
|
| 34 |
pip install -r requirements.txt
|
| 35 |
```
|
| 36 |
|