├── .gitignore ├── Dockerfile ├── README.md ├── data ├── call2graph │ └── rules.md ├── entity │ ├── example │ │ ├── bar.md │ │ ├── hotel.md │ │ └── other.md │ └── yml │ │ ├── animal.yml │ │ └── customize.yml ├── jieba_userdict │ ├── hotel.dict │ ├── net_bar.dict │ └── userdict.txt ├── n2g │ ├── name.dat │ └── name_dev.dat ├── rasa │ └── movie.json └── relation_extract │ ├── relation_conf.txt │ ├── relation_reg.txt │ └── template.txt ├── demo.md ├── litemind ├── __init__.py ├── __pycache__ │ └── __init__.cpython-36.pyc ├── att_link │ └── attribute_link.py ├── call2graph │ ├── __init__.py │ ├── parse │ │ ├── __init__.py │ │ └── c2g.py │ ├── rule │ │ └── __init__.py │ └── utils │ │ └── __init__.py ├── coref │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ └── stg.cpython-36.pyc │ └── stg.py ├── nlu │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-36.pyc │ ├── classifiers │ │ └── __init__.py │ ├── cli │ │ ├── __init__.py │ │ └── server.py │ ├── data_router.py │ ├── emulators │ │ ├── __init__.py │ │ ├── call.py │ │ ├── coref.py │ │ ├── entity.py │ │ ├── link.py │ │ ├── lite.py │ │ └── relation.py │ ├── extractors │ │ ├── __init__.py │ │ ├── customized_entity_extractor.py │ │ └── cws_entity_extractor.py │ ├── featurizers │ │ └── __init__.py │ ├── model.py │ ├── project.py │ ├── tokenizers │ │ └── __init__.py │ ├── utils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ └── ltp.cpython-36.pyc │ │ ├── coref.py │ │ ├── ltp.py │ │ └── n2g │ │ │ ├── __init__.py │ │ │ ├── easy_n2g.py │ │ │ └── torch_n2g.py │ └── via │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ └── n2g.cpython-36.pyc │ │ └── n2g.py └── relation_extract │ ├── __init__.py │ ├── language.py │ └── relation.py ├── rasa ├── __init__.py ├── __main__.py ├── cli │ ├── __init__.py │ ├── data.py │ ├── default_arguments.py │ ├── initial_project │ │ ├── __init__.py │ │ ├── actions.py │ │ ├── config.yml │ │ ├── credentials.yml │ │ ├── data │ │ │ ├── nlu.md │ │ │ └── stories.md │ │ ├── domain.yml │ │ └── endpoints.yml │ ├── interactive.py │ ├── run.py │ ├── scaffold.py │ ├── shell.py │ ├── show.py │ ├── test.py │ ├── train.py │ ├── up.py │ └── utils.py ├── constants.py ├── core │ ├── __init__.py │ ├── actions │ │ ├── __init__.py │ │ └── action.py │ ├── agent.py │ ├── broker.py │ ├── channels │ │ ├── __init__.py │ │ ├── botframework.py │ │ ├── callback.py │ │ ├── channel.py │ │ ├── console.py │ │ ├── facebook.py │ │ ├── mattermost.py │ │ ├── rasa_chat.py │ │ ├── rocketchat.py │ │ ├── slack.py │ │ ├── socketio.py │ │ ├── telegram.py │ │ ├── twilio.py │ │ └── webexteams.py │ ├── cli │ │ ├── __init__.py │ │ ├── arguments.py │ │ ├── run.py │ │ ├── test.py │ │ ├── train.py │ │ └── visualization.py │ ├── config.py │ ├── constants.py │ ├── conversation.py │ ├── default_config.yml │ ├── dispatcher.py │ ├── domain.py │ ├── evaluate.py │ ├── events │ │ └── __init__.py │ ├── exceptions.py │ ├── featurizers.py │ ├── interpreter.py │ ├── jobs.py │ ├── nlg │ │ ├── __init__.py │ │ ├── callback.py │ │ ├── generator.py │ │ └── template.py │ ├── policies │ │ ├── __init__.py │ │ ├── embedding_policy.py │ │ ├── ensemble.py │ │ ├── fallback.py │ │ ├── form_policy.py │ │ ├── keras_policy.py │ │ ├── mapping_policy.py │ │ ├── memoization.py │ │ ├── policy.py │ │ ├── sklearn_policy.py │ │ ├── tf_utils.py │ │ └── two_stage_fallback.py │ ├── processor.py │ ├── registry.py │ ├── restore.py │ ├── run.py │ ├── schemas │ │ └── domain.yml │ ├── server.py │ ├── slots.py │ ├── test.py │ ├── tracker_store.py │ ├── trackers.py │ ├── train.py │ ├── training │ │ ├── __init__.py │ │ ├── data.py │ │ ├── dsl.py │ │ ├── generator.py │ │ ├── interactive.py │ │ ├── structures.py │ │ ├── visualization.html │ │ └── visualization.py │ ├── utils.py │ └── visualize.py ├── data.py ├── jupyter.py ├── model.py ├── nlu │ ├── __init__.py │ ├── classifiers │ │ ├── __init__.py │ │ ├── embedding_intent_classifier.py │ │ ├── keyword_intent_classifier.py │ │ ├── mitie_intent_classifier.py │ │ └── sklearn_intent_classifier.py │ ├── cli │ │ ├── __init__.py │ │ └── server.py │ ├── components.py │ ├── config.py │ ├── convert.py │ ├── data_router.py │ ├── emulators │ │ ├── __init__.py │ │ ├── dialogflow.py │ │ ├── luis.py │ │ └── wit.py │ ├── evaluate.py │ ├── extractors │ │ ├── __init__.py │ │ ├── crf_entity_extractor.py │ │ ├── duckling_http_extractor.py │ │ ├── entity_synonyms.py │ │ ├── mitie_entity_extractor.py │ │ └── spacy_entity_extractor.py │ ├── featurizers │ │ ├── __init__.py │ │ ├── count_vectors_featurizer.py │ │ ├── mitie_featurizer.py │ │ ├── ngram_featurizer.py │ │ ├── regex_featurizer.py │ │ └── spacy_featurizer.py │ ├── model.py │ ├── persistor.py │ ├── project.py │ ├── registry.py │ ├── run.py │ ├── schemas │ │ └── nlu_model.yml │ ├── server.py │ ├── test.py │ ├── tokenizers │ │ ├── __init__.py │ │ ├── jieba_tokenizer.py │ │ ├── mitie_tokenizer.py │ │ ├── spacy_tokenizer.py │ │ └── whitespace_tokenizer.py │ ├── train.py │ ├── training_data │ │ ├── __init__.py │ │ ├── formats │ │ │ ├── __init__.py │ │ │ ├── dialogflow.py │ │ │ ├── luis.py │ │ │ ├── markdown.py │ │ │ ├── rasa.py │ │ │ ├── readerwriter.py │ │ │ └── wit.py │ │ ├── loading.py │ │ ├── message.py │ │ ├── training_data.py │ │ └── util.py │ └── utils │ │ ├── __init__.py │ │ ├── mitie_utils.py │ │ └── spacy_utils.py ├── run.py ├── test.py ├── train.py ├── utils.py └── version.py ├── requirements.txt ├── sample_configs ├── config_call_graph.yml ├── config_coref.yml ├── config_coref_online.yml ├── config_easy_n2g.yml ├── config_entity.yml ├── config_entity_online.yml ├── config_jieba_mitie_sklearn.yml ├── config_link.yml ├── config_link_online.yml ├── config_ltp.yml ├── config_n2g.yml ├── config_relation.yml └── config_relation_online.yml ├── server.py ├── tests ├── __init__.py ├── call2graph │ ├── __init__.py │ ├── api_test.py │ └── unit_test.py ├── coref │ ├── __init__.py │ └── coref_test.py └── data │ └── call2graph │ ├── 13035885069(话单数据).xls │ ├── 13035885069.xls │ ├── 13567488934标准的移动通话详单(1).xlsx │ ├── 13567488934标准的移动通话详单.xlsx │ ├── 18435109165.xls │ ├── 2011年10月电信18910744589通话详单(1).xls │ ├── 2011年10月电信18910744589通话详单.xls │ ├── 2018年6月份联通话单(1).xlsx │ ├── 2018年6月份联通话单(3).xlsx │ ├── 2018年6月份联通话单.xlsx │ ├── 2018年9月份话单(1).xls │ ├── demo.xls │ ├── demo1.xls │ ├── 个人话单.xls │ ├── 本机与对方号码都有.xlsx │ ├── 本机与对方号码都有1.xlsx │ ├── 本机与对方号码都有2.xlsx │ ├── 本机与对方都有的移动标准话单 - 副本.xlsx │ ├── 本机与对方都有的移动标准话单(2).xlsx │ ├── 本机与对方都有的移动标准话单(电话号码列都是文本).xlsx │ ├── 本机与对方都有的移动标准话单.xlsx │ └── 话单数据.xlsx ├── train.py └── z_run.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/README.md -------------------------------------------------------------------------------- /data/call2graph/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/data/call2graph/rules.md -------------------------------------------------------------------------------- /data/entity/example/bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/data/entity/example/bar.md -------------------------------------------------------------------------------- /data/entity/example/hotel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/data/entity/example/hotel.md -------------------------------------------------------------------------------- /data/entity/example/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/data/entity/example/other.md -------------------------------------------------------------------------------- /data/entity/yml/animal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/data/entity/yml/animal.yml -------------------------------------------------------------------------------- /data/entity/yml/customize.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/data/entity/yml/customize.yml -------------------------------------------------------------------------------- /data/jieba_userdict/hotel.dict: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/jieba_userdict/net_bar.dict: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/jieba_userdict/userdict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/data/jieba_userdict/userdict.txt -------------------------------------------------------------------------------- /data/n2g/name.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/data/n2g/name.dat -------------------------------------------------------------------------------- /data/n2g/name_dev.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/data/n2g/name_dev.dat -------------------------------------------------------------------------------- /data/rasa/movie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/data/rasa/movie.json -------------------------------------------------------------------------------- /data/relation_extract/relation_conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/data/relation_extract/relation_conf.txt -------------------------------------------------------------------------------- /data/relation_extract/relation_reg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/data/relation_extract/relation_reg.txt -------------------------------------------------------------------------------- /data/relation_extract/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/data/relation_extract/template.txt -------------------------------------------------------------------------------- /demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/demo.md -------------------------------------------------------------------------------- /litemind/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/__init__.py -------------------------------------------------------------------------------- /litemind/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /litemind/att_link/attribute_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/att_link/attribute_link.py -------------------------------------------------------------------------------- /litemind/call2graph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/call2graph/__init__.py -------------------------------------------------------------------------------- /litemind/call2graph/parse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/call2graph/parse/__init__.py -------------------------------------------------------------------------------- /litemind/call2graph/parse/c2g.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/call2graph/parse/c2g.py -------------------------------------------------------------------------------- /litemind/call2graph/rule/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/call2graph/rule/__init__.py -------------------------------------------------------------------------------- /litemind/call2graph/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/call2graph/utils/__init__.py -------------------------------------------------------------------------------- /litemind/coref/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/coref/__init__.py -------------------------------------------------------------------------------- /litemind/coref/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/coref/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /litemind/coref/__pycache__/stg.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/coref/__pycache__/stg.cpython-36.pyc -------------------------------------------------------------------------------- /litemind/coref/stg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/coref/stg.py -------------------------------------------------------------------------------- /litemind/nlu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/nlu/__init__.py -------------------------------------------------------------------------------- /litemind/nlu/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/nlu/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /litemind/nlu/classifiers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/nlu/classifiers/__init__.py -------------------------------------------------------------------------------- /litemind/nlu/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/nlu/cli/__init__.py -------------------------------------------------------------------------------- /litemind/nlu/cli/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/nlu/cli/server.py -------------------------------------------------------------------------------- /litemind/nlu/data_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/nlu/data_router.py -------------------------------------------------------------------------------- /litemind/nlu/emulators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/nlu/emulators/__init__.py -------------------------------------------------------------------------------- /litemind/nlu/emulators/call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/nlu/emulators/call.py -------------------------------------------------------------------------------- /litemind/nlu/emulators/coref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/nlu/emulators/coref.py -------------------------------------------------------------------------------- /litemind/nlu/emulators/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/nlu/emulators/entity.py -------------------------------------------------------------------------------- /litemind/nlu/emulators/link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/nlu/emulators/link.py -------------------------------------------------------------------------------- /litemind/nlu/emulators/lite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/nlu/emulators/lite.py -------------------------------------------------------------------------------- /litemind/nlu/emulators/relation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/nlu/emulators/relation.py -------------------------------------------------------------------------------- /litemind/nlu/extractors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/nlu/extractors/__init__.py -------------------------------------------------------------------------------- /litemind/nlu/extractors/customized_entity_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/nlu/extractors/customized_entity_extractor.py -------------------------------------------------------------------------------- /litemind/nlu/extractors/cws_entity_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/nlu/extractors/cws_entity_extractor.py -------------------------------------------------------------------------------- /litemind/nlu/featurizers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/nlu/featurizers/__init__.py -------------------------------------------------------------------------------- /litemind/nlu/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/nlu/model.py -------------------------------------------------------------------------------- /litemind/nlu/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/nlu/project.py -------------------------------------------------------------------------------- /litemind/nlu/tokenizers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/nlu/tokenizers/__init__.py -------------------------------------------------------------------------------- /litemind/nlu/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/nlu/utils/__init__.py -------------------------------------------------------------------------------- /litemind/nlu/utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/nlu/utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /litemind/nlu/utils/__pycache__/ltp.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/nlu/utils/__pycache__/ltp.cpython-36.pyc -------------------------------------------------------------------------------- /litemind/nlu/utils/coref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/nlu/utils/coref.py -------------------------------------------------------------------------------- /litemind/nlu/utils/ltp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/nlu/utils/ltp.py -------------------------------------------------------------------------------- /litemind/nlu/utils/n2g/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/nlu/utils/n2g/__init__.py -------------------------------------------------------------------------------- /litemind/nlu/utils/n2g/easy_n2g.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/nlu/utils/n2g/easy_n2g.py -------------------------------------------------------------------------------- /litemind/nlu/utils/n2g/torch_n2g.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/nlu/utils/n2g/torch_n2g.py -------------------------------------------------------------------------------- /litemind/nlu/via/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/nlu/via/__init__.py -------------------------------------------------------------------------------- /litemind/nlu/via/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/nlu/via/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /litemind/nlu/via/__pycache__/n2g.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/nlu/via/__pycache__/n2g.cpython-36.pyc -------------------------------------------------------------------------------- /litemind/nlu/via/n2g.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/nlu/via/n2g.py -------------------------------------------------------------------------------- /litemind/relation_extract/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/relation_extract/__init__.py -------------------------------------------------------------------------------- /litemind/relation_extract/language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/relation_extract/language.py -------------------------------------------------------------------------------- /litemind/relation_extract/relation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/litemind/relation_extract/relation.py -------------------------------------------------------------------------------- /rasa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/__init__.py -------------------------------------------------------------------------------- /rasa/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/__main__.py -------------------------------------------------------------------------------- /rasa/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rasa/cli/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/cli/data.py -------------------------------------------------------------------------------- /rasa/cli/default_arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/cli/default_arguments.py -------------------------------------------------------------------------------- /rasa/cli/initial_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rasa/cli/initial_project/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/cli/initial_project/actions.py -------------------------------------------------------------------------------- /rasa/cli/initial_project/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/cli/initial_project/config.yml -------------------------------------------------------------------------------- /rasa/cli/initial_project/credentials.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/cli/initial_project/credentials.yml -------------------------------------------------------------------------------- /rasa/cli/initial_project/data/nlu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/cli/initial_project/data/nlu.md -------------------------------------------------------------------------------- /rasa/cli/initial_project/data/stories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/cli/initial_project/data/stories.md -------------------------------------------------------------------------------- /rasa/cli/initial_project/domain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/cli/initial_project/domain.yml -------------------------------------------------------------------------------- /rasa/cli/initial_project/endpoints.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/cli/initial_project/endpoints.yml -------------------------------------------------------------------------------- /rasa/cli/interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/cli/interactive.py -------------------------------------------------------------------------------- /rasa/cli/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/cli/run.py -------------------------------------------------------------------------------- /rasa/cli/scaffold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/cli/scaffold.py -------------------------------------------------------------------------------- /rasa/cli/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/cli/shell.py -------------------------------------------------------------------------------- /rasa/cli/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/cli/show.py -------------------------------------------------------------------------------- /rasa/cli/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/cli/test.py -------------------------------------------------------------------------------- /rasa/cli/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/cli/train.py -------------------------------------------------------------------------------- /rasa/cli/up.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/cli/up.py -------------------------------------------------------------------------------- /rasa/cli/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/cli/utils.py -------------------------------------------------------------------------------- /rasa/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/constants.py -------------------------------------------------------------------------------- /rasa/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/__init__.py -------------------------------------------------------------------------------- /rasa/core/actions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/actions/__init__.py -------------------------------------------------------------------------------- /rasa/core/actions/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/actions/action.py -------------------------------------------------------------------------------- /rasa/core/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/agent.py -------------------------------------------------------------------------------- /rasa/core/broker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/broker.py -------------------------------------------------------------------------------- /rasa/core/channels/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/channels/__init__.py -------------------------------------------------------------------------------- /rasa/core/channels/botframework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/channels/botframework.py -------------------------------------------------------------------------------- /rasa/core/channels/callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/channels/callback.py -------------------------------------------------------------------------------- /rasa/core/channels/channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/channels/channel.py -------------------------------------------------------------------------------- /rasa/core/channels/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/channels/console.py -------------------------------------------------------------------------------- /rasa/core/channels/facebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/channels/facebook.py -------------------------------------------------------------------------------- /rasa/core/channels/mattermost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/channels/mattermost.py -------------------------------------------------------------------------------- /rasa/core/channels/rasa_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/channels/rasa_chat.py -------------------------------------------------------------------------------- /rasa/core/channels/rocketchat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/channels/rocketchat.py -------------------------------------------------------------------------------- /rasa/core/channels/slack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/channels/slack.py -------------------------------------------------------------------------------- /rasa/core/channels/socketio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/channels/socketio.py -------------------------------------------------------------------------------- /rasa/core/channels/telegram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/channels/telegram.py -------------------------------------------------------------------------------- /rasa/core/channels/twilio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/channels/twilio.py -------------------------------------------------------------------------------- /rasa/core/channels/webexteams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/channels/webexteams.py -------------------------------------------------------------------------------- /rasa/core/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/cli/__init__.py -------------------------------------------------------------------------------- /rasa/core/cli/arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/cli/arguments.py -------------------------------------------------------------------------------- /rasa/core/cli/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/cli/run.py -------------------------------------------------------------------------------- /rasa/core/cli/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/cli/test.py -------------------------------------------------------------------------------- /rasa/core/cli/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/cli/train.py -------------------------------------------------------------------------------- /rasa/core/cli/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/cli/visualization.py -------------------------------------------------------------------------------- /rasa/core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/config.py -------------------------------------------------------------------------------- /rasa/core/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/constants.py -------------------------------------------------------------------------------- /rasa/core/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/conversation.py -------------------------------------------------------------------------------- /rasa/core/default_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/default_config.yml -------------------------------------------------------------------------------- /rasa/core/dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/dispatcher.py -------------------------------------------------------------------------------- /rasa/core/domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/domain.py -------------------------------------------------------------------------------- /rasa/core/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/evaluate.py -------------------------------------------------------------------------------- /rasa/core/events/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/events/__init__.py -------------------------------------------------------------------------------- /rasa/core/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/exceptions.py -------------------------------------------------------------------------------- /rasa/core/featurizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/featurizers.py -------------------------------------------------------------------------------- /rasa/core/interpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/interpreter.py -------------------------------------------------------------------------------- /rasa/core/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/jobs.py -------------------------------------------------------------------------------- /rasa/core/nlg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/nlg/__init__.py -------------------------------------------------------------------------------- /rasa/core/nlg/callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/nlg/callback.py -------------------------------------------------------------------------------- /rasa/core/nlg/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/nlg/generator.py -------------------------------------------------------------------------------- /rasa/core/nlg/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/nlg/template.py -------------------------------------------------------------------------------- /rasa/core/policies/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/policies/__init__.py -------------------------------------------------------------------------------- /rasa/core/policies/embedding_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/policies/embedding_policy.py -------------------------------------------------------------------------------- /rasa/core/policies/ensemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/policies/ensemble.py -------------------------------------------------------------------------------- /rasa/core/policies/fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/policies/fallback.py -------------------------------------------------------------------------------- /rasa/core/policies/form_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/policies/form_policy.py -------------------------------------------------------------------------------- /rasa/core/policies/keras_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/policies/keras_policy.py -------------------------------------------------------------------------------- /rasa/core/policies/mapping_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/policies/mapping_policy.py -------------------------------------------------------------------------------- /rasa/core/policies/memoization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/policies/memoization.py -------------------------------------------------------------------------------- /rasa/core/policies/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/policies/policy.py -------------------------------------------------------------------------------- /rasa/core/policies/sklearn_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/policies/sklearn_policy.py -------------------------------------------------------------------------------- /rasa/core/policies/tf_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/policies/tf_utils.py -------------------------------------------------------------------------------- /rasa/core/policies/two_stage_fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/policies/two_stage_fallback.py -------------------------------------------------------------------------------- /rasa/core/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/processor.py -------------------------------------------------------------------------------- /rasa/core/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/registry.py -------------------------------------------------------------------------------- /rasa/core/restore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/restore.py -------------------------------------------------------------------------------- /rasa/core/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/run.py -------------------------------------------------------------------------------- /rasa/core/schemas/domain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/schemas/domain.yml -------------------------------------------------------------------------------- /rasa/core/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/server.py -------------------------------------------------------------------------------- /rasa/core/slots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/slots.py -------------------------------------------------------------------------------- /rasa/core/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/test.py -------------------------------------------------------------------------------- /rasa/core/tracker_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/tracker_store.py -------------------------------------------------------------------------------- /rasa/core/trackers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/trackers.py -------------------------------------------------------------------------------- /rasa/core/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/train.py -------------------------------------------------------------------------------- /rasa/core/training/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/training/__init__.py -------------------------------------------------------------------------------- /rasa/core/training/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/training/data.py -------------------------------------------------------------------------------- /rasa/core/training/dsl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/training/dsl.py -------------------------------------------------------------------------------- /rasa/core/training/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/training/generator.py -------------------------------------------------------------------------------- /rasa/core/training/interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/training/interactive.py -------------------------------------------------------------------------------- /rasa/core/training/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/training/structures.py -------------------------------------------------------------------------------- /rasa/core/training/visualization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/training/visualization.html -------------------------------------------------------------------------------- /rasa/core/training/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/training/visualization.py -------------------------------------------------------------------------------- /rasa/core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/utils.py -------------------------------------------------------------------------------- /rasa/core/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/core/visualize.py -------------------------------------------------------------------------------- /rasa/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/data.py -------------------------------------------------------------------------------- /rasa/jupyter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/jupyter.py -------------------------------------------------------------------------------- /rasa/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/model.py -------------------------------------------------------------------------------- /rasa/nlu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/__init__.py -------------------------------------------------------------------------------- /rasa/nlu/classifiers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/classifiers/__init__.py -------------------------------------------------------------------------------- /rasa/nlu/classifiers/embedding_intent_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/classifiers/embedding_intent_classifier.py -------------------------------------------------------------------------------- /rasa/nlu/classifiers/keyword_intent_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/classifiers/keyword_intent_classifier.py -------------------------------------------------------------------------------- /rasa/nlu/classifiers/mitie_intent_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/classifiers/mitie_intent_classifier.py -------------------------------------------------------------------------------- /rasa/nlu/classifiers/sklearn_intent_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/classifiers/sklearn_intent_classifier.py -------------------------------------------------------------------------------- /rasa/nlu/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rasa/nlu/cli/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/cli/server.py -------------------------------------------------------------------------------- /rasa/nlu/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/components.py -------------------------------------------------------------------------------- /rasa/nlu/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/config.py -------------------------------------------------------------------------------- /rasa/nlu/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/convert.py -------------------------------------------------------------------------------- /rasa/nlu/data_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/data_router.py -------------------------------------------------------------------------------- /rasa/nlu/emulators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/emulators/__init__.py -------------------------------------------------------------------------------- /rasa/nlu/emulators/dialogflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/emulators/dialogflow.py -------------------------------------------------------------------------------- /rasa/nlu/emulators/luis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/emulators/luis.py -------------------------------------------------------------------------------- /rasa/nlu/emulators/wit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/emulators/wit.py -------------------------------------------------------------------------------- /rasa/nlu/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/evaluate.py -------------------------------------------------------------------------------- /rasa/nlu/extractors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/extractors/__init__.py -------------------------------------------------------------------------------- /rasa/nlu/extractors/crf_entity_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/extractors/crf_entity_extractor.py -------------------------------------------------------------------------------- /rasa/nlu/extractors/duckling_http_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/extractors/duckling_http_extractor.py -------------------------------------------------------------------------------- /rasa/nlu/extractors/entity_synonyms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/extractors/entity_synonyms.py -------------------------------------------------------------------------------- /rasa/nlu/extractors/mitie_entity_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/extractors/mitie_entity_extractor.py -------------------------------------------------------------------------------- /rasa/nlu/extractors/spacy_entity_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/extractors/spacy_entity_extractor.py -------------------------------------------------------------------------------- /rasa/nlu/featurizers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/featurizers/__init__.py -------------------------------------------------------------------------------- /rasa/nlu/featurizers/count_vectors_featurizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/featurizers/count_vectors_featurizer.py -------------------------------------------------------------------------------- /rasa/nlu/featurizers/mitie_featurizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/featurizers/mitie_featurizer.py -------------------------------------------------------------------------------- /rasa/nlu/featurizers/ngram_featurizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/featurizers/ngram_featurizer.py -------------------------------------------------------------------------------- /rasa/nlu/featurizers/regex_featurizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/featurizers/regex_featurizer.py -------------------------------------------------------------------------------- /rasa/nlu/featurizers/spacy_featurizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/featurizers/spacy_featurizer.py -------------------------------------------------------------------------------- /rasa/nlu/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/model.py -------------------------------------------------------------------------------- /rasa/nlu/persistor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/persistor.py -------------------------------------------------------------------------------- /rasa/nlu/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/project.py -------------------------------------------------------------------------------- /rasa/nlu/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/registry.py -------------------------------------------------------------------------------- /rasa/nlu/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/run.py -------------------------------------------------------------------------------- /rasa/nlu/schemas/nlu_model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/schemas/nlu_model.yml -------------------------------------------------------------------------------- /rasa/nlu/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/server.py -------------------------------------------------------------------------------- /rasa/nlu/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/test.py -------------------------------------------------------------------------------- /rasa/nlu/tokenizers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/tokenizers/__init__.py -------------------------------------------------------------------------------- /rasa/nlu/tokenizers/jieba_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/tokenizers/jieba_tokenizer.py -------------------------------------------------------------------------------- /rasa/nlu/tokenizers/mitie_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/tokenizers/mitie_tokenizer.py -------------------------------------------------------------------------------- /rasa/nlu/tokenizers/spacy_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/tokenizers/spacy_tokenizer.py -------------------------------------------------------------------------------- /rasa/nlu/tokenizers/whitespace_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/tokenizers/whitespace_tokenizer.py -------------------------------------------------------------------------------- /rasa/nlu/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/train.py -------------------------------------------------------------------------------- /rasa/nlu/training_data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/training_data/__init__.py -------------------------------------------------------------------------------- /rasa/nlu/training_data/formats/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/training_data/formats/__init__.py -------------------------------------------------------------------------------- /rasa/nlu/training_data/formats/dialogflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/training_data/formats/dialogflow.py -------------------------------------------------------------------------------- /rasa/nlu/training_data/formats/luis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/training_data/formats/luis.py -------------------------------------------------------------------------------- /rasa/nlu/training_data/formats/markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/training_data/formats/markdown.py -------------------------------------------------------------------------------- /rasa/nlu/training_data/formats/rasa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/training_data/formats/rasa.py -------------------------------------------------------------------------------- /rasa/nlu/training_data/formats/readerwriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/training_data/formats/readerwriter.py -------------------------------------------------------------------------------- /rasa/nlu/training_data/formats/wit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/training_data/formats/wit.py -------------------------------------------------------------------------------- /rasa/nlu/training_data/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/training_data/loading.py -------------------------------------------------------------------------------- /rasa/nlu/training_data/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/training_data/message.py -------------------------------------------------------------------------------- /rasa/nlu/training_data/training_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/training_data/training_data.py -------------------------------------------------------------------------------- /rasa/nlu/training_data/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/training_data/util.py -------------------------------------------------------------------------------- /rasa/nlu/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/utils/__init__.py -------------------------------------------------------------------------------- /rasa/nlu/utils/mitie_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/utils/mitie_utils.py -------------------------------------------------------------------------------- /rasa/nlu/utils/spacy_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/nlu/utils/spacy_utils.py -------------------------------------------------------------------------------- /rasa/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/run.py -------------------------------------------------------------------------------- /rasa/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/test.py -------------------------------------------------------------------------------- /rasa/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/train.py -------------------------------------------------------------------------------- /rasa/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/rasa/utils.py -------------------------------------------------------------------------------- /rasa/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.15.0a5' 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample_configs/config_call_graph.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/sample_configs/config_call_graph.yml -------------------------------------------------------------------------------- /sample_configs/config_coref.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/sample_configs/config_coref.yml -------------------------------------------------------------------------------- /sample_configs/config_coref_online.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/sample_configs/config_coref_online.yml -------------------------------------------------------------------------------- /sample_configs/config_easy_n2g.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/sample_configs/config_easy_n2g.yml -------------------------------------------------------------------------------- /sample_configs/config_entity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/sample_configs/config_entity.yml -------------------------------------------------------------------------------- /sample_configs/config_entity_online.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/sample_configs/config_entity_online.yml -------------------------------------------------------------------------------- /sample_configs/config_jieba_mitie_sklearn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/sample_configs/config_jieba_mitie_sklearn.yml -------------------------------------------------------------------------------- /sample_configs/config_link.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/sample_configs/config_link.yml -------------------------------------------------------------------------------- /sample_configs/config_link_online.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/sample_configs/config_link_online.yml -------------------------------------------------------------------------------- /sample_configs/config_ltp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/sample_configs/config_ltp.yml -------------------------------------------------------------------------------- /sample_configs/config_n2g.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/sample_configs/config_n2g.yml -------------------------------------------------------------------------------- /sample_configs/config_relation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/sample_configs/config_relation.yml -------------------------------------------------------------------------------- /sample_configs/config_relation_online.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/sample_configs/config_relation_online.yml -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/server.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/call2graph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/tests/call2graph/__init__.py -------------------------------------------------------------------------------- /tests/call2graph/api_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/tests/call2graph/api_test.py -------------------------------------------------------------------------------- /tests/call2graph/unit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/tests/call2graph/unit_test.py -------------------------------------------------------------------------------- /tests/coref/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/tests/coref/__init__.py -------------------------------------------------------------------------------- /tests/coref/coref_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/tests/coref/coref_test.py -------------------------------------------------------------------------------- /tests/data/call2graph/13035885069(话单数据).xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/tests/data/call2graph/13035885069(话单数据).xls -------------------------------------------------------------------------------- /tests/data/call2graph/13035885069.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/tests/data/call2graph/13035885069.xls -------------------------------------------------------------------------------- /tests/data/call2graph/13567488934标准的移动通话详单(1).xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/tests/data/call2graph/13567488934标准的移动通话详单(1).xlsx -------------------------------------------------------------------------------- /tests/data/call2graph/13567488934标准的移动通话详单.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/tests/data/call2graph/13567488934标准的移动通话详单.xlsx -------------------------------------------------------------------------------- /tests/data/call2graph/18435109165.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/tests/data/call2graph/18435109165.xls -------------------------------------------------------------------------------- /tests/data/call2graph/2011年10月电信18910744589通话详单(1).xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/tests/data/call2graph/2011年10月电信18910744589通话详单(1).xls -------------------------------------------------------------------------------- /tests/data/call2graph/2011年10月电信18910744589通话详单.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/tests/data/call2graph/2011年10月电信18910744589通话详单.xls -------------------------------------------------------------------------------- /tests/data/call2graph/2018年6月份联通话单(1).xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/tests/data/call2graph/2018年6月份联通话单(1).xlsx -------------------------------------------------------------------------------- /tests/data/call2graph/2018年6月份联通话单(3).xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/tests/data/call2graph/2018年6月份联通话单(3).xlsx -------------------------------------------------------------------------------- /tests/data/call2graph/2018年6月份联通话单.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/tests/data/call2graph/2018年6月份联通话单.xlsx -------------------------------------------------------------------------------- /tests/data/call2graph/2018年9月份话单(1).xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/tests/data/call2graph/2018年9月份话单(1).xls -------------------------------------------------------------------------------- /tests/data/call2graph/demo.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/tests/data/call2graph/demo.xls -------------------------------------------------------------------------------- /tests/data/call2graph/demo1.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/tests/data/call2graph/demo1.xls -------------------------------------------------------------------------------- /tests/data/call2graph/个人话单.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/tests/data/call2graph/个人话单.xls -------------------------------------------------------------------------------- /tests/data/call2graph/本机与对方号码都有.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/tests/data/call2graph/本机与对方号码都有.xlsx -------------------------------------------------------------------------------- /tests/data/call2graph/本机与对方号码都有1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/tests/data/call2graph/本机与对方号码都有1.xlsx -------------------------------------------------------------------------------- /tests/data/call2graph/本机与对方号码都有2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/tests/data/call2graph/本机与对方号码都有2.xlsx -------------------------------------------------------------------------------- /tests/data/call2graph/本机与对方都有的移动标准话单 - 副本.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/tests/data/call2graph/本机与对方都有的移动标准话单 - 副本.xlsx -------------------------------------------------------------------------------- /tests/data/call2graph/本机与对方都有的移动标准话单(2).xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/tests/data/call2graph/本机与对方都有的移动标准话单(2).xlsx -------------------------------------------------------------------------------- /tests/data/call2graph/本机与对方都有的移动标准话单(电话号码列都是文本).xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/tests/data/call2graph/本机与对方都有的移动标准话单(电话号码列都是文本).xlsx -------------------------------------------------------------------------------- /tests/data/call2graph/本机与对方都有的移动标准话单.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/tests/data/call2graph/本机与对方都有的移动标准话单.xlsx -------------------------------------------------------------------------------- /tests/data/call2graph/话单数据.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/tests/data/call2graph/话单数据.xlsx -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/train.py -------------------------------------------------------------------------------- /z_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnerzhang/rasa_usage/HEAD/z_run.sh --------------------------------------------------------------------------------