├── .gitignore ├── README.md └── src ├── Demo.ipynb ├── README.md ├── count_words.sh ├── counting_words_per_concept.py ├── cr5.py ├── create_environment.sh ├── create_folder_structure.sh ├── data_class.py ├── eval_Da_En_Vi_transitive.ipynb ├── eval_example.ipynb ├── evaluator.py ├── example.py ├── experiment_run.py ├── experiment_wrapper.py ├── experiment_wrapper_Da_En_It_Vi.py ├── experiment_wrapper_Da_En_Vi_no_int.py ├── experiment_wrapper_En_It_2.py ├── generate_concept_id_concept_name_mapping.py ├── generate_training_validaiton_target_concepts.sh ├── get_baseline_embeddings.sh ├── logger.py ├── multiply_cython.pyx ├── operations_wrapper.py ├── setup.py ├── target_concepts.py ├── target_concepts_no_intersection.py ├── test_matrix_operations.py ├── training_concepts.py ├── training_concepts_no_intersection.py ├── utils.py └── validation_concepts.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epfl-dlab/Cr5/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epfl-dlab/Cr5/HEAD/README.md -------------------------------------------------------------------------------- /src/Demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epfl-dlab/Cr5/HEAD/src/Demo.ipynb -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epfl-dlab/Cr5/HEAD/src/README.md -------------------------------------------------------------------------------- /src/count_words.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epfl-dlab/Cr5/HEAD/src/count_words.sh -------------------------------------------------------------------------------- /src/counting_words_per_concept.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epfl-dlab/Cr5/HEAD/src/counting_words_per_concept.py -------------------------------------------------------------------------------- /src/cr5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epfl-dlab/Cr5/HEAD/src/cr5.py -------------------------------------------------------------------------------- /src/create_environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epfl-dlab/Cr5/HEAD/src/create_environment.sh -------------------------------------------------------------------------------- /src/create_folder_structure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epfl-dlab/Cr5/HEAD/src/create_folder_structure.sh -------------------------------------------------------------------------------- /src/data_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epfl-dlab/Cr5/HEAD/src/data_class.py -------------------------------------------------------------------------------- /src/eval_Da_En_Vi_transitive.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epfl-dlab/Cr5/HEAD/src/eval_Da_En_Vi_transitive.ipynb -------------------------------------------------------------------------------- /src/eval_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epfl-dlab/Cr5/HEAD/src/eval_example.ipynb -------------------------------------------------------------------------------- /src/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epfl-dlab/Cr5/HEAD/src/evaluator.py -------------------------------------------------------------------------------- /src/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epfl-dlab/Cr5/HEAD/src/example.py -------------------------------------------------------------------------------- /src/experiment_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epfl-dlab/Cr5/HEAD/src/experiment_run.py -------------------------------------------------------------------------------- /src/experiment_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epfl-dlab/Cr5/HEAD/src/experiment_wrapper.py -------------------------------------------------------------------------------- /src/experiment_wrapper_Da_En_It_Vi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epfl-dlab/Cr5/HEAD/src/experiment_wrapper_Da_En_It_Vi.py -------------------------------------------------------------------------------- /src/experiment_wrapper_Da_En_Vi_no_int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epfl-dlab/Cr5/HEAD/src/experiment_wrapper_Da_En_Vi_no_int.py -------------------------------------------------------------------------------- /src/experiment_wrapper_En_It_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epfl-dlab/Cr5/HEAD/src/experiment_wrapper_En_It_2.py -------------------------------------------------------------------------------- /src/generate_concept_id_concept_name_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epfl-dlab/Cr5/HEAD/src/generate_concept_id_concept_name_mapping.py -------------------------------------------------------------------------------- /src/generate_training_validaiton_target_concepts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epfl-dlab/Cr5/HEAD/src/generate_training_validaiton_target_concepts.sh -------------------------------------------------------------------------------- /src/get_baseline_embeddings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epfl-dlab/Cr5/HEAD/src/get_baseline_embeddings.sh -------------------------------------------------------------------------------- /src/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epfl-dlab/Cr5/HEAD/src/logger.py -------------------------------------------------------------------------------- /src/multiply_cython.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epfl-dlab/Cr5/HEAD/src/multiply_cython.pyx -------------------------------------------------------------------------------- /src/operations_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epfl-dlab/Cr5/HEAD/src/operations_wrapper.py -------------------------------------------------------------------------------- /src/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epfl-dlab/Cr5/HEAD/src/setup.py -------------------------------------------------------------------------------- /src/target_concepts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epfl-dlab/Cr5/HEAD/src/target_concepts.py -------------------------------------------------------------------------------- /src/target_concepts_no_intersection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epfl-dlab/Cr5/HEAD/src/target_concepts_no_intersection.py -------------------------------------------------------------------------------- /src/test_matrix_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epfl-dlab/Cr5/HEAD/src/test_matrix_operations.py -------------------------------------------------------------------------------- /src/training_concepts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epfl-dlab/Cr5/HEAD/src/training_concepts.py -------------------------------------------------------------------------------- /src/training_concepts_no_intersection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epfl-dlab/Cr5/HEAD/src/training_concepts_no_intersection.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epfl-dlab/Cr5/HEAD/src/utils.py -------------------------------------------------------------------------------- /src/validation_concepts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epfl-dlab/Cr5/HEAD/src/validation_concepts.py --------------------------------------------------------------------------------