├── .gitignore ├── README.md ├── alignment ├── ARO.ipynb ├── alignment_datasets.py ├── clevr_alignment.py ├── clevr_alignment_utils.py ├── coco_alignment.py ├── coco_utils.py ├── learning_alignment.py ├── pug_alignment.py ├── pug_alignment_utils.py └── sugarcrepe_eval.ipynb ├── clevr_generation ├── .gitignore ├── LICENSE ├── README.md ├── collect_scenes.py ├── data │ ├── CoGenT_A.json │ ├── CoGenT_B.json │ ├── base_scene.blend │ ├── materials │ │ ├── MyMetal.blend │ │ └── Rubber.blend │ ├── properties.json │ └── shapes │ │ ├── SmoothCone.blend │ │ ├── SmoothCube_v2.blend │ │ ├── SmoothCylinder.blend │ │ └── Sphere.blend ├── render_images.py └── utils.py ├── data_loading ├── clevr.py └── pug.py ├── probing ├── clevr_multi_object_probing.py ├── clevr_probing.py ├── clevr_probing_utils.py ├── probing_datasets.py ├── probing_models.py ├── pug_probing.py └── pug_probing_utils.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/README.md -------------------------------------------------------------------------------- /alignment/ARO.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/alignment/ARO.ipynb -------------------------------------------------------------------------------- /alignment/alignment_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/alignment/alignment_datasets.py -------------------------------------------------------------------------------- /alignment/clevr_alignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/alignment/clevr_alignment.py -------------------------------------------------------------------------------- /alignment/clevr_alignment_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/alignment/clevr_alignment_utils.py -------------------------------------------------------------------------------- /alignment/coco_alignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/alignment/coco_alignment.py -------------------------------------------------------------------------------- /alignment/coco_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/alignment/coco_utils.py -------------------------------------------------------------------------------- /alignment/learning_alignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/alignment/learning_alignment.py -------------------------------------------------------------------------------- /alignment/pug_alignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/alignment/pug_alignment.py -------------------------------------------------------------------------------- /alignment/pug_alignment_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/alignment/pug_alignment_utils.py -------------------------------------------------------------------------------- /alignment/sugarcrepe_eval.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/alignment/sugarcrepe_eval.ipynb -------------------------------------------------------------------------------- /clevr_generation/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clevr_generation/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/clevr_generation/LICENSE -------------------------------------------------------------------------------- /clevr_generation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/clevr_generation/README.md -------------------------------------------------------------------------------- /clevr_generation/collect_scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/clevr_generation/collect_scenes.py -------------------------------------------------------------------------------- /clevr_generation/data/CoGenT_A.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/clevr_generation/data/CoGenT_A.json -------------------------------------------------------------------------------- /clevr_generation/data/CoGenT_B.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/clevr_generation/data/CoGenT_B.json -------------------------------------------------------------------------------- /clevr_generation/data/base_scene.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/clevr_generation/data/base_scene.blend -------------------------------------------------------------------------------- /clevr_generation/data/materials/MyMetal.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/clevr_generation/data/materials/MyMetal.blend -------------------------------------------------------------------------------- /clevr_generation/data/materials/Rubber.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/clevr_generation/data/materials/Rubber.blend -------------------------------------------------------------------------------- /clevr_generation/data/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/clevr_generation/data/properties.json -------------------------------------------------------------------------------- /clevr_generation/data/shapes/SmoothCone.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/clevr_generation/data/shapes/SmoothCone.blend -------------------------------------------------------------------------------- /clevr_generation/data/shapes/SmoothCube_v2.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/clevr_generation/data/shapes/SmoothCube_v2.blend -------------------------------------------------------------------------------- /clevr_generation/data/shapes/SmoothCylinder.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/clevr_generation/data/shapes/SmoothCylinder.blend -------------------------------------------------------------------------------- /clevr_generation/data/shapes/Sphere.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/clevr_generation/data/shapes/Sphere.blend -------------------------------------------------------------------------------- /clevr_generation/render_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/clevr_generation/render_images.py -------------------------------------------------------------------------------- /clevr_generation/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/clevr_generation/utils.py -------------------------------------------------------------------------------- /data_loading/clevr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/data_loading/clevr.py -------------------------------------------------------------------------------- /data_loading/pug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/data_loading/pug.py -------------------------------------------------------------------------------- /probing/clevr_multi_object_probing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/probing/clevr_multi_object_probing.py -------------------------------------------------------------------------------- /probing/clevr_probing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/probing/clevr_probing.py -------------------------------------------------------------------------------- /probing/clevr_probing_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/probing/clevr_probing_utils.py -------------------------------------------------------------------------------- /probing/probing_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/probing/probing_datasets.py -------------------------------------------------------------------------------- /probing/probing_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/probing/probing_models.py -------------------------------------------------------------------------------- /probing/pug_probing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/probing/pug_probing.py -------------------------------------------------------------------------------- /probing/pug_probing_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/probing/pug_probing_utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdariina/CLIP-not-BoW-unimodally/HEAD/requirements.txt --------------------------------------------------------------------------------