NLP On Research Articles
Multi Label Classification using NLP on Research Articles
@kaggle.vetrirah_janatahack_independence_day_2020_ml_hackathon
Multi Label Classification using NLP on Research Articles
@kaggle.vetrirah_janatahack_independence_day_2020_ml_hackathon
CREATE TABLE sample_submission (
"id" BIGINT,
"computer_science" BIGINT,
"physics" BIGINT,
"mathematics" BIGINT,
"statistics" BIGINT,
"quantitative_biology" BIGINT,
"quantitative_finance" BIGINT
);
CREATE TABLE test (
"id" BIGINT,
"title" VARCHAR,
"abstract" VARCHAR
);
CREATE TABLE train (
"id" BIGINT,
"title" VARCHAR,
"abstract" VARCHAR,
"computer_science" BIGINT,
"physics" BIGINT,
"mathematics" BIGINT,
"statistics" BIGINT,
"quantitative_biology" BIGINT,
"quantitative_finance" BIGINT
);
Anyone who has the link will be able to view this.