Hierarchical Text Classification
Exploring approaches to text classification with structured classes
@kaggle.kashnitsky_hierarchical_text_classification
Exploring approaches to text classification with structured classes
@kaggle.kashnitsky_hierarchical_text_classification
CREATE TABLE train_40k (
"productid" VARCHAR,
"title" VARCHAR,
"userid" VARCHAR,
"helpfulness" VARCHAR,
"score" DOUBLE,
"time" BIGINT,
"text" VARCHAR,
"cat1" VARCHAR,
"cat2" VARCHAR,
"cat3" VARCHAR
);
CREATE TABLE unlabeled_150k (
"title" VARCHAR,
"text" VARCHAR
);
CREATE TABLE val_10k (
"productid" VARCHAR,
"title" VARCHAR,
"userid" VARCHAR,
"helpfulness" VARCHAR,
"score" DOUBLE,
"time" BIGINT,
"text" VARCHAR,
"cat1" VARCHAR,
"cat2" VARCHAR,
"cat3" VARCHAR
);
Anyone who has the link will be able to view this.