├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── data ├── interim │ └── .gitkeep ├── model │ └── .gitkeep ├── processed │ └── .gitkeep ├── raw │ └── .gitkeep └── vector │ └── .gitkeep ├── images ├── annotation_workflow.png ├── backend_workflow.png └── result.png ├── requirements.txt ├── tests ├── __init__.py ├── test_annotation.py └── test_scorer.py └── yans ├── __init__.py ├── annotation ├── __init__.py ├── accounts.csv ├── annotate.py ├── annotators.py └── rule_annotator.py ├── data ├── __init__.py ├── evaluate.py ├── ner_train_ja_example.py ├── prepare.py └── train.py ├── function └── lambda_function.py ├── hello.py └── storage.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/yans-2019-annotation-hackathon/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/yans-2019-annotation-hackathon/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/yans-2019-annotation-hackathon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/yans-2019-annotation-hackathon/HEAD/README.md -------------------------------------------------------------------------------- /data/interim/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/model/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/processed/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/raw/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/vector/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/annotation_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/yans-2019-annotation-hackathon/HEAD/images/annotation_workflow.png -------------------------------------------------------------------------------- /images/backend_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/yans-2019-annotation-hackathon/HEAD/images/backend_workflow.png -------------------------------------------------------------------------------- /images/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/yans-2019-annotation-hackathon/HEAD/images/result.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/yans-2019-annotation-hackathon/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/yans-2019-annotation-hackathon/HEAD/tests/test_annotation.py -------------------------------------------------------------------------------- /tests/test_scorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/yans-2019-annotation-hackathon/HEAD/tests/test_scorer.py -------------------------------------------------------------------------------- /yans/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yans/annotation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yans/annotation/accounts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/yans-2019-annotation-hackathon/HEAD/yans/annotation/accounts.csv -------------------------------------------------------------------------------- /yans/annotation/annotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/yans-2019-annotation-hackathon/HEAD/yans/annotation/annotate.py -------------------------------------------------------------------------------- /yans/annotation/annotators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/yans-2019-annotation-hackathon/HEAD/yans/annotation/annotators.py -------------------------------------------------------------------------------- /yans/annotation/rule_annotator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/yans-2019-annotation-hackathon/HEAD/yans/annotation/rule_annotator.py -------------------------------------------------------------------------------- /yans/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yans/data/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/yans-2019-annotation-hackathon/HEAD/yans/data/evaluate.py -------------------------------------------------------------------------------- /yans/data/ner_train_ja_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/yans-2019-annotation-hackathon/HEAD/yans/data/ner_train_ja_example.py -------------------------------------------------------------------------------- /yans/data/prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/yans-2019-annotation-hackathon/HEAD/yans/data/prepare.py -------------------------------------------------------------------------------- /yans/data/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/yans-2019-annotation-hackathon/HEAD/yans/data/train.py -------------------------------------------------------------------------------- /yans/function/lambda_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/yans-2019-annotation-hackathon/HEAD/yans/function/lambda_function.py -------------------------------------------------------------------------------- /yans/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/yans-2019-annotation-hackathon/HEAD/yans/hello.py -------------------------------------------------------------------------------- /yans/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/yans-2019-annotation-hackathon/HEAD/yans/storage.py --------------------------------------------------------------------------------