App Store Reviews For A Mobile App
Fictional App Store Reviews for Demo Projects and Labeled Data
@kaggle.sanlian_app_store_reviews_for_a_mobile_app
Fictional App Store Reviews for Demo Projects and Labeled Data
@kaggle.sanlian_app_store_reviews_for_a_mobile_app
This dataset contains fictional reviews from a hypothetical mobile application, generated for demo purposes in various projects. The reviews include detailed feedback from users across different countries and platforms, with additional attributes such as star ratings, like/dislike counts, and issue flags. The data was later used as an input for a large language model (LLM) to generate labeled outputs, which are included in a separate dataset named labeled_app_store_reviews. This labeled dataset can be used for machine learning tasks such as sentiment analysis, text classification, or even A/B testing simulations.
CREATE TABLE app_store_reviews (
"date" VARCHAR,
"platform" VARCHAR,
"country" VARCHAR,
"review" VARCHAR,
"star" BIGINT,
"user_id" VARCHAR,
"issue_flag" VARCHAR,
"likes_count" BIGINT,
"dislike_count" BIGINT,
"label" VARCHAR
);
CREATE TABLE labeled_app_store_reviews (
"date" VARCHAR,
"platform" VARCHAR,
"country" VARCHAR,
"review" VARCHAR,
"star" BIGINT,
"user_id" VARCHAR,
"issue_flag" VARCHAR,
"likes_count" BIGINT,
"dislike_count" BIGINT,
"label" VARCHAR
);
Anyone who has the link will be able to view this.