├── LICENSE ├── README.md ├── finetunning_model.py ├── not_hotdog.py ├── not_hotdog_model.py ├── templates ├── .DS_Store ├── result.html └── upload.html ├── test_set ├── .DS_Store ├── hotdog │ └── .DS_Store └── not_hotdog │ └── .DS_Store ├── train_set ├── .DS_Store ├── hotdog │ └── .DS_Store └── not_hotdog │ └── .DS_Store └── uploads └── .DS_Store /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaroslaw-weber/hotdog-not-hotdog/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaroslaw-weber/hotdog-not-hotdog/HEAD/README.md -------------------------------------------------------------------------------- /finetunning_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaroslaw-weber/hotdog-not-hotdog/HEAD/finetunning_model.py -------------------------------------------------------------------------------- /not_hotdog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaroslaw-weber/hotdog-not-hotdog/HEAD/not_hotdog.py -------------------------------------------------------------------------------- /not_hotdog_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaroslaw-weber/hotdog-not-hotdog/HEAD/not_hotdog_model.py -------------------------------------------------------------------------------- /templates/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaroslaw-weber/hotdog-not-hotdog/HEAD/templates/.DS_Store -------------------------------------------------------------------------------- /templates/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaroslaw-weber/hotdog-not-hotdog/HEAD/templates/result.html -------------------------------------------------------------------------------- /templates/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaroslaw-weber/hotdog-not-hotdog/HEAD/templates/upload.html -------------------------------------------------------------------------------- /test_set/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaroslaw-weber/hotdog-not-hotdog/HEAD/test_set/.DS_Store -------------------------------------------------------------------------------- /test_set/hotdog/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaroslaw-weber/hotdog-not-hotdog/HEAD/test_set/hotdog/.DS_Store -------------------------------------------------------------------------------- /test_set/not_hotdog/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaroslaw-weber/hotdog-not-hotdog/HEAD/test_set/not_hotdog/.DS_Store -------------------------------------------------------------------------------- /train_set/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaroslaw-weber/hotdog-not-hotdog/HEAD/train_set/.DS_Store -------------------------------------------------------------------------------- /train_set/hotdog/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaroslaw-weber/hotdog-not-hotdog/HEAD/train_set/hotdog/.DS_Store -------------------------------------------------------------------------------- /train_set/not_hotdog/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaroslaw-weber/hotdog-not-hotdog/HEAD/train_set/not_hotdog/.DS_Store -------------------------------------------------------------------------------- /uploads/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaroslaw-weber/hotdog-not-hotdog/HEAD/uploads/.DS_Store --------------------------------------------------------------------------------