Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ the `Discriminator_Model` class. Make changes as you please to see if you can im

## Using the Pre-trained Model

We are providing our pre-trained model which is saved on the Amazon S3 bucket. If you ran `bash downlaod_data.sh` then you should see a folder named `fitted_objects/` created inside the `code/` directory inside which you will find the pre-trained model. This is simple baseline model that we created to get you started. It achieves 85% accuracy and 0.58 f1 score on the test set.
We are providing our pre-trained model which is saved on the Amazon S3 bucket. If you ran `bash download_data.sh` then you should see a folder named `fitted_objects/` created inside the `code/` directory inside which you will find the pre-trained model. This is simple baseline model that we created to get you started. It achieves 85% accuracy and 0.58 f1 score on the test set.

To run our pre-trained model on your own audio:
1. Copy your audio files to `data/inference_data/unlabeled/`
Expand Down
2 changes: 1 addition & 1 deletion code/apt_install.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
apt-get update
yes | apt-get install libsndfile1
apt-get install libsndfile1 -y
6 changes: 3 additions & 3 deletions code/download_data.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apt-get update
yes | apt-get install wget
yes | apt-get install zip
yes | apt-get install unzip
apt-get install wget -y
apt-get install zip -y
apt-get install unzip -y

cd ../data/

Expand Down