├── .gitignore ├── LICENSE ├── README.md ├── convert_to_tfrecords.py ├── donkey.py ├── donkey_sample.ipynb ├── draw_bbox.ipynb ├── eval.py ├── evaluator.py ├── images ├── accuracy.png ├── graph.png ├── inference1.png ├── inference2.png ├── loss.png ├── test1.png ├── test2.png ├── train1.png └── train2.png ├── inference.py ├── inference_outside_sample.ipynb ├── inference_sample.ipynb ├── meta.py ├── model.py ├── read_tfrecords_sample.ipynb └── train.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .ipynb_checkpoints 3 | *.pyc 4 | data/* 5 | logs/* 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/SVHNClassifier/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/SVHNClassifier/HEAD/README.md -------------------------------------------------------------------------------- /convert_to_tfrecords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/SVHNClassifier/HEAD/convert_to_tfrecords.py -------------------------------------------------------------------------------- /donkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/SVHNClassifier/HEAD/donkey.py -------------------------------------------------------------------------------- /donkey_sample.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/SVHNClassifier/HEAD/donkey_sample.ipynb -------------------------------------------------------------------------------- /draw_bbox.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/SVHNClassifier/HEAD/draw_bbox.ipynb -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/SVHNClassifier/HEAD/eval.py -------------------------------------------------------------------------------- /evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/SVHNClassifier/HEAD/evaluator.py -------------------------------------------------------------------------------- /images/accuracy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/SVHNClassifier/HEAD/images/accuracy.png -------------------------------------------------------------------------------- /images/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/SVHNClassifier/HEAD/images/graph.png -------------------------------------------------------------------------------- /images/inference1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/SVHNClassifier/HEAD/images/inference1.png -------------------------------------------------------------------------------- /images/inference2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/SVHNClassifier/HEAD/images/inference2.png -------------------------------------------------------------------------------- /images/loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/SVHNClassifier/HEAD/images/loss.png -------------------------------------------------------------------------------- /images/test1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/SVHNClassifier/HEAD/images/test1.png -------------------------------------------------------------------------------- /images/test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/SVHNClassifier/HEAD/images/test2.png -------------------------------------------------------------------------------- /images/train1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/SVHNClassifier/HEAD/images/train1.png -------------------------------------------------------------------------------- /images/train2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/SVHNClassifier/HEAD/images/train2.png -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/SVHNClassifier/HEAD/inference.py -------------------------------------------------------------------------------- /inference_outside_sample.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/SVHNClassifier/HEAD/inference_outside_sample.ipynb -------------------------------------------------------------------------------- /inference_sample.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/SVHNClassifier/HEAD/inference_sample.ipynb -------------------------------------------------------------------------------- /meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/SVHNClassifier/HEAD/meta.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/SVHNClassifier/HEAD/model.py -------------------------------------------------------------------------------- /read_tfrecords_sample.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/SVHNClassifier/HEAD/read_tfrecords_sample.ipynb -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/SVHNClassifier/HEAD/train.py --------------------------------------------------------------------------------