Skip to content

Instantly share code, notes, and snippets.

@wwymak
wwymak / map_clsloc.txt
Created January 7, 2020 22:18 — forked from aaronpolhamus/map_clsloc.txt
Image net classes + labels
n02119789 1 kit_fox
n02100735 2 English_setter
n02110185 3 Siberian_husky
n02096294 4 Australian_terrier
n02102040 5 English_springer
n02066245 6 grey_whale
n02509815 7 lesser_panda
n02124075 8 Egyptian_cat
n02417914 9 ibex
n02123394 10 Persian_cat
@wwymak
wwymak / gist:73dc2240c3c60eb9a53539cf429860b7
Created March 16, 2017 15:59 — forked from fabien0102/gist:88dcaa184d801fd5e67a
Import multiple json files into mongoDB
ls -1 *.json | while read jsonfile; do mongoimport -d support -c logs -file $jsonfile --jsonArray -type json; done