├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── chi_annotator ├── __init__.py ├── algo_factory │ ├── __init__.py │ ├── common.py │ ├── components.py │ ├── offline │ │ └── __init__.py │ ├── online │ │ ├── __init__.py │ │ ├── sklearn_classifier.py │ │ └── sklearn_cluster.py │ ├── preprocess │ │ ├── __init__.py │ │ ├── char2vec_standalone.py │ │ ├── char_tokenizer.py │ │ ├── embedding.py │ │ ├── jieba_tokenizer.py │ │ └── sentence_embed_extractor.py │ ├── registry.py │ └── utils.py ├── data │ └── files │ │ ├── annotation_data.json │ │ └── test.json ├── task_center │ ├── __init__.py │ ├── active_learner.py │ ├── cmds.py │ ├── common.py │ ├── config.py │ ├── data_loader.py │ ├── local_offline_train.py │ ├── model.py │ ├── task_center_webapi │ │ ├── apis │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── manage.py │ │ └── task_center_webapi │ │ │ ├── __init__.py │ │ │ ├── settings.py │ │ │ ├── urls.py │ │ │ └── wsgi.py │ └── test.py ├── user_instance │ └── examples │ │ ├── classify │ │ └── spam_email_classify_config.json │ │ ├── ner │ │ ├── instance_config.json │ │ ├── offline_config.json │ │ └── online_config.json │ │ ├── pos_tagger │ │ ├── config.json │ │ ├── instance_config.json │ │ ├── offline_config.json │ │ └── online_config.json │ │ └── re │ │ ├── config.json │ │ ├── instance_config.json │ │ ├── offline_config.json │ │ └── online_config.json └── webui │ └── webuiapis │ ├── apis │ ├── __init__.py │ ├── admin.py │ ├── apiresponse.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── mongomodel.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── manage.py │ ├── utils │ ├── __init__.py │ ├── config.py │ └── mongoUtil.py │ ├── web │ ├── js │ │ ├── core.js │ │ └── vue.js │ ├── styles.css │ ├── text_classification.html │ └── web_util.html │ └── webuiapis │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── config ├── __init__.py └── sys_config.json ├── docs ├── _config.yml ├── annotator_examples.md ├── apis.md ├── archi_taskcenter.md ├── archi_webui_database.md ├── faq.md ├── feature.md ├── images │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ ├── arch_taskcenter.png │ ├── chinese_annotator_arch.png │ └── pipeline_taskcenter.png ├── procedure.md ├── recruit.md └── spam_email_pipeline_example.md ├── make ├── checkenv.sh ├── chinese-annotator.cfg ├── docker-compose.yml ├── install.sh ├── mongodb │ └── Dockerfile ├── nginx │ ├── Dockerfile │ └── nginx.conf ├── server │ └── Dockerfile └── webui │ └── Dockerfile ├── requirements.txt ├── scripts ├── data_migrate.py ├── init_db.sh ├── run_tests.sh └── run_webui.sh ├── setup.py ├── tests ├── __init__.py ├── algofactory │ ├── __init__.py │ ├── test_cluster.py │ ├── test_embeddings.py │ ├── test_ner.py │ ├── test_pos_tagger.py │ ├── test_re.py │ ├── test_sklearnclassify.py │ └── test_tokenizer.py ├── data │ ├── test_config │ │ ├── sys_config.json │ │ ├── test_config.json │ │ ├── test_config_embedding.json │ │ └── test_task_config.json │ ├── test_email_classify │ │ ├── email_classify_chi.txt │ │ └── email_classify_chi_nolabel.txt │ ├── test_embedding │ │ ├── char_embed_glove.zip │ │ └── vec.txt │ └── test_news_classify │ │ ├── README.md │ │ └── news_classify_chi.txt ├── taskcenter │ ├── __init__.py │ ├── test_database.py │ ├── test_online_training.py │ └── test_trainer.py └── utils │ ├── __init__.py │ └── txt_to_json.py └── web ├── .browserslistrc ├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── .npmrc ├── README.md ├── babel.config.js ├── jsconfig.json ├── package.json ├── postcss.config.js ├── public ├── favicon.ico ├── index.html └── web_util.html ├── src ├── App.vue ├── api │ └── index.js ├── assets │ └── logo.png ├── components │ ├── ActionButton.vue │ ├── HelloWorld.vue │ ├── KeyBoardSettings.vue │ ├── MenuBar.vue │ └── Tag.vue ├── main.js ├── mock │ └── index.js ├── pages │ ├── Home.vue │ └── WorkingSpace.vue ├── router │ └── index.js ├── store │ └── index.js └── styles │ └── reset.scss └── yarn.lock /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | # Makefile for Chinese-Annotator project -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/README.md -------------------------------------------------------------------------------- /chi_annotator/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.0.1" 2 | -------------------------------------------------------------------------------- /chi_annotator/algo_factory/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/algo_factory/__init__.py -------------------------------------------------------------------------------- /chi_annotator/algo_factory/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/algo_factory/common.py -------------------------------------------------------------------------------- /chi_annotator/algo_factory/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/algo_factory/components.py -------------------------------------------------------------------------------- /chi_annotator/algo_factory/offline/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'Littlepeer' 2 | -------------------------------------------------------------------------------- /chi_annotator/algo_factory/online/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'Littlepeer' 2 | -------------------------------------------------------------------------------- /chi_annotator/algo_factory/online/sklearn_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/algo_factory/online/sklearn_classifier.py -------------------------------------------------------------------------------- /chi_annotator/algo_factory/online/sklearn_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/algo_factory/online/sklearn_cluster.py -------------------------------------------------------------------------------- /chi_annotator/algo_factory/preprocess/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/algo_factory/preprocess/__init__.py -------------------------------------------------------------------------------- /chi_annotator/algo_factory/preprocess/char2vec_standalone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/algo_factory/preprocess/char2vec_standalone.py -------------------------------------------------------------------------------- /chi_annotator/algo_factory/preprocess/char_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/algo_factory/preprocess/char_tokenizer.py -------------------------------------------------------------------------------- /chi_annotator/algo_factory/preprocess/embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/algo_factory/preprocess/embedding.py -------------------------------------------------------------------------------- /chi_annotator/algo_factory/preprocess/jieba_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/algo_factory/preprocess/jieba_tokenizer.py -------------------------------------------------------------------------------- /chi_annotator/algo_factory/preprocess/sentence_embed_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/algo_factory/preprocess/sentence_embed_extractor.py -------------------------------------------------------------------------------- /chi_annotator/algo_factory/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/algo_factory/registry.py -------------------------------------------------------------------------------- /chi_annotator/algo_factory/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/algo_factory/utils.py -------------------------------------------------------------------------------- /chi_annotator/data/files/annotation_data.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /chi_annotator/data/files/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/data/files/test.json -------------------------------------------------------------------------------- /chi_annotator/task_center/__init__.py: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env python 2 | # -*- coding: utf8 -*- 3 | __version__ = "0.0.1" 4 | -------------------------------------------------------------------------------- /chi_annotator/task_center/active_learner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/task_center/active_learner.py -------------------------------------------------------------------------------- /chi_annotator/task_center/cmds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/task_center/cmds.py -------------------------------------------------------------------------------- /chi_annotator/task_center/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/task_center/common.py -------------------------------------------------------------------------------- /chi_annotator/task_center/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/task_center/config.py -------------------------------------------------------------------------------- /chi_annotator/task_center/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/task_center/data_loader.py -------------------------------------------------------------------------------- /chi_annotator/task_center/local_offline_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/task_center/local_offline_train.py -------------------------------------------------------------------------------- /chi_annotator/task_center/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/task_center/model.py -------------------------------------------------------------------------------- /chi_annotator/task_center/task_center_webapi/apis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chi_annotator/task_center/task_center_webapi/apis/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/task_center/task_center_webapi/apis/admin.py -------------------------------------------------------------------------------- /chi_annotator/task_center/task_center_webapi/apis/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/task_center/task_center_webapi/apis/apps.py -------------------------------------------------------------------------------- /chi_annotator/task_center/task_center_webapi/apis/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chi_annotator/task_center/task_center_webapi/apis/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/task_center/task_center_webapi/apis/models.py -------------------------------------------------------------------------------- /chi_annotator/task_center/task_center_webapi/apis/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/task_center/task_center_webapi/apis/tests.py -------------------------------------------------------------------------------- /chi_annotator/task_center/task_center_webapi/apis/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/task_center/task_center_webapi/apis/urls.py -------------------------------------------------------------------------------- /chi_annotator/task_center/task_center_webapi/apis/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/task_center/task_center_webapi/apis/views.py -------------------------------------------------------------------------------- /chi_annotator/task_center/task_center_webapi/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/task_center/task_center_webapi/manage.py -------------------------------------------------------------------------------- /chi_annotator/task_center/task_center_webapi/task_center_webapi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chi_annotator/task_center/task_center_webapi/task_center_webapi/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/task_center/task_center_webapi/task_center_webapi/settings.py -------------------------------------------------------------------------------- /chi_annotator/task_center/task_center_webapi/task_center_webapi/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/task_center/task_center_webapi/task_center_webapi/urls.py -------------------------------------------------------------------------------- /chi_annotator/task_center/task_center_webapi/task_center_webapi/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/task_center/task_center_webapi/task_center_webapi/wsgi.py -------------------------------------------------------------------------------- /chi_annotator/task_center/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/task_center/test.py -------------------------------------------------------------------------------- /chi_annotator/user_instance/examples/classify/spam_email_classify_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/user_instance/examples/classify/spam_email_classify_config.json -------------------------------------------------------------------------------- /chi_annotator/user_instance/examples/ner/instance_config.json: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /chi_annotator/user_instance/examples/ner/offline_config.json: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /chi_annotator/user_instance/examples/ner/online_config.json: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /chi_annotator/user_instance/examples/pos_tagger/config.json: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /chi_annotator/user_instance/examples/pos_tagger/instance_config.json: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /chi_annotator/user_instance/examples/pos_tagger/offline_config.json: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /chi_annotator/user_instance/examples/pos_tagger/online_config.json: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /chi_annotator/user_instance/examples/re/config.json: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /chi_annotator/user_instance/examples/re/instance_config.json: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /chi_annotator/user_instance/examples/re/offline_config.json: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /chi_annotator/user_instance/examples/re/online_config.json: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /chi_annotator/webui/webuiapis/apis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chi_annotator/webui/webuiapis/apis/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/webui/webuiapis/apis/admin.py -------------------------------------------------------------------------------- /chi_annotator/webui/webuiapis/apis/apiresponse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/webui/webuiapis/apis/apiresponse.py -------------------------------------------------------------------------------- /chi_annotator/webui/webuiapis/apis/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/webui/webuiapis/apis/apps.py -------------------------------------------------------------------------------- /chi_annotator/webui/webuiapis/apis/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chi_annotator/webui/webuiapis/apis/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/webui/webuiapis/apis/models.py -------------------------------------------------------------------------------- /chi_annotator/webui/webuiapis/apis/mongomodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/webui/webuiapis/apis/mongomodel.py -------------------------------------------------------------------------------- /chi_annotator/webui/webuiapis/apis/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/webui/webuiapis/apis/serializers.py -------------------------------------------------------------------------------- /chi_annotator/webui/webuiapis/apis/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/webui/webuiapis/apis/tests.py -------------------------------------------------------------------------------- /chi_annotator/webui/webuiapis/apis/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/webui/webuiapis/apis/urls.py -------------------------------------------------------------------------------- /chi_annotator/webui/webuiapis/apis/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/webui/webuiapis/apis/views.py -------------------------------------------------------------------------------- /chi_annotator/webui/webuiapis/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/webui/webuiapis/manage.py -------------------------------------------------------------------------------- /chi_annotator/webui/webuiapis/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chi_annotator/webui/webuiapis/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/webui/webuiapis/utils/config.py -------------------------------------------------------------------------------- /chi_annotator/webui/webuiapis/utils/mongoUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/webui/webuiapis/utils/mongoUtil.py -------------------------------------------------------------------------------- /chi_annotator/webui/webuiapis/web/js/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/webui/webuiapis/web/js/core.js -------------------------------------------------------------------------------- /chi_annotator/webui/webuiapis/web/js/vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/webui/webuiapis/web/js/vue.js -------------------------------------------------------------------------------- /chi_annotator/webui/webuiapis/web/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/webui/webuiapis/web/styles.css -------------------------------------------------------------------------------- /chi_annotator/webui/webuiapis/web/text_classification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/webui/webuiapis/web/text_classification.html -------------------------------------------------------------------------------- /chi_annotator/webui/webuiapis/web/web_util.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/webui/webuiapis/web/web_util.html -------------------------------------------------------------------------------- /chi_annotator/webui/webuiapis/webuiapis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chi_annotator/webui/webuiapis/webuiapis/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/webui/webuiapis/webuiapis/settings.py -------------------------------------------------------------------------------- /chi_annotator/webui/webuiapis/webuiapis/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/webui/webuiapis/webuiapis/urls.py -------------------------------------------------------------------------------- /chi_annotator/webui/webuiapis/webuiapis/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/chi_annotator/webui/webuiapis/webuiapis/wsgi.py -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /config/sys_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/config/sys_config.json -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/annotator_examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/docs/annotator_examples.md -------------------------------------------------------------------------------- /docs/apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/docs/apis.md -------------------------------------------------------------------------------- /docs/archi_taskcenter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/docs/archi_taskcenter.md -------------------------------------------------------------------------------- /docs/archi_webui_database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/docs/archi_webui_database.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/docs/feature.md -------------------------------------------------------------------------------- /docs/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/docs/images/1.png -------------------------------------------------------------------------------- /docs/images/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/docs/images/10.png -------------------------------------------------------------------------------- /docs/images/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/docs/images/11.png -------------------------------------------------------------------------------- /docs/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/docs/images/2.png -------------------------------------------------------------------------------- /docs/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/docs/images/3.png -------------------------------------------------------------------------------- /docs/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/docs/images/4.png -------------------------------------------------------------------------------- /docs/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/docs/images/5.png -------------------------------------------------------------------------------- /docs/images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/docs/images/6.png -------------------------------------------------------------------------------- /docs/images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/docs/images/7.png -------------------------------------------------------------------------------- /docs/images/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/docs/images/8.png -------------------------------------------------------------------------------- /docs/images/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/docs/images/9.png -------------------------------------------------------------------------------- /docs/images/arch_taskcenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/docs/images/arch_taskcenter.png -------------------------------------------------------------------------------- /docs/images/chinese_annotator_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/docs/images/chinese_annotator_arch.png -------------------------------------------------------------------------------- /docs/images/pipeline_taskcenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/docs/images/pipeline_taskcenter.png -------------------------------------------------------------------------------- /docs/procedure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/docs/procedure.md -------------------------------------------------------------------------------- /docs/recruit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/docs/recruit.md -------------------------------------------------------------------------------- /docs/spam_email_pipeline_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/docs/spam_email_pipeline_example.md -------------------------------------------------------------------------------- /make/checkenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/make/checkenv.sh -------------------------------------------------------------------------------- /make/chinese-annotator.cfg: -------------------------------------------------------------------------------- 1 | # config file for chinese-annotator project -------------------------------------------------------------------------------- /make/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/make/docker-compose.yml -------------------------------------------------------------------------------- /make/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/make/install.sh -------------------------------------------------------------------------------- /make/mongodb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/make/mongodb/Dockerfile -------------------------------------------------------------------------------- /make/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/make/nginx/Dockerfile -------------------------------------------------------------------------------- /make/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/make/nginx/nginx.conf -------------------------------------------------------------------------------- /make/server/Dockerfile: -------------------------------------------------------------------------------- 1 | # supervisor 2 | FROM python:3.6.3-jessie 3 | -------------------------------------------------------------------------------- /make/webui/Dockerfile: -------------------------------------------------------------------------------- 1 | # gunicorn supervisor -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/data_migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/scripts/data_migrate.py -------------------------------------------------------------------------------- /scripts/init_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/scripts/init_db.sh -------------------------------------------------------------------------------- /scripts/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/scripts/run_tests.sh -------------------------------------------------------------------------------- /scripts/run_webui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/scripts/run_webui.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/algofactory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/algofactory/test_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/tests/algofactory/test_cluster.py -------------------------------------------------------------------------------- /tests/algofactory/test_embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/tests/algofactory/test_embeddings.py -------------------------------------------------------------------------------- /tests/algofactory/test_ner.py: -------------------------------------------------------------------------------- 1 | #test ner 2 | -------------------------------------------------------------------------------- /tests/algofactory/test_pos_tagger.py: -------------------------------------------------------------------------------- 1 | #test pos tagger 2 | -------------------------------------------------------------------------------- /tests/algofactory/test_re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/tests/algofactory/test_re.py -------------------------------------------------------------------------------- /tests/algofactory/test_sklearnclassify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/tests/algofactory/test_sklearnclassify.py -------------------------------------------------------------------------------- /tests/algofactory/test_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/tests/algofactory/test_tokenizer.py -------------------------------------------------------------------------------- /tests/data/test_config/sys_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/tests/data/test_config/sys_config.json -------------------------------------------------------------------------------- /tests/data/test_config/test_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/tests/data/test_config/test_config.json -------------------------------------------------------------------------------- /tests/data/test_config/test_config_embedding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/tests/data/test_config/test_config_embedding.json -------------------------------------------------------------------------------- /tests/data/test_config/test_task_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/tests/data/test_config/test_task_config.json -------------------------------------------------------------------------------- /tests/data/test_email_classify/email_classify_chi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/tests/data/test_email_classify/email_classify_chi.txt -------------------------------------------------------------------------------- /tests/data/test_email_classify/email_classify_chi_nolabel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/tests/data/test_email_classify/email_classify_chi_nolabel.txt -------------------------------------------------------------------------------- /tests/data/test_embedding/char_embed_glove.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/tests/data/test_embedding/char_embed_glove.zip -------------------------------------------------------------------------------- /tests/data/test_embedding/vec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/tests/data/test_embedding/vec.txt -------------------------------------------------------------------------------- /tests/data/test_news_classify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/tests/data/test_news_classify/README.md -------------------------------------------------------------------------------- /tests/data/test_news_classify/news_classify_chi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/tests/data/test_news_classify/news_classify_chi.txt -------------------------------------------------------------------------------- /tests/taskcenter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/taskcenter/test_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/tests/taskcenter/test_database.py -------------------------------------------------------------------------------- /tests/taskcenter/test_online_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/tests/taskcenter/test_online_training.py -------------------------------------------------------------------------------- /tests/taskcenter/test_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/tests/taskcenter/test_trainer.py -------------------------------------------------------------------------------- /tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils/txt_to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/tests/utils/txt_to_json.py -------------------------------------------------------------------------------- /web/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | -------------------------------------------------------------------------------- /web/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/web/.editorconfig -------------------------------------------------------------------------------- /web/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/web/.eslintrc.js -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/web/.gitignore -------------------------------------------------------------------------------- /web/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/web/.npmrc -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/web/README.md -------------------------------------------------------------------------------- /web/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/web/babel.config.js -------------------------------------------------------------------------------- /web/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/web/jsconfig.json -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/web/package.json -------------------------------------------------------------------------------- /web/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/web/postcss.config.js -------------------------------------------------------------------------------- /web/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/web/public/favicon.ico -------------------------------------------------------------------------------- /web/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/web/public/index.html -------------------------------------------------------------------------------- /web/public/web_util.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/web/public/web_util.html -------------------------------------------------------------------------------- /web/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/web/src/App.vue -------------------------------------------------------------------------------- /web/src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/web/src/api/index.js -------------------------------------------------------------------------------- /web/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/web/src/assets/logo.png -------------------------------------------------------------------------------- /web/src/components/ActionButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/web/src/components/ActionButton.vue -------------------------------------------------------------------------------- /web/src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/web/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /web/src/components/KeyBoardSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/web/src/components/KeyBoardSettings.vue -------------------------------------------------------------------------------- /web/src/components/MenuBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/web/src/components/MenuBar.vue -------------------------------------------------------------------------------- /web/src/components/Tag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/web/src/components/Tag.vue -------------------------------------------------------------------------------- /web/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/web/src/main.js -------------------------------------------------------------------------------- /web/src/mock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/web/src/mock/index.js -------------------------------------------------------------------------------- /web/src/pages/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/web/src/pages/Home.vue -------------------------------------------------------------------------------- /web/src/pages/WorkingSpace.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/web/src/pages/WorkingSpace.vue -------------------------------------------------------------------------------- /web/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/web/src/router/index.js -------------------------------------------------------------------------------- /web/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/web/src/store/index.js -------------------------------------------------------------------------------- /web/src/styles/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/web/src/styles/reset.scss -------------------------------------------------------------------------------- /web/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepwel/Chinese-Annotator/HEAD/web/yarn.lock --------------------------------------------------------------------------------