├── .gitignore ├── OpenReview scraping.ipynb ├── README.md ├── about.html ├── charts.html ├── convert.py ├── data ├── iclr2017.json ├── iclr2018.json ├── iclr2018comments.json ├── iclr2018pre.json ├── iclr2019.json ├── iclr2019_11_06.json ├── iclr2019_11_10.json ├── iclr2019_11_21.json └── iclr2020.json ├── index.css ├── index.html └── js ├── charts.js ├── index.js └── list.js /.gitignore: -------------------------------------------------------------------------------- 1 | nips/ 2 | -------------------------------------------------------------------------------- /OpenReview scraping.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chillee/OpenReviewExplorer/HEAD/OpenReview scraping.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chillee/OpenReviewExplorer/HEAD/README.md -------------------------------------------------------------------------------- /about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chillee/OpenReviewExplorer/HEAD/about.html -------------------------------------------------------------------------------- /charts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chillee/OpenReviewExplorer/HEAD/charts.html -------------------------------------------------------------------------------- /convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chillee/OpenReviewExplorer/HEAD/convert.py -------------------------------------------------------------------------------- /data/iclr2017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chillee/OpenReviewExplorer/HEAD/data/iclr2017.json -------------------------------------------------------------------------------- /data/iclr2018.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chillee/OpenReviewExplorer/HEAD/data/iclr2018.json -------------------------------------------------------------------------------- /data/iclr2018comments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chillee/OpenReviewExplorer/HEAD/data/iclr2018comments.json -------------------------------------------------------------------------------- /data/iclr2018pre.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chillee/OpenReviewExplorer/HEAD/data/iclr2018pre.json -------------------------------------------------------------------------------- /data/iclr2019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chillee/OpenReviewExplorer/HEAD/data/iclr2019.json -------------------------------------------------------------------------------- /data/iclr2019_11_06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chillee/OpenReviewExplorer/HEAD/data/iclr2019_11_06.json -------------------------------------------------------------------------------- /data/iclr2019_11_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chillee/OpenReviewExplorer/HEAD/data/iclr2019_11_10.json -------------------------------------------------------------------------------- /data/iclr2019_11_21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chillee/OpenReviewExplorer/HEAD/data/iclr2019_11_21.json -------------------------------------------------------------------------------- /data/iclr2020.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chillee/OpenReviewExplorer/HEAD/data/iclr2020.json -------------------------------------------------------------------------------- /index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chillee/OpenReviewExplorer/HEAD/index.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chillee/OpenReviewExplorer/HEAD/index.html -------------------------------------------------------------------------------- /js/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chillee/OpenReviewExplorer/HEAD/js/charts.js -------------------------------------------------------------------------------- /js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chillee/OpenReviewExplorer/HEAD/js/index.js -------------------------------------------------------------------------------- /js/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chillee/OpenReviewExplorer/HEAD/js/list.js --------------------------------------------------------------------------------