├── LICENSE ├── README.md ├── callbacks ├── __init__.py └── helper.py ├── img ├── preprocess │ ├── data_augment.py │ ├── face_align2.py │ └── label.py └── read_data │ ├── div_data.py │ ├── readhdf.py │ └── shuffle.py ├── models └── activ_cnn.py ├── nlp ├── __init__.py └── every2vec.py └── param_op ├── hypopt.py └── skopt.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishank26/Kutils/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishank26/Kutils/HEAD/README.md -------------------------------------------------------------------------------- /callbacks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /callbacks/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishank26/Kutils/HEAD/callbacks/helper.py -------------------------------------------------------------------------------- /img/preprocess/data_augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishank26/Kutils/HEAD/img/preprocess/data_augment.py -------------------------------------------------------------------------------- /img/preprocess/face_align2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishank26/Kutils/HEAD/img/preprocess/face_align2.py -------------------------------------------------------------------------------- /img/preprocess/label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishank26/Kutils/HEAD/img/preprocess/label.py -------------------------------------------------------------------------------- /img/read_data/div_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishank26/Kutils/HEAD/img/read_data/div_data.py -------------------------------------------------------------------------------- /img/read_data/readhdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishank26/Kutils/HEAD/img/read_data/readhdf.py -------------------------------------------------------------------------------- /img/read_data/shuffle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishank26/Kutils/HEAD/img/read_data/shuffle.py -------------------------------------------------------------------------------- /models/activ_cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishank26/Kutils/HEAD/models/activ_cnn.py -------------------------------------------------------------------------------- /nlp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nlp/every2vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishank26/Kutils/HEAD/nlp/every2vec.py -------------------------------------------------------------------------------- /param_op/hypopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishank26/Kutils/HEAD/param_op/hypopt.py -------------------------------------------------------------------------------- /param_op/skopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishank26/Kutils/HEAD/param_op/skopt.py --------------------------------------------------------------------------------