ArXiv Paper Abstracts
arXiv paper abstract dataset for building multi-label text classifiers.
@kaggle.spsayakpaul_arxiv_paper_abstracts
arXiv paper abstract dataset for building multi-label text classifiers.
@kaggle.spsayakpaul_arxiv_paper_abstracts
Paper submission systems (CMT, OpenReview, etc.) require the users to upload paper titles and paper abstracts and then specify the subject areas their papers best belong to. Won't it be nice if such submission systems provided viable subject area suggestions as to where the corresponding papers could be best associated with?
This dataset would allow developers to build baseline models that might benefit this use case. Data analysts might also enjoy analyzing the intricacies
of different papers and how well their abstracts correlate to their noted categories. Additionally, we hope that the dataset will serve as a decent benchmark for building useful text classification systems.
The dataset collection process is available here in this notebook. Please use the latest version of the data to run your experiments. Here's an accompanying blog post on keras.io discussing the motivation behind this dataset, building a simple baseline model, etc.: Large-scale multi-label text classification.
Thanks to Lukas Schwab (author of arxiv.py) for helping us build our initial data collection utilities. Thanks to Robert Bradshaw for his inputs on the Apache Beam pipeline. Thanks to the ML-GDE program for providing GCP credits that allowed us to run the Beam pipeline at scale on Dataflow.
CREATE TABLE arxiv_data (
"titles" VARCHAR,
"summaries" VARCHAR,
"terms" VARCHAR
);CREATE TABLE arxiv_data_210930_054931 (
"terms" VARCHAR,
"titles" VARCHAR,
"abstracts" VARCHAR
);Anyone who has the link will be able to view this.