├── .gitignore ├── LICENSE ├── NewArch_v5.png ├── README.md ├── aberrations.py ├── data.py ├── google-10000-english-no-swears.txt ├── logistics.py ├── model.py ├── test.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basilevh/dissecting-image-crops/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basilevh/dissecting-image-crops/HEAD/LICENSE -------------------------------------------------------------------------------- /NewArch_v5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basilevh/dissecting-image-crops/HEAD/NewArch_v5.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basilevh/dissecting-image-crops/HEAD/README.md -------------------------------------------------------------------------------- /aberrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basilevh/dissecting-image-crops/HEAD/aberrations.py -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basilevh/dissecting-image-crops/HEAD/data.py -------------------------------------------------------------------------------- /google-10000-english-no-swears.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basilevh/dissecting-image-crops/HEAD/google-10000-english-no-swears.txt -------------------------------------------------------------------------------- /logistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basilevh/dissecting-image-crops/HEAD/logistics.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basilevh/dissecting-image-crops/HEAD/model.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basilevh/dissecting-image-crops/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basilevh/dissecting-image-crops/HEAD/train.py --------------------------------------------------------------------------------