Mobile/Non-mobile Tech Articles & Tweets
Bridgei2i's Articles and Tweets Data-Mobile-Tech/Non-Mobile Tech Classification
@kaggle.shreyasajal_mobilenonmobile_tech_articles_and_tweets
Bridgei2i's Articles and Tweets Data-Mobile-Tech/Non-Mobile Tech Classification
@kaggle.shreyasajal_mobilenonmobile_tech_articles_and_tweets
Data Source:Bridgei2i
Languages: Hindi, English, Hinglish
The datasets contain articles and tweets and the respective mobile/non mobile tech flags. Can be used for text classification, text preprocessing, translation, transliteration application tasks.
DATA DICTIONARY
dev_article :
- Text_ID : unique article ids
- Text: Article Text Data
- Headline: Headline to the article
- Mobile_Tech_Flag: Flag shows whether article is related to mobile_tech
dev_tweet :
- Text_ID : unique tweet ids
- Text: Tweet Text Data
- Mobile_Tech_Flag: Flag shows whether tweet is related to mobile_tech
CREATE TABLE dev_data_article (
"text_id" VARCHAR,
"text" VARCHAR,
"headline" VARCHAR,
"mobile_tech_flag" BIGINT
);CREATE TABLE dev_data_tweet (
"tweet_id" VARCHAR,
"tweet" VARCHAR,
"mobile_tech_tag" BIGINT
);Anyone who has the link will be able to view this.