NIPS Papers
Titles, authors, abstracts, and extracted text for all NIPS papers (1987-2017)
@kaggle.benhamner_nips_papers
Titles, authors, abstracts, and extracted text for all NIPS papers (1987-2017)
@kaggle.benhamner_nips_papers
CREATE TABLE authors (
"id" BIGINT,
"name" VARCHAR
);
CREATE TABLE papers (
"id" BIGINT,
"year" BIGINT,
"title" VARCHAR,
"event_type" VARCHAR,
"pdf_name" VARCHAR,
"abstract" VARCHAR,
"paper_text" VARCHAR
);
CREATE TABLE paper_authors (
"id" BIGINT,
"paper_id" BIGINT,
"author_id" BIGINT
);
Anyone who has the link will be able to view this.