KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
papers
★ 14
Open GitHub ↗
git-annex repo of papers
Download README (.md)
Explore Similar Repositories
java-.net-ocr-api-library
:
Asprise OCR SDK for Java/.NET - royalty free, convert image to searchable PDF — Edit
Mailer
:
[READ-ONLY] Sylius mailer component.
python-iap
:
Python utilities for working with Apple In-App Purchases (IAP)
todo-backend-webapi
:
A backend for TodoMVC implemented with ASP.NET WebAPI 2 and C#
ESP8266_WiFi_Shield
:
An Arduino WiFi Shield based around the Espressif ESP8266 WiFi SoC.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
papers
?
Download (.md)
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 git@github.com/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 ```