Spaces:
Sleeping
Sleeping
Commit
路
e370355
1
Parent(s):
203db02
Update vectorial_representation.py
Browse files
vectorial_representation.py
CHANGED
@@ -15,6 +15,6 @@ def song_vector(tokens, model):
|
|
15 |
|
16 |
# Aplicar esta funci贸n a cada canci贸n en tu dataset
|
17 |
spotify_data['song_vector'] = spotify_data['cleaned_text'].apply(lambda x: song_vector(x, model))
|
18 |
-
spotify_data.to_csv('
|
19 |
|
20 |
|
|
|
15 |
|
16 |
# Aplicar esta funci贸n a cada canci贸n en tu dataset
|
17 |
spotify_data['song_vector'] = spotify_data['cleaned_text'].apply(lambda x: song_vector(x, model))
|
18 |
+
spotify_data.to_csv('dataset_modificado.csv', index=False)
|
19 |
|
20 |
|