GouthamVarma commited on
Commit
9073468
·
verified ·
1 Parent(s): 81b661c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +34 -16
README.md CHANGED
@@ -1,16 +1,34 @@
1
- # Music Recommendation System
2
-
3
- A music recommendation system built using matrix factorization and deployed on Hugging Face Spaces.
4
-
5
- ## Overview
6
- This application provides music recommendations based on user-selected songs. It uses truncated SVD for matrix factorization to generate recommendations.
7
-
8
- ## How to Use
9
- 1. Select up to 5 songs you like from the dropdown menu
10
- 2. Click "Get Recommendations" to see similar songs
11
- 3. Each recommendation comes with a confidence score
12
-
13
- ## Technical Details
14
- - Built using Python, Gradio, and scikit-learn
15
- - Uses TruncatedSVD for matrix factorization
16
- - Deployed on Hugging Face Spaces
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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