├── .gitignore ├── README.md ├── data_prep ├── cleaning.py ├── detect_duplicates_and_extra_cleaning.py ├── dictionary_of_contractions.py ├── expressive_lengthening_reduction.py └── sampling-multithreaded.py ├── embedding_generation ├── embedding_generation.py ├── test_embedding.py └── train_two_step_continuous_embeddings.py ├── evaluation └── evaluate_synthetic_data_results.py ├── semantic_change_detection_methods ├── change_point_detection.py ├── global_trend_detection.py └── hamilton_semantic_change_measures.py └── synthetic_data_generation ├── create_synthetic_dataset.py ├── design_pseudowords.py └── get_freqs_and_wordnet_stats.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .pyc 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/room2glo/HEAD/README.md -------------------------------------------------------------------------------- /data_prep/cleaning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/room2glo/HEAD/data_prep/cleaning.py -------------------------------------------------------------------------------- /data_prep/detect_duplicates_and_extra_cleaning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/room2glo/HEAD/data_prep/detect_duplicates_and_extra_cleaning.py -------------------------------------------------------------------------------- /data_prep/dictionary_of_contractions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/room2glo/HEAD/data_prep/dictionary_of_contractions.py -------------------------------------------------------------------------------- /data_prep/expressive_lengthening_reduction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/room2glo/HEAD/data_prep/expressive_lengthening_reduction.py -------------------------------------------------------------------------------- /data_prep/sampling-multithreaded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/room2glo/HEAD/data_prep/sampling-multithreaded.py -------------------------------------------------------------------------------- /embedding_generation/embedding_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/room2glo/HEAD/embedding_generation/embedding_generation.py -------------------------------------------------------------------------------- /embedding_generation/test_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/room2glo/HEAD/embedding_generation/test_embedding.py -------------------------------------------------------------------------------- /embedding_generation/train_two_step_continuous_embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/room2glo/HEAD/embedding_generation/train_two_step_continuous_embeddings.py -------------------------------------------------------------------------------- /evaluation/evaluate_synthetic_data_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/room2glo/HEAD/evaluation/evaluate_synthetic_data_results.py -------------------------------------------------------------------------------- /semantic_change_detection_methods/change_point_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/room2glo/HEAD/semantic_change_detection_methods/change_point_detection.py -------------------------------------------------------------------------------- /semantic_change_detection_methods/global_trend_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/room2glo/HEAD/semantic_change_detection_methods/global_trend_detection.py -------------------------------------------------------------------------------- /semantic_change_detection_methods/hamilton_semantic_change_measures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/room2glo/HEAD/semantic_change_detection_methods/hamilton_semantic_change_measures.py -------------------------------------------------------------------------------- /synthetic_data_generation/create_synthetic_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/room2glo/HEAD/synthetic_data_generation/create_synthetic_dataset.py -------------------------------------------------------------------------------- /synthetic_data_generation/design_pseudowords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/room2glo/HEAD/synthetic_data_generation/design_pseudowords.py -------------------------------------------------------------------------------- /synthetic_data_generation/get_freqs_and_wordnet_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/room2glo/HEAD/synthetic_data_generation/get_freqs_and_wordnet_stats.py --------------------------------------------------------------------------------