├── .gitignore ├── LICENSE ├── README.md ├── data ├── README.md └── dataset.h5 ├── multilabel_with_missing_labels.py └── tivaro_suggestion.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manashmandal/Multitask_Learning_Keras/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manashmandal/Multitask_Learning_Keras/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manashmandal/Multitask_Learning_Keras/HEAD/README.md -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manashmandal/Multitask_Learning_Keras/HEAD/data/README.md -------------------------------------------------------------------------------- /data/dataset.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manashmandal/Multitask_Learning_Keras/HEAD/data/dataset.h5 -------------------------------------------------------------------------------- /multilabel_with_missing_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manashmandal/Multitask_Learning_Keras/HEAD/multilabel_with_missing_labels.py -------------------------------------------------------------------------------- /tivaro_suggestion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manashmandal/Multitask_Learning_Keras/HEAD/tivaro_suggestion.py --------------------------------------------------------------------------------