NLP With Disaster Tweets - Cleaning Data
Cleaning dataset for Kaggle Competition "Real or Not? NLP with Disaster Tweets"
@kaggle.vbmokin_nlp_with_disaster_tweets_cleaning_data
Cleaning dataset for Kaggle Competition "Real or Not? NLP with Disaster Tweets"
@kaggle.vbmokin_nlp_with_disaster_tweets_cleaning_data
CREATE TABLE test_data_cleaning (
"id" BIGINT,
"keyword" VARCHAR,
"location" VARCHAR,
"text" VARCHAR
);
CREATE TABLE test_data_cleaning2 (
"id" BIGINT,
"keyword" VARCHAR,
"location" VARCHAR,
"text" VARCHAR
);
CREATE TABLE train_data_cleaning (
"id" BIGINT,
"keyword" VARCHAR,
"location" VARCHAR,
"text" VARCHAR,
"target" BIGINT
);
CREATE TABLE train_data_cleaning2 (
"id" BIGINT,
"keyword" VARCHAR,
"location" VARCHAR,
"text" VARCHAR,
"target" BIGINT
);
Anyone who has the link will be able to view this.