spotify_danceability / model_ML_Pipeline.py
Deniz95's picture
Upload 4 files
b067742
Raw
History Blame Contribute Delete
13.9 kB
"""
track_id: The Spotify ID for the track
artists: The artists' names who performed the track. If there is more than one artist, they are separated by a ;
album_name: The album name in which the track appears
track_name: Name of the track
popularity: The popularity of a track is a value between 0 and 100, with 100 being the most popular. The popularity is calculated by algorithm and is based, in the most part, on the total number of plays the track has had and how recent those plays are. Generally speaking, songs that are being played a lot now will have a higher popularity than songs that were played a lot in the past. Duplicate tracks (e.g. the same track from a single and an album) are rated independently. Artist and album popularity is derived mathematically from track popularity.
duration_ms: The track length in milliseconds
explicit: Whether the track has explicit lyrics (true = yes it does; false = no it does not OR unknown)
danceability: Danceability describes how suitable a track is for dancing based on a combination of musical elements including tempo, rhythm stability, beat strength, and overall regularity. A value of 0.0 is least danceable and 1.0 is most danceable
energy: Energy is a measure from 0.0 to 1.0 and represents a perceptual measure of intensity and activity. Typically, energetic tracks feel fast, loud, and noisy. For example, death metal has high energy, while a Bach prelude scores low on the scale
key: The key the track is in. Integers map to pitches using standard Pitch Class notation. E.g. 0 = C, 1 = C♯/D♭, 2 = D, and so on. If no key was detected, the value is -1
loudness: The overall loudness of a track in decibels (dB)
mode: Mode indicates the modality (major or minor) of a track, the type of scale from which its melodic content is derived. Major is represented by 1 and minor is 0
speechiness: Speechiness detects the presence of spoken words in a track. The more exclusively speech-like the recording (e.g. talk show, audio book, poetry), the closer to 1.0 the attribute value. Values above 0.66 describe tracks that are probably made entirely of spoken words. Values between 0.33 and 0.66 describe tracks that may contain both music and speech, either in sections or layered, including such cases as rap music. Values below 0.33 most likely represent music and other non-speech-like tracks
acousticness: A confidence measure from 0.0 to 1.0 of whether the track is acoustic. 1.0 represents high confidence the track is acoustic
instrumentalness: Predicts whether a track contains no vocals. "Ooh" and "aah" sounds are treated as instrumental in this context. Rap or spoken word tracks are clearly "vocal". The closer the instrumentalness value is to 1.0, the greater likelihood the track contains no vocal content
liveness: Detects the presence of an audience in the recording. Higher liveness values represent an increased probability that the track was performed live. A value above 0.8 provides strong likelihood that the track is live
valence: A measure from 0.0 to 1.0 describing the musical positiveness conveyed by a track. Tracks with high valence sound more positive (e.g. happy, cheerful, euphoric), while tracks with low valence sound more negative (e.g. sad, depressed, angry)
tempo: The overall estimated tempo of a track in beats per minute (BPM). In musical terminology, tempo is the speed or pace of a given piece and derives directly from the average beat duration
time_signature: An estimated time signature. The time signature (meter) is a notational convention to specify how many beats are in each bar (or measure). The time signature ranges from 3 to 7 indicating time signatures of 3/4, to 7/4.
track_genre: The genre in which the track belongs
"""
import numpy as np
import pandas as pd
# import seaborn as sns
# import matplotlib.pyplot as plt
# from sklearn.model_selection import cross_validate, GridSearchCV
# from sklearn.linear_model import LinearRegression
# from sklearn.neighbors import KNeighborsRegressor
# from xgboost import XGBRegressor
# from lightgbm import LGBMRegressor
import catboost
import sklearn
from sklearn import model_selection
# from sklearn.metrics import mean_squared_error, mean_absolute_error
# from spotipy import Spotify as Spotify_func
import spotipy
from datetime import datetime
import gradio as gr
import random
from sklearn import preprocessing
def main(): #XXXTBD Static Pipeline, hyperparameter optimization is done already.
TWO_HUNDRED = 200
# from .env import spotify_username_id
# from .env import client_id
# from .env import client_secret
df_ = pd.read_csv('dataset.csv')
df = df_.copy()
X, y = spotify_danceability_preprocess(df)
# base_models(X, y)
# best_models = hyperparameter_optimization(X, y)
# best_model = best_models['CatBoost']
best_model = catboost.CatBoostRegressor(depth=8,iterations=750)
X_train, X_test, y_train, y_test = model_selection.train_test_split(X, y, test_size=0.2)
y_pred = y_guesses(X_train, y_train, X, best_model)
top_200_ind = top_200_getter(y, y_pred)
num_of_tracks = 50 #XXXTBD make it dynamic
global rand_track_ids
rand_tracks_ids = random_tracks_getter(top_200_ind, num_of_tracks, TWO_HUNDRED, df_, randomm=True)
def gradio_webapp(spotify_userid, client_id, client_secret, playlist_name, track_ids):
# rand_track_ids = ['7aXqWBIvrtmKZX90Jq5sxO', '4cdCTVjFGCOxwhIOBAgY6O', \
# '2pg8ytdwFmXKjSlpHEV5QC', '1FRJdOTOVML0UM4PUkuDcl']
playlist_name = spotipy_add_playlist(int(spotify_userid), client_id, client_secret, rand_tracks_ids)
return "Hello " + str(spotify_userid) + (" The ML Dance Playlist has been created: \n\t") + \
str(playlist_name)
app = gr.Interface(fn=gradio_webapp, inputs=["text", "text", "text"], outputs="text")
app.launch()
return
def grab_col_names(df, cat_th=13, car_th=20):
"""
Veri setindeki kategorik, numerik ve kategorik fakat kardinal değişkenlerin isimlerini verir.
Parameters
----------
dataframe: dataframe
değişken isimleri alınmak istenen dataframe'dir.
cat_th: int, float
numerik fakat kategorik olan değişkenler için sınıf eşik değeri
car_th: int, float
kategorik fakat kardinal değişkenler için sınıf eşik değeri
Returns
-------
cat_cols: list
Kategorik değişken listesi
num_cols: list
Numerik değişken listesi
cat_but_car: list
Kategorik görünümlü kardinal değişken listesi
Notes
------
cat_cols + num_cols + cat_but_car = toplam değişken sayısı
num_but_cat cat_cols'un içerisinde.
"""
# cat_cols, cat_but_car
cat_cols = [col for col in df.columns if str(df[col].dtypes) in ["category", "object", "bool"]]
num_but_cat = [col for col in df.columns if df[col].nunique() < cat_th and df[col].dtypes in ["int", "float"]]
cat_but_car = [col for col in df.columns if
df[col].nunique() > car_th and str(df[col].dtypes) in ["category", "object"]]
cat_cols = cat_cols + num_but_cat
cat_cols = [col for col in cat_cols if col not in cat_but_car]
num_cols = [col for col in df.columns if df[col].dtypes in ["int", "float"]]
num_cols = [col for col in num_cols if col not in cat_cols]
# print(f"Observations: {df.shape[0]}")
# print(f"Variables: {df.shape[1]}")
# print(f'cat_cols: {len(cat_cols)}')
# print(f'num_cols: {len(num_cols)}')
# print(f'cat_but_car: {len(cat_but_car)}')
# print(f'num_but_cat: {len(num_but_cat)}')
return cat_cols, num_cols, cat_but_car
def outlier_thresholds(dataframe, col_name, q1=0.05, q3=0.95):
quartile1 = dataframe[col_name].quantile(q1)
quartile3 = dataframe[col_name].quantile(q3)
interquantile_range = quartile3 - quartile1
up_limit = quartile3 + 1.5 * interquantile_range
low_limit = quartile1 - 1.5 * interquantile_range
return low_limit, up_limit
def replace_with_thresholds(dataframe, variable):
low_limit, up_limit = outlier_thresholds(dataframe, variable)
dataframe.loc[(dataframe[variable] < low_limit), variable] = low_limit
dataframe.loc[(dataframe[variable] > up_limit), variable] = up_limit
def check_outlier(dataframe, col_name):
low_limit, up_limit = outlier_thresholds(dataframe, col_name)
if dataframe[(dataframe[col_name] > up_limit) | (dataframe[col_name] < low_limit)].any(axis=None):
return True
else:
return False
def spotify_danceability_preprocess(df):
df = df[df.track_genre != 'kids']
df = df[df.track_genre != 'children']
df = df[df.track_genre != 'study']
df.track_genre.unique()
outcome = 'danceability'
df['time_signature'].unique()
df.drop("explicit", axis=1, inplace=True)
df.drop("Unnamed: 0", axis=1, inplace=True)
df['time_signature'] = df['time_signature'].replace({0: 6, 1: 7})
df.drop(65900, axis=0, inplace=True)
duplicated_rows = df[df.duplicated(subset=['track_id'])]
df = df.drop(duplicated_rows.index)
duplicated_rows = df[df.duplicated(subset=['track_id', 'artists', "album_name", "track_name"])]
df = df.drop(duplicated_rows.index)
duplicated_rows = df[df.duplicated(subset=['track_id', "track_name"])]
df = df.drop(duplicated_rows.index)
duplicated_rows = df[df.duplicated(subset=['track_id', 'artists', "album_name"])]
df = df.drop(duplicated_rows.index)
duplicated_rows = df[df.duplicated(subset=['popularity', 'duration_ms', "danceability", "energy", "key", "loudness",
"mode", "speechiness", "acousticness", "instrumentalness", "liveness",
"valence", "tempo", "time_signature"])]
df = df.drop(duplicated_rows.index)
cat_cols, num_cols, cat_but_car = grab_col_names(df)
num_cols.remove(outcome)
for col in num_cols:
replace_with_thresholds(df, col)
df.style.set_properties(**{'text-align': 'center'})
df.head()
df = pd.get_dummies(df, columns=["key"], drop_first=True)
df[['key_1', 'key_2', 'key_3', 'key_4', 'key_5', 'key_6', 'key_7', 'key_8', 'key_9', 'key_10', 'key_11']] = \
df[['key_1', 'key_2', 'key_3', 'key_4', 'key_5', 'key_6', 'key_7', 'key_8', 'key_9', 'key_10',
'key_11']].astype(int)
df = pd.get_dummies(df, columns=["time_signature"], drop_first=True)
df[['time_signature_4', 'time_signature_5', 'time_signature_6', 'time_signature_7']] = \
df[['time_signature_4', 'time_signature_5', 'time_signature_6', 'time_signature_7']].astype(int)
model_cols = [col for col in df.columns if col not in cat_but_car]
# Standartlaştırma
X_scaled = preprocessing.StandardScaler().fit_transform(df[num_cols])
temp_df = df.copy()
temp_df[num_cols] = pd.DataFrame(X_scaled, columns=num_cols, index=df[num_cols].index)
df = temp_df.copy()
y = df[outcome]
X = df.copy()
X.drop([outcome], axis=1, inplace=True)
for col in cat_but_car:
X.drop([col], axis=1, inplace=True)
return X, y
def y_guesses(X_train, y_train, X, best_model):
best_model.fit(X_train,y_train)
y_pred_out = best_model.predict(X) #XXXTBD
return y_pred_out
def top_200_getter(y, y_pred):
col1 = list(y.index)
col2 = y_pred
y_pred_ind = pd.DataFrame(col2, index=col1)
top_200_ind = y_pred_ind.sort_values(by=0).tail(200).index
return top_200_ind
def random_tracks_getter(top_200, num_of_tracks, TWO_HUNDRED, df_, randomm=True):
if randomm:
if num_of_tracks <= TWO_HUNDRED:
random_n_tracks_ind = random.sample(list(top_200), num_of_tracks)
else: #random=False
if num_of_tracks <= TWO_HUNDRED:
random_n_tracks_ind = top_200[num_of_tracks]
else:
random_n_tracks_ind = top_200
random_tracks = [df_.iloc[indd] for indd in random_n_tracks_ind]
rand_tracks_ids = [track['track_id'] for track in random_tracks]
return rand_tracks_ids
def spotipy_add_playlist(username_id,
inp_client_id,
inp_client_secret,
tracks_ids,
inp_scope="playlist-modify-public playlist-modify-private"):
"""
:param username_id:
:return:
"""
sp = spotipy.Spotify(auth_manager=spotipy.oauth2.SpotifyOAuth(client_id=inp_client_id,
client_secret= inp_client_secret,
redirect_uri='https://open.spotify.com/',
scope=inp_scope))
hour_now = datetime.now().hour
minute_now = datetime.now().minute
playlist_name = "ML Dance Playlist "+str(hour_now)+"_"+str(minute_now)+"_time"
playlist_description = "This is my new Dance playlist"
# import sys
# sys.exit('username_id = '+str(username_id)+'\n type(username_id) = '+str(type(username_id))
# +'\ninp_client_id = '+str(inp_client_id)+'\n type(inp_client_id) = '+str(type(inp_client_id))
# +'\n inp_client_secret = '+str(inp_client_secret)
# +'\n type(inp_client_secret) = '+str(type(inp_client_secret)))
# raise ValueError('A very specific bad thing happened. '+str(sp))
playlist = sp.user_playlist_create(user=username_id, name=playlist_name, public=True,
description=playlist_description)
# Add tracks to the playlist
# track_uris = ["spotify:track:4iV5W9uYEdYUVa79Axb7Rh", "spotify:track:2takcwOaAZWiXQijPHIx7B"]
# track_uris = random_50_tracks_ids
sp.playlist_add_items(playlist_id=playlist["id"], items=tracks_ids)
return playlist_name
def create_spotify_project():
#XXXTBD
return
if __name__ == "__main__":
print("Pipeline has started!!")
main()