Serendipite's Article Dataset
Dataset to practice recommendation algorithms
@kaggle.rohitpant_serendipites_article_dataset
Dataset to practice recommendation algorithms
@kaggle.rohitpant_serendipites_article_dataset
Dataset containing ratings by users for different articles.
First dataset has columns with data on user , article and the ratings.
Second dataset contains the attributes of the article, website name, article topic and a column with the complete article.
CREATE TABLE article_info (
"article_id" BIGINT,
"website" VARCHAR,
"title" VARCHAR,
"content" VARCHAR
);CREATE TABLE sample_submission_swfrjkc_fl0dvyc (
"user_id" BIGINT,
"article_id" BIGINT,
"rating" BIGINT
);CREATE TABLE test_rgb6e5m_uhey6k3 (
"user_id" BIGINT,
"article_id" BIGINT
);CREATE TABLE train (
"user_id" BIGINT,
"article_id" BIGINT,
"rating" BIGINT
);Anyone who has the link will be able to view this.