Spaces:
Sleeping
Sleeping
Update README.md
Browse files
README.md
CHANGED
@@ -1,16 +1,34 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
title: Music Recommendation System
|
3 |
+
emoji: 🎵
|
4 |
+
colorFrom: indigo
|
5 |
+
colorTo: purple
|
6 |
+
sdk: gradio
|
7 |
+
sdk_version: 4.19.2
|
8 |
+
app_file: app.py
|
9 |
+
pinned: false
|
10 |
+
---
|
11 |
+
|
12 |
+
# Music Recommendation System
|
13 |
+
|
14 |
+
A music recommendation system built using matrix factorization and deployed on Hugging Face Spaces.
|
15 |
+
|
16 |
+
## Overview
|
17 |
+
This application provides music recommendations based on user-selected songs. It uses truncated SVD for matrix factorization to generate recommendations.
|
18 |
+
|
19 |
+
## How to Use
|
20 |
+
1. Select up to 5 songs you like from the dropdown menu
|
21 |
+
2. Click "Get Recommendations" to see similar songs
|
22 |
+
3. Each recommendation comes with a confidence score
|
23 |
+
|
24 |
+
## Technical Details
|
25 |
+
- Built using Python, Gradio, and scikit-learn
|
26 |
+
- Uses TruncatedSVD for matrix factorization
|
27 |
+
- Deployed on Hugging Face Spaces
|
28 |
+
- Optimized with sparse matrices
|
29 |
+
- Uses Gradio 4.19.2 SDK
|
30 |
+
|
31 |
+
## Performance Notes
|
32 |
+
- Initial loading takes ~90 seconds for model training
|
33 |
+
- Subsequent recommendations are near-instantaneous
|
34 |
+
- Optimized for both CPU and memory usage
|