├── .gitignore ├── CNN ├── load.py ├── predict.py └── train.py ├── LICENSE ├── ReadMe.md ├── assets ├── css │ └── main.css ├── images │ ├── dark-cover.png │ └── default.png └── js │ └── main.js ├── core ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py ├── views.py └── wsgi.py ├── manage.py ├── requirements.txt └── templates └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Omen/tensored-django/HEAD/.gitignore -------------------------------------------------------------------------------- /CNN/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Omen/tensored-django/HEAD/CNN/load.py -------------------------------------------------------------------------------- /CNN/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Omen/tensored-django/HEAD/CNN/predict.py -------------------------------------------------------------------------------- /CNN/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Omen/tensored-django/HEAD/CNN/train.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Omen/tensored-django/HEAD/LICENSE -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Omen/tensored-django/HEAD/ReadMe.md -------------------------------------------------------------------------------- /assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Omen/tensored-django/HEAD/assets/css/main.css -------------------------------------------------------------------------------- /assets/images/dark-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Omen/tensored-django/HEAD/assets/images/dark-cover.png -------------------------------------------------------------------------------- /assets/images/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Omen/tensored-django/HEAD/assets/images/default.png -------------------------------------------------------------------------------- /assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Omen/tensored-django/HEAD/assets/js/main.js -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Omen/tensored-django/HEAD/core/asgi.py -------------------------------------------------------------------------------- /core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Omen/tensored-django/HEAD/core/settings.py -------------------------------------------------------------------------------- /core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Omen/tensored-django/HEAD/core/urls.py -------------------------------------------------------------------------------- /core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Omen/tensored-django/HEAD/core/views.py -------------------------------------------------------------------------------- /core/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Omen/tensored-django/HEAD/core/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Omen/tensored-django/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Omen/tensored-django/HEAD/requirements.txt -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Omen/tensored-django/HEAD/templates/index.html --------------------------------------------------------------------------------