├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md ├── dialobot ├── .DS_Store ├── __init__.py ├── app │ ├── .DS_Store │ ├── __init__.py │ ├── application.py │ ├── backend │ │ ├── __init__.py │ │ └── backend.py │ ├── frontend │ │ ├── __init__.py │ │ ├── frontend.py │ │ ├── pages │ │ │ ├── __init__.py │ │ │ ├── entity.py │ │ │ ├── intent.py │ │ │ ├── loading.py │ │ │ ├── para.py │ │ │ ├── qa.py │ │ │ └── response.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ └── css.py │ └── server.py └── core │ ├── .DS_Store │ ├── __init__.py │ ├── base │ ├── __init__.py │ ├── intent_base.py │ └── ner_base.py │ ├── entity │ ├── __init__.py │ └── recognizer.py │ ├── intent │ ├── __init__.py │ ├── classifier.py │ ├── pipeline.py │ └── retriever.py │ ├── paraphrase │ ├── __init__.py │ └── main.py │ └── utils │ ├── __init__.py │ ├── const.py │ └── tokenizer.py ├── requirements.txt ├── setup.py └── tests ├── __init__.py ├── entity ├── __init__.py └── test.py └── intent ├── __init__.py ├── classifier_test.py ├── pipeline_test.py └── retriever_test.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/README.md -------------------------------------------------------------------------------- /dialobot/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/dialobot/.DS_Store -------------------------------------------------------------------------------- /dialobot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/dialobot/__init__.py -------------------------------------------------------------------------------- /dialobot/app/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/dialobot/app/.DS_Store -------------------------------------------------------------------------------- /dialobot/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/dialobot/app/__init__.py -------------------------------------------------------------------------------- /dialobot/app/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/dialobot/app/application.py -------------------------------------------------------------------------------- /dialobot/app/backend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/dialobot/app/backend/__init__.py -------------------------------------------------------------------------------- /dialobot/app/backend/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/dialobot/app/backend/backend.py -------------------------------------------------------------------------------- /dialobot/app/frontend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/dialobot/app/frontend/__init__.py -------------------------------------------------------------------------------- /dialobot/app/frontend/frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/dialobot/app/frontend/frontend.py -------------------------------------------------------------------------------- /dialobot/app/frontend/pages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/dialobot/app/frontend/pages/__init__.py -------------------------------------------------------------------------------- /dialobot/app/frontend/pages/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/dialobot/app/frontend/pages/entity.py -------------------------------------------------------------------------------- /dialobot/app/frontend/pages/intent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/dialobot/app/frontend/pages/intent.py -------------------------------------------------------------------------------- /dialobot/app/frontend/pages/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/dialobot/app/frontend/pages/loading.py -------------------------------------------------------------------------------- /dialobot/app/frontend/pages/para.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/dialobot/app/frontend/pages/para.py -------------------------------------------------------------------------------- /dialobot/app/frontend/pages/qa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/dialobot/app/frontend/pages/qa.py -------------------------------------------------------------------------------- /dialobot/app/frontend/pages/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/dialobot/app/frontend/pages/response.py -------------------------------------------------------------------------------- /dialobot/app/frontend/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/dialobot/app/frontend/utils/__init__.py -------------------------------------------------------------------------------- /dialobot/app/frontend/utils/css.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/dialobot/app/frontend/utils/css.py -------------------------------------------------------------------------------- /dialobot/app/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/dialobot/app/server.py -------------------------------------------------------------------------------- /dialobot/core/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/dialobot/core/.DS_Store -------------------------------------------------------------------------------- /dialobot/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/dialobot/core/__init__.py -------------------------------------------------------------------------------- /dialobot/core/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/dialobot/core/base/__init__.py -------------------------------------------------------------------------------- /dialobot/core/base/intent_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/dialobot/core/base/intent_base.py -------------------------------------------------------------------------------- /dialobot/core/base/ner_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/dialobot/core/base/ner_base.py -------------------------------------------------------------------------------- /dialobot/core/entity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/dialobot/core/entity/__init__.py -------------------------------------------------------------------------------- /dialobot/core/entity/recognizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/dialobot/core/entity/recognizer.py -------------------------------------------------------------------------------- /dialobot/core/intent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/dialobot/core/intent/__init__.py -------------------------------------------------------------------------------- /dialobot/core/intent/classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/dialobot/core/intent/classifier.py -------------------------------------------------------------------------------- /dialobot/core/intent/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/dialobot/core/intent/pipeline.py -------------------------------------------------------------------------------- /dialobot/core/intent/retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/dialobot/core/intent/retriever.py -------------------------------------------------------------------------------- /dialobot/core/paraphrase/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dialobot/core/paraphrase/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/dialobot/core/paraphrase/main.py -------------------------------------------------------------------------------- /dialobot/core/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/dialobot/core/utils/__init__.py -------------------------------------------------------------------------------- /dialobot/core/utils/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/dialobot/core/utils/const.py -------------------------------------------------------------------------------- /dialobot/core/utils/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/dialobot/core/utils/tokenizer.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/entity/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/tests/entity/test.py -------------------------------------------------------------------------------- /tests/intent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/tests/intent/__init__.py -------------------------------------------------------------------------------- /tests/intent/classifier_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/tests/intent/classifier_test.py -------------------------------------------------------------------------------- /tests/intent/pipeline_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/tests/intent/pipeline_test.py -------------------------------------------------------------------------------- /tests/intent/retriever_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/dialobot/HEAD/tests/intent/retriever_test.py --------------------------------------------------------------------------------