Skip to content

Instantly share code, notes, and snippets.

@lucasb-eyer
Created October 12, 2016 00:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lucasb-eyer/27b253f276c4885a7a219c40158e5e41 to your computer and use it in GitHub Desktop.
Save lucasb-eyer/27b253f276c4885a7a219c40158e5e41 to your computer and use it in GitHub Desktop.
Count approximate number of deep-learning/cnn posters in ECCV
# count number of posters
wget -O - http://www.eccv2016.org/main-conference/ | grep -i 'pdf_icon' | wc -l
# == 504
# number of deep-learning ones
wget -O - http://www.eccv2016.org/main-conference/ | grep -i 'deep\|convolutional\|network\|cnn\|neural' | wc -l
# == 127
# Note the numbers are approximates because some posters are present twice, there's a legend on the icons, etc.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment