Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hf-hackathon-2023-01
/
Spotify
like
2
Paused
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
co42
HF staff
commited on
Jan 8, 2023
Commit
f7e616d
·
1 Parent(s):
1adcf92
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+1
-0
app.py
CHANGED
Viewed
@@ -47,6 +47,7 @@ def get_features2(spotify):
47
'liveness',
48
'valence',
49
]
50
return names, features_means.values
51
52
47
'liveness',
48
'valence',
49
]
50
+
features_means = df[names].mean()
51
return names, features_means.values
52
53