├── .gitignore ├── LICENSE ├── README.md ├── categorize.py ├── data └── neg_f_1000.npy ├── images └── example.jpg └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostyaev/smart_categorizer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostyaev/smart_categorizer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostyaev/smart_categorizer/HEAD/README.md -------------------------------------------------------------------------------- /categorize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostyaev/smart_categorizer/HEAD/categorize.py -------------------------------------------------------------------------------- /data/neg_f_1000.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostyaev/smart_categorizer/HEAD/data/neg_f_1000.npy -------------------------------------------------------------------------------- /images/example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostyaev/smart_categorizer/HEAD/images/example.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | keras 2 | tqdm 3 | scikit-learn>=0.19.0 4 | --------------------------------------------------------------------------------