All Projects → martenlienen → icml-nips-iclr-dataset

martenlienen / icml-nips-iclr-dataset

Licence: other
Papers, authors and author affiliations from ICML, NeurIPS and ICLR 2006-2021

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to icml-nips-iclr-dataset

Awesome-Computer-Vision-Paper-List
This repository contains all the papers accepted in top conference of computer vision, with convenience to search related papers.
Stars: ✭ 248 (+1080.95%)
Mutual labels:  iclr, icml, neurips
AIPaperCompleteDownload
Complete download for papers in various top conferences
Stars: ✭ 64 (+204.76%)
Mutual labels:  icml, neurips
NeuroAI
NeuroAI-UW seminar, a regular weekly seminar for the UW community, organized by NeuroAI Shlizerman Lab.
Stars: ✭ 36 (+71.43%)
Mutual labels:  icml, neurips
Active-Passive-Losses
[ICML2020] Normalized Loss Functions for Deep Learning with Noisy Labels
Stars: ✭ 92 (+338.1%)
Mutual labels:  icml
semi-supervised-NFs
Code for the paper Semi-Conditional Normalizing Flows for Semi-Supervised Learning
Stars: ✭ 23 (+9.52%)
Mutual labels:  icml
WhitenBlackBox
Towards Reverse-Engineering Black-Box Neural Networks, ICLR'18
Stars: ✭ 47 (+123.81%)
Mutual labels:  iclr
NeuralPull
Implementation of ICML'2021:Neural-Pull: Learning Signed Distance Functions from Point Clouds by Learning to Pull Space onto Surfaces
Stars: ✭ 149 (+609.52%)
Mutual labels:  icml
TailCalibX
Pytorch implementation of Feature Generation for Long-Tail Classification by Rahul Vigneswaran, Marc T Law, Vineeth N Balasubramaniam and Makarand Tapaswi
Stars: ✭ 32 (+52.38%)
Mutual labels:  iclr
rebias
Official Pytorch implementation of ReBias (Learning De-biased Representations with Biased Representations), ICML 2020
Stars: ✭ 125 (+495.24%)
Mutual labels:  icml
TaLKConvolutions
Official PyTorch implementation of Time-aware Large Kernel (TaLK) Convolutions (ICML 2020)
Stars: ✭ 26 (+23.81%)
Mutual labels:  icml
deep-weight-prior
The Deep Weight Prior, ICLR 2019
Stars: ✭ 42 (+100%)
Mutual labels:  iclr
noisy label understanding utilizing
ICML 2019: Understanding and Utilizing Deep Neural Networks Trained with Noisy Labels
Stars: ✭ 82 (+290.48%)
Mutual labels:  icml
CGCF-ConfGen
🧪 Learning Neural Generative Dynamics for Molecular Conformation Generation (ICLR 2021)
Stars: ✭ 41 (+95.24%)
Mutual labels:  iclr
probnmn-clevr
Code for ICML 2019 paper "Probabilistic Neural-symbolic Models for Interpretable Visual Question Answering" [long-oral]
Stars: ✭ 63 (+200%)
Mutual labels:  icml
skip-connections-matter
Codes for ICLR 2020 paper "Skip Connections Matter: On the Transferability of Adversarial Examples Generated with ResNets"
Stars: ✭ 61 (+190.48%)
Mutual labels:  iclr
unicornn
Official code for UnICORNN (ICML 2021)
Stars: ✭ 21 (+0%)
Mutual labels:  icml
FairAI
This is a collection of papers and other resources related to fairness.
Stars: ✭ 55 (+161.9%)
Mutual labels:  icml
Pwc
Papers with code. Sorted by stars. Updated weekly.
Stars: ✭ 15,288 (+72700%)
Mutual labels:  icml
DeepIPR
This is the code repo of our NeurIPS2019 work that proposes novel passport-based DNN ownership verification schemes, i.e. we embed passport layer into various deep learning architectures (e.g. AlexNet, ResNet) for Intellectual Property Right (IPR) protection.
Stars: ✭ 63 (+200%)
Mutual labels:  neurips
cool-papers-in-pytorch
Reimplementing cool papers in PyTorch...
Stars: ✭ 21 (+0%)
Mutual labels:  iclr

Paper dataset from ICML, NeurIPS and ICLR

The dataset contains all paper titles, authors and their affiliations from the years

  • ICML: 2017-2020
  • NeurIPS: 2006-2020
  • ICLR: 2018-2021 (except 2020)

The earliest years are always the years in which the respective conference introduced the web interface which this script is compatible with.

Conference,Year,Title,Author,Affiliation
NeurIPS,2006,Attentional Processing on a Spike-Based VLSI Neural Network,Yingxue Wang,"Swiss Federal Institute of Technology, Zurich"
NeurIPS,2006,Attentional Processing on a Spike-Based VLSI Neural Network,Rodney J Douglas,Institute of Neuroinformatics
NeurIPS,2006,Attentional Processing on a Spike-Based VLSI Neural Network,Shih-Chii Liu,"Institute for Neuroinformatics, University of Zurich and ETH Zurich"
NeurIPS,2006,Multi-Task Feature Learning,Andreas Argyriou,Ecole Centrale de Paris
# ...

In 2020 the corona virus spread over the world and forced the conferences to adopt a new virtual format. ICLR decided to announce the conference schedule via a separate page for just this one year. For 2021 their schedule includes poster sessions for all papers again as usual. This alternate schedule page is not covered by the scraping script which is why there are no papers for ICLR2020.

Update the Data

The first and definitely correct option is to just re-scrape the whole dataset as in the following example.

python scrape.py 2006-2021

A faster alternative is just scraping the new data and appending it to the CSV file.

python scrape.py --output update.csv 2019-2021
cat update.csv >> papers.csv

The file is sorted by year, so appending at the end keeps the order in tact. However, you need to take care that you do not end up with duplicate entries. Let's say that the current file contains all papers until 2019 but when the file was created, only ICLR had happened yet. If you then later scrape 2019 again to add the other conferences as above, you would get the ICLR papers twice.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].