├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── README.md ├── combine_sentencebert_glosses.py ├── dataset_creation ├── README.md ├── convert.sh ├── extract_nodes.py ├── filter_images.py ├── forward_pass.py ├── google_download.py ├── hash_exist_images.py ├── image_urls.py ├── lenet.py ├── list_good_bad_files.py ├── load_data.py ├── requirements.txt ├── resizing.py ├── resnet.py ├── store_edg_info.py ├── utils.py └── vgg.py ├── example_data ├── .gitignore └── queries.txt ├── extract_glosses_visualsem.py ├── process_glosses_with_sentencebert.py ├── requirements.txt ├── retrieval_gloss.py ├── retrieval_gloss_paper.py ├── retrieval_images.py ├── utils.py ├── visualsem_dataset_nodes.py └── visualsem_dataset_tuples.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iacercalixto/visualsem/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iacercalixto/visualsem/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iacercalixto/visualsem/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iacercalixto/visualsem/HEAD/README.md -------------------------------------------------------------------------------- /combine_sentencebert_glosses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iacercalixto/visualsem/HEAD/combine_sentencebert_glosses.py -------------------------------------------------------------------------------- /dataset_creation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iacercalixto/visualsem/HEAD/dataset_creation/README.md -------------------------------------------------------------------------------- /dataset_creation/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iacercalixto/visualsem/HEAD/dataset_creation/convert.sh -------------------------------------------------------------------------------- /dataset_creation/extract_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iacercalixto/visualsem/HEAD/dataset_creation/extract_nodes.py -------------------------------------------------------------------------------- /dataset_creation/filter_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iacercalixto/visualsem/HEAD/dataset_creation/filter_images.py -------------------------------------------------------------------------------- /dataset_creation/forward_pass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iacercalixto/visualsem/HEAD/dataset_creation/forward_pass.py -------------------------------------------------------------------------------- /dataset_creation/google_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iacercalixto/visualsem/HEAD/dataset_creation/google_download.py -------------------------------------------------------------------------------- /dataset_creation/hash_exist_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iacercalixto/visualsem/HEAD/dataset_creation/hash_exist_images.py -------------------------------------------------------------------------------- /dataset_creation/image_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iacercalixto/visualsem/HEAD/dataset_creation/image_urls.py -------------------------------------------------------------------------------- /dataset_creation/lenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iacercalixto/visualsem/HEAD/dataset_creation/lenet.py -------------------------------------------------------------------------------- /dataset_creation/list_good_bad_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iacercalixto/visualsem/HEAD/dataset_creation/list_good_bad_files.py -------------------------------------------------------------------------------- /dataset_creation/load_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iacercalixto/visualsem/HEAD/dataset_creation/load_data.py -------------------------------------------------------------------------------- /dataset_creation/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iacercalixto/visualsem/HEAD/dataset_creation/requirements.txt -------------------------------------------------------------------------------- /dataset_creation/resizing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iacercalixto/visualsem/HEAD/dataset_creation/resizing.py -------------------------------------------------------------------------------- /dataset_creation/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iacercalixto/visualsem/HEAD/dataset_creation/resnet.py -------------------------------------------------------------------------------- /dataset_creation/store_edg_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iacercalixto/visualsem/HEAD/dataset_creation/store_edg_info.py -------------------------------------------------------------------------------- /dataset_creation/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iacercalixto/visualsem/HEAD/dataset_creation/utils.py -------------------------------------------------------------------------------- /dataset_creation/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iacercalixto/visualsem/HEAD/dataset_creation/vgg.py -------------------------------------------------------------------------------- /example_data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iacercalixto/visualsem/HEAD/example_data/.gitignore -------------------------------------------------------------------------------- /example_data/queries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iacercalixto/visualsem/HEAD/example_data/queries.txt -------------------------------------------------------------------------------- /extract_glosses_visualsem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iacercalixto/visualsem/HEAD/extract_glosses_visualsem.py -------------------------------------------------------------------------------- /process_glosses_with_sentencebert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iacercalixto/visualsem/HEAD/process_glosses_with_sentencebert.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iacercalixto/visualsem/HEAD/requirements.txt -------------------------------------------------------------------------------- /retrieval_gloss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iacercalixto/visualsem/HEAD/retrieval_gloss.py -------------------------------------------------------------------------------- /retrieval_gloss_paper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iacercalixto/visualsem/HEAD/retrieval_gloss_paper.py -------------------------------------------------------------------------------- /retrieval_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iacercalixto/visualsem/HEAD/retrieval_images.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iacercalixto/visualsem/HEAD/utils.py -------------------------------------------------------------------------------- /visualsem_dataset_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iacercalixto/visualsem/HEAD/visualsem_dataset_nodes.py -------------------------------------------------------------------------------- /visualsem_dataset_tuples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iacercalixto/visualsem/HEAD/visualsem_dataset_tuples.py --------------------------------------------------------------------------------