├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md └── overfeat ├── LICENSE.txt ├── README.md ├── compute_train_acc.py ├── data ├── cats.txt ├── dogs.txt ├── overfeat_predictions_test.tar.gz └── overfeat_predictions_train.tar.gz ├── overfeat_classify.py └── predict.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zygmuntz/kaggle-cats-and-dogs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zygmuntz/kaggle-cats-and-dogs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zygmuntz/kaggle-cats-and-dogs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | See the `overfeat` dir. -------------------------------------------------------------------------------- /overfeat/LICENSE.txt: -------------------------------------------------------------------------------- 1 | DOGE GENERAL PUBLIC LICENSE 2 | version 1.0 3 | 4 | Wow 5 | Such license 6 | Very permissive 7 | -------------------------------------------------------------------------------- /overfeat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zygmuntz/kaggle-cats-and-dogs/HEAD/overfeat/README.md -------------------------------------------------------------------------------- /overfeat/compute_train_acc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zygmuntz/kaggle-cats-and-dogs/HEAD/overfeat/compute_train_acc.py -------------------------------------------------------------------------------- /overfeat/data/cats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zygmuntz/kaggle-cats-and-dogs/HEAD/overfeat/data/cats.txt -------------------------------------------------------------------------------- /overfeat/data/dogs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zygmuntz/kaggle-cats-and-dogs/HEAD/overfeat/data/dogs.txt -------------------------------------------------------------------------------- /overfeat/data/overfeat_predictions_test.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zygmuntz/kaggle-cats-and-dogs/HEAD/overfeat/data/overfeat_predictions_test.tar.gz -------------------------------------------------------------------------------- /overfeat/data/overfeat_predictions_train.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zygmuntz/kaggle-cats-and-dogs/HEAD/overfeat/data/overfeat_predictions_train.tar.gz -------------------------------------------------------------------------------- /overfeat/overfeat_classify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zygmuntz/kaggle-cats-and-dogs/HEAD/overfeat/overfeat_classify.py -------------------------------------------------------------------------------- /overfeat/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zygmuntz/kaggle-cats-and-dogs/HEAD/overfeat/predict.py --------------------------------------------------------------------------------