├── .gitignore ├── LICENSE.txt ├── README.md ├── README.pdf ├── README.tex ├── active_learning_preannotation.py ├── classify_and_select.py ├── conlleval.pl ├── create_html_for_process_monitoring.py ├── data └── example_project │ ├── different_sizes_simulation_settings.py │ ├── labelled │ ├── seed_set_part_1.csv │ ├── seed_set_part_2.csv │ └── seed_set_part_3.csv │ ├── settings.py │ └── unlabelled │ ├── unlabelled.csv │ └── unlabelled.csv.original ├── default_settings.py ├── do_cross_validation.py ├── do_simulate_different_data_sizes.py ├── documentation ├── active_learning_preannotation.html ├── classify_and_select.html ├── settings.html └── vectorize_data.html ├── evaluate_against_separate_evaluation_data.py ├── process_monitoring.py ├── read_simulation_results.py ├── reset_test_data.sh ├── show_errors_from_output.py ├── simple_tokenizer.py ├── train_and_evaluate_model.py ├── transform_from_annoate_format.py ├── transform_from_brat_format.py ├── transform_to_brat_format.py └── vectorize_data.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .svn/ -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariask2/PAL-A-tool-for-Pre-annotation-and-Active-Learning/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariask2/PAL-A-tool-for-Pre-annotation-and-Active-Learning/HEAD/README.md -------------------------------------------------------------------------------- /README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariask2/PAL-A-tool-for-Pre-annotation-and-Active-Learning/HEAD/README.pdf -------------------------------------------------------------------------------- /README.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariask2/PAL-A-tool-for-Pre-annotation-and-Active-Learning/HEAD/README.tex -------------------------------------------------------------------------------- /active_learning_preannotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariask2/PAL-A-tool-for-Pre-annotation-and-Active-Learning/HEAD/active_learning_preannotation.py -------------------------------------------------------------------------------- /classify_and_select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariask2/PAL-A-tool-for-Pre-annotation-and-Active-Learning/HEAD/classify_and_select.py -------------------------------------------------------------------------------- /conlleval.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariask2/PAL-A-tool-for-Pre-annotation-and-Active-Learning/HEAD/conlleval.pl -------------------------------------------------------------------------------- /create_html_for_process_monitoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariask2/PAL-A-tool-for-Pre-annotation-and-Active-Learning/HEAD/create_html_for_process_monitoring.py -------------------------------------------------------------------------------- /data/example_project/different_sizes_simulation_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariask2/PAL-A-tool-for-Pre-annotation-and-Active-Learning/HEAD/data/example_project/different_sizes_simulation_settings.py -------------------------------------------------------------------------------- /data/example_project/labelled/seed_set_part_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariask2/PAL-A-tool-for-Pre-annotation-and-Active-Learning/HEAD/data/example_project/labelled/seed_set_part_1.csv -------------------------------------------------------------------------------- /data/example_project/labelled/seed_set_part_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariask2/PAL-A-tool-for-Pre-annotation-and-Active-Learning/HEAD/data/example_project/labelled/seed_set_part_2.csv -------------------------------------------------------------------------------- /data/example_project/labelled/seed_set_part_3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariask2/PAL-A-tool-for-Pre-annotation-and-Active-Learning/HEAD/data/example_project/labelled/seed_set_part_3.csv -------------------------------------------------------------------------------- /data/example_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariask2/PAL-A-tool-for-Pre-annotation-and-Active-Learning/HEAD/data/example_project/settings.py -------------------------------------------------------------------------------- /data/example_project/unlabelled/unlabelled.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariask2/PAL-A-tool-for-Pre-annotation-and-Active-Learning/HEAD/data/example_project/unlabelled/unlabelled.csv -------------------------------------------------------------------------------- /data/example_project/unlabelled/unlabelled.csv.original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariask2/PAL-A-tool-for-Pre-annotation-and-Active-Learning/HEAD/data/example_project/unlabelled/unlabelled.csv.original -------------------------------------------------------------------------------- /default_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariask2/PAL-A-tool-for-Pre-annotation-and-Active-Learning/HEAD/default_settings.py -------------------------------------------------------------------------------- /do_cross_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariask2/PAL-A-tool-for-Pre-annotation-and-Active-Learning/HEAD/do_cross_validation.py -------------------------------------------------------------------------------- /do_simulate_different_data_sizes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariask2/PAL-A-tool-for-Pre-annotation-and-Active-Learning/HEAD/do_simulate_different_data_sizes.py -------------------------------------------------------------------------------- /documentation/active_learning_preannotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariask2/PAL-A-tool-for-Pre-annotation-and-Active-Learning/HEAD/documentation/active_learning_preannotation.html -------------------------------------------------------------------------------- /documentation/classify_and_select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariask2/PAL-A-tool-for-Pre-annotation-and-Active-Learning/HEAD/documentation/classify_and_select.html -------------------------------------------------------------------------------- /documentation/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariask2/PAL-A-tool-for-Pre-annotation-and-Active-Learning/HEAD/documentation/settings.html -------------------------------------------------------------------------------- /documentation/vectorize_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariask2/PAL-A-tool-for-Pre-annotation-and-Active-Learning/HEAD/documentation/vectorize_data.html -------------------------------------------------------------------------------- /evaluate_against_separate_evaluation_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariask2/PAL-A-tool-for-Pre-annotation-and-Active-Learning/HEAD/evaluate_against_separate_evaluation_data.py -------------------------------------------------------------------------------- /process_monitoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariask2/PAL-A-tool-for-Pre-annotation-and-Active-Learning/HEAD/process_monitoring.py -------------------------------------------------------------------------------- /read_simulation_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariask2/PAL-A-tool-for-Pre-annotation-and-Active-Learning/HEAD/read_simulation_results.py -------------------------------------------------------------------------------- /reset_test_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariask2/PAL-A-tool-for-Pre-annotation-and-Active-Learning/HEAD/reset_test_data.sh -------------------------------------------------------------------------------- /show_errors_from_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariask2/PAL-A-tool-for-Pre-annotation-and-Active-Learning/HEAD/show_errors_from_output.py -------------------------------------------------------------------------------- /simple_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariask2/PAL-A-tool-for-Pre-annotation-and-Active-Learning/HEAD/simple_tokenizer.py -------------------------------------------------------------------------------- /train_and_evaluate_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariask2/PAL-A-tool-for-Pre-annotation-and-Active-Learning/HEAD/train_and_evaluate_model.py -------------------------------------------------------------------------------- /transform_from_annoate_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariask2/PAL-A-tool-for-Pre-annotation-and-Active-Learning/HEAD/transform_from_annoate_format.py -------------------------------------------------------------------------------- /transform_from_brat_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariask2/PAL-A-tool-for-Pre-annotation-and-Active-Learning/HEAD/transform_from_brat_format.py -------------------------------------------------------------------------------- /transform_to_brat_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariask2/PAL-A-tool-for-Pre-annotation-and-Active-Learning/HEAD/transform_to_brat_format.py -------------------------------------------------------------------------------- /vectorize_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariask2/PAL-A-tool-for-Pre-annotation-and-Active-Learning/HEAD/vectorize_data.py --------------------------------------------------------------------------------