Repo to make keeping an up-to-date list of papers easier.
The format is supposed to look good in github, and be easy to grep
.
lastname_year_venue_{first word of publication title}.md
# filename
link
bibtex citation
# Tags
+ tag_number_1
# Description
Description goes here
See zeiler_2014_eccv_visualizing.md
- convnet
- imagenet
- hinton
Find papers by Girshick:
ls | grep girshick
Find papers tagged with convnet, by Girshick:
grep -rl '+ convnet' . | grep girshick
Find papers tagged with convnet, in 2014:
grep -rl '+ convnet' . | grep 2014
Find papers tagged with convnet, in eccv:
grep -rl '+ convnet' . | grep eccv