Update README.md
Browse files
README.md
CHANGED
@@ -10,4 +10,23 @@ pinned: false
|
|
10 |
short_description: Birdcall Project
|
11 |
---
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
10 |
short_description: Birdcall Project
|
11 |
---
|
12 |
|
13 |
+
# BirdCall Classification
|
14 |
+
|
15 |
+
This repository contains a Gradio web app for classifying bird species from MP3 recordings of bird calls. The app uses a pretrained ResNet50 model combined with an RNN to process mel spectrogram segments of the audio and can detect multiple bird species within a long audio file.
|
16 |
+
|
17 |
+
## Files
|
18 |
+
|
19 |
+
- **app.py**: Main Gradio app script with updated inference to detect multiple bird species.
|
20 |
+
- **model_weights.pth**: Trained model weights.
|
21 |
+
- **class_mapping.json**: JSON file mapping class indices to bird species names.
|
22 |
+
- **requirements.txt**: Python dependencies.
|
23 |
+
|
24 |
+
## How to Run Locally
|
25 |
+
|
26 |
+
1. **Clone the repository:**
|
27 |
+
```bash
|
28 |
+
git clone https://github.com/yourusername/your-repo-name.git
|
29 |
+
cd your-repo-name
|
30 |
+
|
31 |
+
|
32 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|