Music_Recommendation_System / mood_profiles.py
jaibadachiya's picture
Upload 4 files
ceb2080 verified
mood_profiles = {
"happy": {
"valence": 0.8,
"energy": 0.7,
"danceability": 0.7,
"tempo": 120,
"acousticness": 0.2
},
"chill": {
"valence": 0.4,
"energy": 0.3,
"danceability": 0.4,
"tempo": 90,
"acousticness": 0.8
},
"party": {
"valence": 0.7,
"energy": 0.9,
"danceability": 0.9,
"tempo": 125,
"acousticness": 0.1
},
"sad": {
"valence": 0.2,
"energy": 0.3,
"danceability": 0.3,
"tempo": 80,
"acousticness": 0.6
},
"romantic": {
"valence": 0.6,
"energy": 0.4,
"danceability": 0.5,
"tempo": 90,
"acousticness": 0.7
},
"focus": {
"valence": 0.3,
"energy": 0.2,
"danceability": 0.3,
"tempo": 60,
"acousticness": 0.9
},
"workout": {
"valence": 0.6,
"energy": 0.95,
"danceability": 0.85,
"tempo": 130,
"acousticness": 0.1
},
"relax": {
"valence": 0.5,
"energy": 0.3,
"danceability": 0.4,
"tempo": 70,
"acousticness": 0.8
},
"aggressive": {
"valence": 0.2,
"energy": 0.95,
"danceability": 0.6,
"tempo": 140,
"acousticness": 0.05
},
"uplifting": {
"valence": 0.9,
"energy": 0.8,
"danceability": 0.6,
"tempo": 110,
"acousticness": 0.3
}
}