├── LICENSE ├── README.md ├── VERITE ├── VERITE.csv ├── VERITE_articles.csv ├── VERITE_clip_image_embeddings_ViTL14.npy ├── VERITE_clip_text_embeddings_ViTL14.npy ├── figments.png └── verite.png ├── experiment.py ├── extract_features.py ├── main.py ├── model.py ├── prepare_datasets.py ├── requirements.txt └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevejpapad/image-text-verification/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevejpapad/image-text-verification/HEAD/README.md -------------------------------------------------------------------------------- /VERITE/VERITE.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevejpapad/image-text-verification/HEAD/VERITE/VERITE.csv -------------------------------------------------------------------------------- /VERITE/VERITE_articles.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevejpapad/image-text-verification/HEAD/VERITE/VERITE_articles.csv -------------------------------------------------------------------------------- /VERITE/VERITE_clip_image_embeddings_ViTL14.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevejpapad/image-text-verification/HEAD/VERITE/VERITE_clip_image_embeddings_ViTL14.npy -------------------------------------------------------------------------------- /VERITE/VERITE_clip_text_embeddings_ViTL14.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevejpapad/image-text-verification/HEAD/VERITE/VERITE_clip_text_embeddings_ViTL14.npy -------------------------------------------------------------------------------- /VERITE/figments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevejpapad/image-text-verification/HEAD/VERITE/figments.png -------------------------------------------------------------------------------- /VERITE/verite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevejpapad/image-text-verification/HEAD/VERITE/verite.png -------------------------------------------------------------------------------- /experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevejpapad/image-text-verification/HEAD/experiment.py -------------------------------------------------------------------------------- /extract_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevejpapad/image-text-verification/HEAD/extract_features.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevejpapad/image-text-verification/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevejpapad/image-text-verification/HEAD/model.py -------------------------------------------------------------------------------- /prepare_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevejpapad/image-text-verification/HEAD/prepare_datasets.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevejpapad/image-text-verification/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevejpapad/image-text-verification/HEAD/utils.py --------------------------------------------------------------------------------