This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # please cite: | |
| # @article{SqueezeNet, | |
| # Author = {Forrest N. Iandola and Matthew W. Moskewicz and Khalid Ashraf and Song Han and William J. Dally and Kurt Keutzer}, | |
| # Title = {SqueezeNet: AlexNet-level accuracy with 50x fewer parameters and $<$1MB model size}, | |
| # Journal = {arXiv:1602.07360}, | |
| # Year = {2016} | |
| # } | |
| # | |
| # this file is by Hyunjun Kim (rmekdma); taken from: | |
| # https://github.com/DeepScale/SqueezeNet/pull/20 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| n02672831 accordion | |
| n02691156 airplane | |
| n02219486 ant | |
| n02419796 antelope | |
| n07739125 apple | |
| n02454379 armadillo | |
| n07718747 artichoke | |
| n02764044 axe | |
| n02766320 baby bed | |
| n02769748 backpack |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| author: jbenet | |
| os x, compile with: gcc -o testo test.c | |
| linux, compile with: gcc -o testo test.c -lrt | |
| */ | |
| #include <time.h> | |
| #include <sys/time.h> | |
| #include <stdio.h> |
NewerOlder