Song Popularity Dataset
Song Popularity Prediction - Regression Problem
@kaggle.yasserh_song_popularity_dataset
Song Popularity Prediction - Regression Problem
@kaggle.yasserh_song_popularity_dataset
Humans have greatly associated themselves with Songs & Music. It can improve mood, decrease pain and anxiety, and facilitate opportunities for emotional expression. Research suggests that music can benefit our physical and mental health in numerous ways.
Lately, multiple studies have been carried out to understand songs & it's popularity based on certain factors. Such song samples are broken down & their parameters are recorded to tabulate. Predicting the Song Popularity is the main aim.
The project is simple yet challenging, to predict the song popularity based on energy, acoustics, instumentalness, liveness, dancibility, etc. The dataset is large & it's complexity arises due to the fact that it has strong multicollinearity. Can you overcome these obstacles & build a decent predictive model?
The dataset is referred from Kaggle.
CREATE TABLE song_data (
"song_name" VARCHAR,
"song_popularity" BIGINT,
"song_duration_ms" BIGINT,
"acousticness" DOUBLE,
"danceability" DOUBLE,
"energy" DOUBLE,
"instrumentalness" DOUBLE,
"key" BIGINT,
"liveness" DOUBLE,
"loudness" DOUBLE,
"audio_mode" BIGINT,
"speechiness" DOUBLE,
"tempo" DOUBLE,
"time_signature" BIGINT,
"audio_valence" DOUBLE
);Anyone who has the link will be able to view this.