├── .gitignore ├── LICENSE ├── README.md ├── classifier.py ├── config.py ├── datasets ├── NUS_WIDE_pretrained_w2v_glove-wiki-gigaword-300 ├── Readme.md └── extract_features │ ├── VGG_model.py │ ├── data.py │ ├── dataset.py │ ├── extract_4096_features.py │ └── preprocess.py ├── environment.yml ├── evaluate.py ├── networks └── CLF_model.py ├── pretrained_models └── Readme.md ├── scripts ├── eval_nus_wide.sh └── train_nus_wide.sh ├── train.py └── util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitac8/Generative_MLZSL/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitac8/Generative_MLZSL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitac8/Generative_MLZSL/HEAD/README.md -------------------------------------------------------------------------------- /classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitac8/Generative_MLZSL/HEAD/classifier.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitac8/Generative_MLZSL/HEAD/config.py -------------------------------------------------------------------------------- /datasets/NUS_WIDE_pretrained_w2v_glove-wiki-gigaword-300: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitac8/Generative_MLZSL/HEAD/datasets/NUS_WIDE_pretrained_w2v_glove-wiki-gigaword-300 -------------------------------------------------------------------------------- /datasets/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitac8/Generative_MLZSL/HEAD/datasets/Readme.md -------------------------------------------------------------------------------- /datasets/extract_features/VGG_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitac8/Generative_MLZSL/HEAD/datasets/extract_features/VGG_model.py -------------------------------------------------------------------------------- /datasets/extract_features/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitac8/Generative_MLZSL/HEAD/datasets/extract_features/data.py -------------------------------------------------------------------------------- /datasets/extract_features/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitac8/Generative_MLZSL/HEAD/datasets/extract_features/dataset.py -------------------------------------------------------------------------------- /datasets/extract_features/extract_4096_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitac8/Generative_MLZSL/HEAD/datasets/extract_features/extract_4096_features.py -------------------------------------------------------------------------------- /datasets/extract_features/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitac8/Generative_MLZSL/HEAD/datasets/extract_features/preprocess.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitac8/Generative_MLZSL/HEAD/environment.yml -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitac8/Generative_MLZSL/HEAD/evaluate.py -------------------------------------------------------------------------------- /networks/CLF_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitac8/Generative_MLZSL/HEAD/networks/CLF_model.py -------------------------------------------------------------------------------- /pretrained_models/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitac8/Generative_MLZSL/HEAD/pretrained_models/Readme.md -------------------------------------------------------------------------------- /scripts/eval_nus_wide.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitac8/Generative_MLZSL/HEAD/scripts/eval_nus_wide.sh -------------------------------------------------------------------------------- /scripts/train_nus_wide.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitac8/Generative_MLZSL/HEAD/scripts/train_nus_wide.sh -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitac8/Generative_MLZSL/HEAD/train.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitac8/Generative_MLZSL/HEAD/util.py --------------------------------------------------------------------------------