├── Manifest.in ├── README.md ├── assets └── img │ ├── jemma-cover-base.png │ ├── jemma-cover-main.png │ ├── jemma-cover-round.png │ └── jemma-cover-small.png ├── jemma ├── __init__.py ├── add_project.sh ├── contrib │ └── README.md ├── dependencies │ └── README.md ├── download │ ├── config.ini │ ├── download.py │ └── sanity_checks.py ├── graph_pb2.py ├── jemma_contrib_prep_calg.py ├── jemma_contrib_prep_meta.py ├── jemma_contrib_prep_prop.py ├── jemma_contrib_prep_repr.py ├── jemma_datasets │ ├── callgraphs │ │ └── .gitkeep │ ├── metadata │ │ └── .gitkeep │ ├── properties │ │ └── .gitkeep │ └── representations │ │ └── .gitkeep ├── jemma_helpers.py ├── jemma_task_utils.py ├── jemma_utils.py └── paper │ ├── README.md │ └── localness_experiment │ └── data │ ├── jemma_method_completion_context │ ├── JEMMA_COMP_test_MAIN.csv │ ├── JEMMA_COMP_train_MAIN.csv │ └── JEMMA_COMP_valid_MAIN.csv │ └── jemma_method_completion_standard │ ├── JEMMA_COMP_test_MAIN.csv │ ├── JEMMA_COMP_train_MAIN.csv │ └── JEMMA_COMP_valid_MAIN.csv └── setup.py /Manifest.in: -------------------------------------------------------------------------------- 1 | include jemma/data/*.csv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giganticode/jemma/HEAD/README.md -------------------------------------------------------------------------------- /assets/img/jemma-cover-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giganticode/jemma/HEAD/assets/img/jemma-cover-base.png -------------------------------------------------------------------------------- /assets/img/jemma-cover-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giganticode/jemma/HEAD/assets/img/jemma-cover-main.png -------------------------------------------------------------------------------- /assets/img/jemma-cover-round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giganticode/jemma/HEAD/assets/img/jemma-cover-round.png -------------------------------------------------------------------------------- /assets/img/jemma-cover-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giganticode/jemma/HEAD/assets/img/jemma-cover-small.png -------------------------------------------------------------------------------- /jemma/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jemma/add_project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giganticode/jemma/HEAD/jemma/add_project.sh -------------------------------------------------------------------------------- /jemma/contrib/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jemma/dependencies/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jemma/download/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giganticode/jemma/HEAD/jemma/download/config.ini -------------------------------------------------------------------------------- /jemma/download/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giganticode/jemma/HEAD/jemma/download/download.py -------------------------------------------------------------------------------- /jemma/download/sanity_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giganticode/jemma/HEAD/jemma/download/sanity_checks.py -------------------------------------------------------------------------------- /jemma/graph_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giganticode/jemma/HEAD/jemma/graph_pb2.py -------------------------------------------------------------------------------- /jemma/jemma_contrib_prep_calg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giganticode/jemma/HEAD/jemma/jemma_contrib_prep_calg.py -------------------------------------------------------------------------------- /jemma/jemma_contrib_prep_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giganticode/jemma/HEAD/jemma/jemma_contrib_prep_meta.py -------------------------------------------------------------------------------- /jemma/jemma_contrib_prep_prop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giganticode/jemma/HEAD/jemma/jemma_contrib_prep_prop.py -------------------------------------------------------------------------------- /jemma/jemma_contrib_prep_repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giganticode/jemma/HEAD/jemma/jemma_contrib_prep_repr.py -------------------------------------------------------------------------------- /jemma/jemma_datasets/callgraphs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jemma/jemma_datasets/metadata/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jemma/jemma_datasets/properties/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jemma/jemma_datasets/representations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jemma/jemma_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giganticode/jemma/HEAD/jemma/jemma_helpers.py -------------------------------------------------------------------------------- /jemma/jemma_task_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giganticode/jemma/HEAD/jemma/jemma_task_utils.py -------------------------------------------------------------------------------- /jemma/jemma_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giganticode/jemma/HEAD/jemma/jemma_utils.py -------------------------------------------------------------------------------- /jemma/paper/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jemma/paper/localness_experiment/data/jemma_method_completion_context/JEMMA_COMP_test_MAIN.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giganticode/jemma/HEAD/jemma/paper/localness_experiment/data/jemma_method_completion_context/JEMMA_COMP_test_MAIN.csv -------------------------------------------------------------------------------- /jemma/paper/localness_experiment/data/jemma_method_completion_context/JEMMA_COMP_train_MAIN.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giganticode/jemma/HEAD/jemma/paper/localness_experiment/data/jemma_method_completion_context/JEMMA_COMP_train_MAIN.csv -------------------------------------------------------------------------------- /jemma/paper/localness_experiment/data/jemma_method_completion_context/JEMMA_COMP_valid_MAIN.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giganticode/jemma/HEAD/jemma/paper/localness_experiment/data/jemma_method_completion_context/JEMMA_COMP_valid_MAIN.csv -------------------------------------------------------------------------------- /jemma/paper/localness_experiment/data/jemma_method_completion_standard/JEMMA_COMP_test_MAIN.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giganticode/jemma/HEAD/jemma/paper/localness_experiment/data/jemma_method_completion_standard/JEMMA_COMP_test_MAIN.csv -------------------------------------------------------------------------------- /jemma/paper/localness_experiment/data/jemma_method_completion_standard/JEMMA_COMP_train_MAIN.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giganticode/jemma/HEAD/jemma/paper/localness_experiment/data/jemma_method_completion_standard/JEMMA_COMP_train_MAIN.csv -------------------------------------------------------------------------------- /jemma/paper/localness_experiment/data/jemma_method_completion_standard/JEMMA_COMP_valid_MAIN.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giganticode/jemma/HEAD/jemma/paper/localness_experiment/data/jemma_method_completion_standard/JEMMA_COMP_valid_MAIN.csv -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------