All NeurIPS (NIPS) Papers
Titles, authors, abstracts, and full text for all NeurIPS papers (1987-2019)
@kaggle.rowhitswami_nips_papers_1987_2019_updated
Titles, authors, abstracts, and full text for all NeurIPS papers (1987-2019)
@kaggle.rowhitswami_nips_papers_1987_2019_updated
The Conference and Workshop on Neural Information Processing Systems (abbreviated as NeurIPS and formerly NIPS) is a machine learning and computational neuroscience conference held every December.
This dataset is inspired by dataset NIPS Papers of Ben Hamner. While the original dataset by Ben Hamner represent the time period of 1987-2017 covering over 7241 papers, 2439 more papers has been published in the year of 2018-19. Hence, decided to get everything together for the Kaggle community.
This dataset contains the year of publication, title, author details, abstracts, and full text of all NeurIPS papers from 1987 to 2019.
Since, NeurIPS Conference and Workshop happen in the month of December each year, the dataset will be updated annually.
I scraped all the papers from https://nips.cc using a beautiful library in Python called BeautifulSoup. You can find the code to scrap all the papers on my GitHub Repo. A huge thanks to NeurIPS for making the data public.
Feel free to torture the data and show your creativity in Kaggle Kernels.
Some ideas included but not limited to:
CREATE TABLE authors (
"source_id" BIGINT,
"first_name" VARCHAR,
"last_name" VARCHAR,
"institution" VARCHAR
);
CREATE TABLE papers (
"source_id" BIGINT,
"year" BIGINT,
"title" VARCHAR,
"abstract" VARCHAR,
"full_text" VARCHAR
);
Anyone who has the link will be able to view this.