Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rejuvyesh/papers
git-annex repo of papers
https://github.com/rejuvyesh/papers
Last synced: about 1 month ago
JSON representation
git-annex repo of papers
- Host: GitHub
- URL: https://github.com/rejuvyesh/papers
- Owner: rejuvyesh
- Created: 2014-12-30T13:50:39.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-06-11T21:19:16.000Z (over 8 years ago)
- Last Synced: 2024-04-23T14:12:59.699Z (7 months ago)
- Homepage:
- Size: 4.42 MB
- Stars: 12
- Watchers: 4
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
papers
======A git-annex repository of academic papers. Mostly machine learning related.
Using
-----First install `git` and `git-annex`. Then:
```sh
git clone git://github.com/rejuvyesh/papers
git-annex init local
git-annex get .
```If you want just some particular paper:
```
git-annex get deep-learning/2011-deep-sparse-rectifier-neural-networks.pdf
```Please open an issue if you cannot download any paper so that I can mirror them.
How I created this?
-------------------```sh
cd papers
git init
git remote add origin [email protected]/rejuvyesh/papers
git-annex init laptop
git-annex addurl --file deep-learning/1997-bain-on-neural-networks.pdf http://deeplearning.cs.cmu.edu/pdfs/Bain.On.Neural.Networks.pdf
git-annex add .
git commit -m "papers"
git config remote.origin.annex-ignore true # Because GitHub doesn't store annexed content.
git push origin master git-annex
```