├── .gitignore ├── LICENSE ├── README.md └── scripts ├── __init__.py ├── cnn.py ├── inceptionv4.py ├── kaggleensemble.py ├── mean.py ├── meanSTDDEV ├── meanSTDDEV240 ├── meanSTDDEV320 ├── meanSTDDEV400 ├── resnet.py ├── utils.py └── visualizer.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalkr/dogsVScats/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalkr/dogsVScats/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalkr/dogsVScats/HEAD/README.md -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalkr/dogsVScats/HEAD/scripts/cnn.py -------------------------------------------------------------------------------- /scripts/inceptionv4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalkr/dogsVScats/HEAD/scripts/inceptionv4.py -------------------------------------------------------------------------------- /scripts/kaggleensemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalkr/dogsVScats/HEAD/scripts/kaggleensemble.py -------------------------------------------------------------------------------- /scripts/mean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalkr/dogsVScats/HEAD/scripts/mean.py -------------------------------------------------------------------------------- /scripts/meanSTDDEV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalkr/dogsVScats/HEAD/scripts/meanSTDDEV -------------------------------------------------------------------------------- /scripts/meanSTDDEV240: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalkr/dogsVScats/HEAD/scripts/meanSTDDEV240 -------------------------------------------------------------------------------- /scripts/meanSTDDEV320: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalkr/dogsVScats/HEAD/scripts/meanSTDDEV320 -------------------------------------------------------------------------------- /scripts/meanSTDDEV400: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalkr/dogsVScats/HEAD/scripts/meanSTDDEV400 -------------------------------------------------------------------------------- /scripts/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalkr/dogsVScats/HEAD/scripts/resnet.py -------------------------------------------------------------------------------- /scripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalkr/dogsVScats/HEAD/scripts/utils.py -------------------------------------------------------------------------------- /scripts/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalkr/dogsVScats/HEAD/scripts/visualizer.py --------------------------------------------------------------------------------