Baselight

Song Lyrics From 79 Musical Genres

Data scraped from the website vagalume.com.br

@kaggle.neisse_scrapped_lyrics_from_6_genres

Loading...
Loading...

About this Dataset

Song Lyrics From 79 Musical Genres

Context

This dataset came from a desire for stretching my web scrapping skills as well as to trian a LSTM network to maybe compose some lyrics. I detailed how I obtained the data here: Scraping lyrics from Vagalume.

Content

All the data were obtained by scraping the Brazilian website Vagalume using R.

There are two datasets artists-data.csv and lyrics-data.csv, originally they had data on only 6 musical genres, but on the last uptade i scraped all lyrics from the website.

Acknowledgements

This data is scraped from the Vagalume website, so it depends on their endavour on storing and sharing milions of song lyrics.

Inspiration

The data scraping of this dataset was inspired by the desire to analyze the data on music and train a LSTM to compose lyrics.

Tables

Artists Data

@kaggle.neisse_scrapped_lyrics_from_6_genres.artists_data
  • 146.78 KB
  • 4168 rows
  • 5 columns
Loading...

CREATE TABLE artists_data (
  "artist" VARCHAR,
  "genres" VARCHAR,
  "songs" DOUBLE,
  "popularity" DOUBLE,
  "link" VARCHAR
);

Lyrics Data

@kaggle.neisse_scrapped_lyrics_from_6_genres.lyrics_data
  • 206.79 MB
  • 379931 rows
  • 5 columns
Loading...

CREATE TABLE lyrics_data (
  "alink" VARCHAR,
  "sname" VARCHAR,
  "slink" VARCHAR,
  "lyric" VARCHAR,
  "language" VARCHAR
);

Share link

Anyone who has the link will be able to view this.