├── CNAME ├── CONTRIBUTING.md ├── README.md └── src ├── README.md ├── asset └── header.jpg └── pwc.csv /CNAME: -------------------------------------------------------------------------------- 1 | www.paperake.com -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ### There are several ways that you can contribute 2 | 3 | #### 1. Inspect repositories for paper and verify their correctness 4 | - Open an issue 5 | - Fix it and make a pull request 6 | 7 | #### 2. Submit paper and its accompanying repository 8 | - add it to pwc.csv in /src 9 | - add it to README.md of this repository 10 | - email it to me (fvzaur@gmail.com) 11 | 12 | #### 3. Take a look at open issues and figure out how you can contribute 13 | #### 4. Contribute to source code for curating Papers with Code 14 | - Source code (PWC Engine) will be open gradually in upcoming months 15 | 16 | #### For comments and suggestions for improving this repository, please do it [here](https://github.com/zziz/pwc/issues/1). 17 | -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- 1 | This folder contains all the raw data and code that is used to maintain this repository. 2 | 3 | As this is a work in progress, implementation is not complete yet. I will upload everything here as soon as version 1.0 of PWC project is complete. Currently I plan to do so in upcoming months. 4 | 5 | [pwc.csv](pwc.csv) is the raw form of Papers With Code in main README page. It includes all papers and their metadata. This dataset is reqularly updated. 6 | -------------------------------------------------------------------------------- /src/asset/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziz/pwc/6805521215d91f82869daddf27a12048b5444068/src/asset/header.jpg --------------------------------------------------------------------------------