├── .gitignore ├── LICENSE ├── README.md ├── bratiaa ├── __init__.py ├── agree.py ├── agree_cli.py ├── evaluation.py └── utils.py ├── bratsubset ├── BRAT_LICENSE.md ├── annotation.py ├── common.py ├── config.py ├── message.py ├── projectconfig.py ├── realmessage.py └── sosmessage.py ├── data └── agreement │ └── agree-2 │ ├── ann1 │ ├── esp.train-doc-29.ann │ ├── esp.train-doc-29.txt │ ├── esp.train-doc-46.ann │ └── esp.train-doc-46.txt │ ├── ann2 │ ├── esp.train-doc-29.ann │ ├── esp.train-doc-29.txt │ ├── esp.train-doc-46.ann │ └── esp.train-doc-46.txt │ └── annotation.conf ├── example-files ├── README.md ├── example-project │ ├── .stats_cache │ ├── Lisa │ │ ├── esp.train-doc-100.ann │ │ ├── esp.train-doc-100.txt │ │ ├── esp.train-doc-1400.ann │ │ ├── esp.train-doc-1400.txt │ │ ├── esp.train-doc-29.ann │ │ ├── esp.train-doc-29.txt │ │ ├── esp.train-doc-423.ann │ │ ├── esp.train-doc-423.txt │ │ ├── esp.train-doc-46.ann │ │ ├── esp.train-doc-46.txt │ │ ├── esp.train-doc-503.ann │ │ ├── esp.train-doc-503.txt │ │ ├── esp.train-doc-896.ann │ │ └── esp.train-doc-896.txt │ ├── Maria │ │ ├── .stats_cache │ │ ├── esp.train-doc-100.ann │ │ ├── esp.train-doc-100.txt │ │ ├── esp.train-doc-1400.ann │ │ ├── esp.train-doc-1400.txt │ │ ├── esp.train-doc-29.ann │ │ ├── esp.train-doc-29.txt │ │ ├── esp.train-doc-423.ann │ │ ├── esp.train-doc-423.txt │ │ ├── esp.train-doc-46.ann │ │ ├── esp.train-doc-46.txt │ │ ├── esp.train-doc-503.ann │ │ ├── esp.train-doc-503.txt │ │ ├── esp.train-doc-896.ann │ │ └── esp.train-doc-896.txt │ ├── Max │ │ ├── .stats_cache │ │ ├── esp.train-doc-100.ann │ │ ├── esp.train-doc-100.txt │ │ ├── esp.train-doc-1400.ann │ │ ├── esp.train-doc-1400.txt │ │ ├── esp.train-doc-29.ann │ │ ├── esp.train-doc-29.txt │ │ ├── esp.train-doc-423.ann │ │ ├── esp.train-doc-423.txt │ │ ├── esp.train-doc-46.ann │ │ ├── esp.train-doc-46.txt │ │ ├── esp.train-doc-503.ann │ │ ├── esp.train-doc-503.txt │ │ ├── esp.train-doc-896.ann │ │ └── esp.train-doc-896.txt │ ├── Peter │ │ ├── .stats_cache │ │ ├── esp.train-doc-100.ann │ │ ├── esp.train-doc-100.txt │ │ ├── esp.train-doc-1400.ann │ │ ├── esp.train-doc-1400.txt │ │ ├── esp.train-doc-29.ann │ │ ├── esp.train-doc-29.txt │ │ ├── esp.train-doc-423.ann │ │ ├── esp.train-doc-423.txt │ │ ├── esp.train-doc-46.ann │ │ ├── esp.train-doc-46.txt │ │ ├── esp.train-doc-503.ann │ │ ├── esp.train-doc-503.txt │ │ ├── esp.train-doc-896.ann │ │ └── esp.train-doc-896.txt │ ├── README │ ├── annotation.conf │ ├── tools.conf │ └── visual.conf ├── instance-agreement-heatmap.png ├── instance-agreement-report.md ├── token-agreement-heatmap.png └── token-agreement-report.md ├── makefile ├── requirements.txt ├── setup.py └── tests ├── bratiaa ├── test_agree.py ├── test_agree_errors.py ├── test_agree_regression.py └── test_token_overlap.py └── bratsubset └── test_project_config.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.egg-info/ 3 | __pycache__/ 4 | *~ 5 | private/ 6 | dist/ 7 | build/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/README.md -------------------------------------------------------------------------------- /bratiaa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/bratiaa/__init__.py -------------------------------------------------------------------------------- /bratiaa/agree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/bratiaa/agree.py -------------------------------------------------------------------------------- /bratiaa/agree_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/bratiaa/agree_cli.py -------------------------------------------------------------------------------- /bratiaa/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/bratiaa/evaluation.py -------------------------------------------------------------------------------- /bratiaa/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/bratiaa/utils.py -------------------------------------------------------------------------------- /bratsubset/BRAT_LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/bratsubset/BRAT_LICENSE.md -------------------------------------------------------------------------------- /bratsubset/annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/bratsubset/annotation.py -------------------------------------------------------------------------------- /bratsubset/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/bratsubset/common.py -------------------------------------------------------------------------------- /bratsubset/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/bratsubset/config.py -------------------------------------------------------------------------------- /bratsubset/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/bratsubset/message.py -------------------------------------------------------------------------------- /bratsubset/projectconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/bratsubset/projectconfig.py -------------------------------------------------------------------------------- /bratsubset/realmessage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/bratsubset/realmessage.py -------------------------------------------------------------------------------- /bratsubset/sosmessage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/bratsubset/sosmessage.py -------------------------------------------------------------------------------- /data/agreement/agree-2/ann1/esp.train-doc-29.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/data/agreement/agree-2/ann1/esp.train-doc-29.ann -------------------------------------------------------------------------------- /data/agreement/agree-2/ann1/esp.train-doc-29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/data/agreement/agree-2/ann1/esp.train-doc-29.txt -------------------------------------------------------------------------------- /data/agreement/agree-2/ann1/esp.train-doc-46.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/data/agreement/agree-2/ann1/esp.train-doc-46.ann -------------------------------------------------------------------------------- /data/agreement/agree-2/ann1/esp.train-doc-46.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/data/agreement/agree-2/ann1/esp.train-doc-46.txt -------------------------------------------------------------------------------- /data/agreement/agree-2/ann2/esp.train-doc-29.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/data/agreement/agree-2/ann2/esp.train-doc-29.ann -------------------------------------------------------------------------------- /data/agreement/agree-2/ann2/esp.train-doc-29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/data/agreement/agree-2/ann2/esp.train-doc-29.txt -------------------------------------------------------------------------------- /data/agreement/agree-2/ann2/esp.train-doc-46.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/data/agreement/agree-2/ann2/esp.train-doc-46.ann -------------------------------------------------------------------------------- /data/agreement/agree-2/ann2/esp.train-doc-46.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/data/agreement/agree-2/ann2/esp.train-doc-46.txt -------------------------------------------------------------------------------- /data/agreement/agree-2/annotation.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/data/agreement/agree-2/annotation.conf -------------------------------------------------------------------------------- /example-files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/README.md -------------------------------------------------------------------------------- /example-files/example-project/.stats_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/.stats_cache -------------------------------------------------------------------------------- /example-files/example-project/Lisa/esp.train-doc-100.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Lisa/esp.train-doc-100.ann -------------------------------------------------------------------------------- /example-files/example-project/Lisa/esp.train-doc-100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Lisa/esp.train-doc-100.txt -------------------------------------------------------------------------------- /example-files/example-project/Lisa/esp.train-doc-1400.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Lisa/esp.train-doc-1400.ann -------------------------------------------------------------------------------- /example-files/example-project/Lisa/esp.train-doc-1400.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Lisa/esp.train-doc-1400.txt -------------------------------------------------------------------------------- /example-files/example-project/Lisa/esp.train-doc-29.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Lisa/esp.train-doc-29.ann -------------------------------------------------------------------------------- /example-files/example-project/Lisa/esp.train-doc-29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Lisa/esp.train-doc-29.txt -------------------------------------------------------------------------------- /example-files/example-project/Lisa/esp.train-doc-423.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Lisa/esp.train-doc-423.ann -------------------------------------------------------------------------------- /example-files/example-project/Lisa/esp.train-doc-423.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Lisa/esp.train-doc-423.txt -------------------------------------------------------------------------------- /example-files/example-project/Lisa/esp.train-doc-46.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Lisa/esp.train-doc-46.ann -------------------------------------------------------------------------------- /example-files/example-project/Lisa/esp.train-doc-46.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Lisa/esp.train-doc-46.txt -------------------------------------------------------------------------------- /example-files/example-project/Lisa/esp.train-doc-503.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Lisa/esp.train-doc-503.ann -------------------------------------------------------------------------------- /example-files/example-project/Lisa/esp.train-doc-503.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Lisa/esp.train-doc-503.txt -------------------------------------------------------------------------------- /example-files/example-project/Lisa/esp.train-doc-896.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Lisa/esp.train-doc-896.ann -------------------------------------------------------------------------------- /example-files/example-project/Lisa/esp.train-doc-896.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Lisa/esp.train-doc-896.txt -------------------------------------------------------------------------------- /example-files/example-project/Maria/.stats_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Maria/.stats_cache -------------------------------------------------------------------------------- /example-files/example-project/Maria/esp.train-doc-100.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Maria/esp.train-doc-100.ann -------------------------------------------------------------------------------- /example-files/example-project/Maria/esp.train-doc-100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Maria/esp.train-doc-100.txt -------------------------------------------------------------------------------- /example-files/example-project/Maria/esp.train-doc-1400.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Maria/esp.train-doc-1400.ann -------------------------------------------------------------------------------- /example-files/example-project/Maria/esp.train-doc-1400.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Maria/esp.train-doc-1400.txt -------------------------------------------------------------------------------- /example-files/example-project/Maria/esp.train-doc-29.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Maria/esp.train-doc-29.ann -------------------------------------------------------------------------------- /example-files/example-project/Maria/esp.train-doc-29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Maria/esp.train-doc-29.txt -------------------------------------------------------------------------------- /example-files/example-project/Maria/esp.train-doc-423.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Maria/esp.train-doc-423.ann -------------------------------------------------------------------------------- /example-files/example-project/Maria/esp.train-doc-423.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Maria/esp.train-doc-423.txt -------------------------------------------------------------------------------- /example-files/example-project/Maria/esp.train-doc-46.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Maria/esp.train-doc-46.ann -------------------------------------------------------------------------------- /example-files/example-project/Maria/esp.train-doc-46.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Maria/esp.train-doc-46.txt -------------------------------------------------------------------------------- /example-files/example-project/Maria/esp.train-doc-503.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Maria/esp.train-doc-503.ann -------------------------------------------------------------------------------- /example-files/example-project/Maria/esp.train-doc-503.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Maria/esp.train-doc-503.txt -------------------------------------------------------------------------------- /example-files/example-project/Maria/esp.train-doc-896.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Maria/esp.train-doc-896.ann -------------------------------------------------------------------------------- /example-files/example-project/Maria/esp.train-doc-896.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Maria/esp.train-doc-896.txt -------------------------------------------------------------------------------- /example-files/example-project/Max/.stats_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Max/.stats_cache -------------------------------------------------------------------------------- /example-files/example-project/Max/esp.train-doc-100.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Max/esp.train-doc-100.ann -------------------------------------------------------------------------------- /example-files/example-project/Max/esp.train-doc-100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Max/esp.train-doc-100.txt -------------------------------------------------------------------------------- /example-files/example-project/Max/esp.train-doc-1400.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Max/esp.train-doc-1400.ann -------------------------------------------------------------------------------- /example-files/example-project/Max/esp.train-doc-1400.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Max/esp.train-doc-1400.txt -------------------------------------------------------------------------------- /example-files/example-project/Max/esp.train-doc-29.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Max/esp.train-doc-29.ann -------------------------------------------------------------------------------- /example-files/example-project/Max/esp.train-doc-29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Max/esp.train-doc-29.txt -------------------------------------------------------------------------------- /example-files/example-project/Max/esp.train-doc-423.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Max/esp.train-doc-423.ann -------------------------------------------------------------------------------- /example-files/example-project/Max/esp.train-doc-423.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Max/esp.train-doc-423.txt -------------------------------------------------------------------------------- /example-files/example-project/Max/esp.train-doc-46.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Max/esp.train-doc-46.ann -------------------------------------------------------------------------------- /example-files/example-project/Max/esp.train-doc-46.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Max/esp.train-doc-46.txt -------------------------------------------------------------------------------- /example-files/example-project/Max/esp.train-doc-503.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Max/esp.train-doc-503.ann -------------------------------------------------------------------------------- /example-files/example-project/Max/esp.train-doc-503.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Max/esp.train-doc-503.txt -------------------------------------------------------------------------------- /example-files/example-project/Max/esp.train-doc-896.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Max/esp.train-doc-896.ann -------------------------------------------------------------------------------- /example-files/example-project/Max/esp.train-doc-896.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Max/esp.train-doc-896.txt -------------------------------------------------------------------------------- /example-files/example-project/Peter/.stats_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Peter/.stats_cache -------------------------------------------------------------------------------- /example-files/example-project/Peter/esp.train-doc-100.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Peter/esp.train-doc-100.ann -------------------------------------------------------------------------------- /example-files/example-project/Peter/esp.train-doc-100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Peter/esp.train-doc-100.txt -------------------------------------------------------------------------------- /example-files/example-project/Peter/esp.train-doc-1400.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Peter/esp.train-doc-1400.ann -------------------------------------------------------------------------------- /example-files/example-project/Peter/esp.train-doc-1400.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Peter/esp.train-doc-1400.txt -------------------------------------------------------------------------------- /example-files/example-project/Peter/esp.train-doc-29.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Peter/esp.train-doc-29.ann -------------------------------------------------------------------------------- /example-files/example-project/Peter/esp.train-doc-29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Peter/esp.train-doc-29.txt -------------------------------------------------------------------------------- /example-files/example-project/Peter/esp.train-doc-423.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Peter/esp.train-doc-423.ann -------------------------------------------------------------------------------- /example-files/example-project/Peter/esp.train-doc-423.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Peter/esp.train-doc-423.txt -------------------------------------------------------------------------------- /example-files/example-project/Peter/esp.train-doc-46.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Peter/esp.train-doc-46.ann -------------------------------------------------------------------------------- /example-files/example-project/Peter/esp.train-doc-46.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Peter/esp.train-doc-46.txt -------------------------------------------------------------------------------- /example-files/example-project/Peter/esp.train-doc-503.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Peter/esp.train-doc-503.ann -------------------------------------------------------------------------------- /example-files/example-project/Peter/esp.train-doc-503.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Peter/esp.train-doc-503.txt -------------------------------------------------------------------------------- /example-files/example-project/Peter/esp.train-doc-896.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Peter/esp.train-doc-896.ann -------------------------------------------------------------------------------- /example-files/example-project/Peter/esp.train-doc-896.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/Peter/esp.train-doc-896.txt -------------------------------------------------------------------------------- /example-files/example-project/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/README -------------------------------------------------------------------------------- /example-files/example-project/annotation.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/annotation.conf -------------------------------------------------------------------------------- /example-files/example-project/tools.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/tools.conf -------------------------------------------------------------------------------- /example-files/example-project/visual.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/example-project/visual.conf -------------------------------------------------------------------------------- /example-files/instance-agreement-heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/instance-agreement-heatmap.png -------------------------------------------------------------------------------- /example-files/instance-agreement-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/instance-agreement-report.md -------------------------------------------------------------------------------- /example-files/token-agreement-heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/token-agreement-heatmap.png -------------------------------------------------------------------------------- /example-files/token-agreement-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/example-files/token-agreement-report.md -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/makefile -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/setup.py -------------------------------------------------------------------------------- /tests/bratiaa/test_agree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/tests/bratiaa/test_agree.py -------------------------------------------------------------------------------- /tests/bratiaa/test_agree_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/tests/bratiaa/test_agree_errors.py -------------------------------------------------------------------------------- /tests/bratiaa/test_agree_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/tests/bratiaa/test_agree_regression.py -------------------------------------------------------------------------------- /tests/bratiaa/test_token_overlap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/tests/bratiaa/test_token_overlap.py -------------------------------------------------------------------------------- /tests/bratsubset/test_project_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kldtz/bratiaa/HEAD/tests/bratsubset/test_project_config.py --------------------------------------------------------------------------------