├── .gitattributes ├── .idea ├── DSServer.iml ├── encodings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── Code ├── Hello_World.py ├── __init__.py └── __pycache__ │ ├── Hello_World.cpython-36.pyc │ └── __init__.cpython-36.pyc ├── Config ├── __init__.py ├── _domain.yml └── _stroy.yml ├── Data ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ └── generateFile.cpython-36.pyc ├── action_info.json ├── flightNo.txt ├── generateFile.py ├── location.txt ├── nlu.md ├── slot_info.json ├── stories.md ├── story.json ├── story.md ├── story.md.bak ├── time.txt ├── training_data.md ├── training_data.md.bak ├── training_test.txt ├── training_weather_raw_data.txt ├── training_新建文本文档.txt └── user_info.json ├── Dataprocess ├── __init__.py ├── csv2Json.py ├── intent.csv └── intent.json ├── README.md ├── __pycache__ ├── actions.cpython-36.pyc ├── app.cpython-36.pyc ├── bot.cpython-36.pyc └── testRasa.cpython-36.pyc ├── _domain_yml ├── actions.py ├── app.py ├── bot.py ├── configs ├── __init__.py ├── nlu_config.yml └── nlu_embedding_config.yml ├── endpoints.yml ├── img ├── 对话流程.png ├── 系统功能模块图.png └── 系统界面.png ├── models ├── __init__.py ├── dialogue │ ├── domain.json │ ├── domain.yml │ ├── policy_0_KerasPolicy │ │ ├── featurizer.json │ │ ├── keras_model.h5 │ │ └── keras_policy.json │ └── policy_metadata.json ├── dialogue_embed │ ├── domain.json │ ├── domain.yml │ ├── policy_0_MemoizationPolicy │ │ ├── featurizer.json │ │ └── memorized_turns.json │ ├── policy_1_EmbeddingPolicy │ │ ├── checkpoint │ │ ├── featurizer.json │ │ ├── tensorflow_embedding.ckpt.data-00000-of-00001 │ │ ├── tensorflow_embedding.ckpt.encoded_all_actions.pkl │ │ ├── tensorflow_embedding.ckpt.index │ │ └── tensorflow_embedding.ckpt.meta │ ├── policy_2_FallbackPolicy │ │ └── fallback_policy.json │ └── policy_metadata.json ├── dialogue_keras │ ├── domain.json │ ├── domain.yml │ ├── policy_0_MemoizationPolicy │ │ ├── featurizer.json │ │ └── memorized_turns.json │ ├── policy_1_MobilePolicy │ │ ├── featurizer.json │ │ ├── keras_model.h5 │ │ └── keras_policy.json │ ├── policy_2_FallbackPolicy │ │ └── fallback_policy.json │ └── policy_metadata.json ├── new_dialogue_embed │ ├── domain.json │ ├── domain.yml │ ├── policy_0_MemoizationPolicy │ │ ├── featurizer.json │ │ └── memorized_turns.json │ ├── policy_1_EmbeddingPolicy │ │ ├── checkpoint │ │ ├── featurizer.json │ │ ├── tensorflow_embedding.ckpt.data-00000-of-00001 │ │ ├── tensorflow_embedding.ckpt.encoded_all_actions.pkl │ │ ├── tensorflow_embedding.ckpt.index │ │ └── tensorflow_embedding.ckpt.meta │ ├── policy_2_FallbackPolicy │ │ └── fallback_policy.json │ └── policy_metadata.json ├── new_dialogue_keras │ ├── domain.json │ ├── domain.yml │ ├── policy_0_KerasPolicy │ │ ├── featurizer.json │ │ ├── keras_model.h5 │ │ └── keras_policy.json │ └── policy_metadata.json └── nlu │ └── default │ ├── New │ ├── checkpoint │ ├── crf_model.pkl │ ├── intent_classifier_tensorflow_embedding.ckpt.data-00000-of-00001 │ ├── intent_classifier_tensorflow_embedding.ckpt.index │ ├── intent_classifier_tensorflow_embedding.ckpt.meta │ ├── intent_classifier_tensorflow_embedding_encoded_all_intents.pkl │ ├── intent_classifier_tensorflow_embedding_inv_intent_dict.pkl │ ├── intent_featurizer_count_vectors.pkl │ ├── metadata.json │ └── training_data.json │ └── current │ ├── checkpoint │ ├── crf_model.pkl │ ├── intent_classifier_tensorflow_embedding.ckpt.data-00000-of-00001 │ ├── intent_classifier_tensorflow_embedding.ckpt.index │ ├── intent_classifier_tensorflow_embedding.ckpt.meta │ ├── intent_classifier_tensorflow_embedding_encoded_all_intents.pkl │ ├── intent_classifier_tensorflow_embedding_inv_intent_dict.pkl │ ├── intent_featurizer_count_vectors.pkl │ ├── metadata.json │ └── training_data.json ├── policy ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── attention_keras.cpython-36.pyc │ ├── attention_policy.cpython-36.pyc │ └── mobile_policy.cpython-36.pyc ├── attention_keras.py ├── attention_policy.py ├── attention_policy.yml ├── embed_policy.yml ├── keras_policy.yml └── mobile_policy.py ├── rasa_core.log ├── story_graph.dot └── testRasa.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.idea/DSServer.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/.idea/DSServer.iml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /Code/Hello_World.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/Code/Hello_World.py -------------------------------------------------------------------------------- /Code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code/__pycache__/Hello_World.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/Code/__pycache__/Hello_World.cpython-36.pyc -------------------------------------------------------------------------------- /Code/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/Code/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Config/_domain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/Config/_domain.yml -------------------------------------------------------------------------------- /Config/_stroy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/Config/_stroy.yml -------------------------------------------------------------------------------- /Data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/Data/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Data/__pycache__/generateFile.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/Data/__pycache__/generateFile.cpython-36.pyc -------------------------------------------------------------------------------- /Data/action_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/Data/action_info.json -------------------------------------------------------------------------------- /Data/flightNo.txt: -------------------------------------------------------------------------------- 1 | NH12456 2 | NB11235 3 | SC45612 4 | QS46542 5 | SD55546 -------------------------------------------------------------------------------- /Data/generateFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/Data/generateFile.py -------------------------------------------------------------------------------- /Data/location.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/Data/location.txt -------------------------------------------------------------------------------- /Data/nlu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/Data/nlu.md -------------------------------------------------------------------------------- /Data/slot_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/Data/slot_info.json -------------------------------------------------------------------------------- /Data/stories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/Data/stories.md -------------------------------------------------------------------------------- /Data/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/Data/story.json -------------------------------------------------------------------------------- /Data/story.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/Data/story.md -------------------------------------------------------------------------------- /Data/story.md.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/Data/story.md.bak -------------------------------------------------------------------------------- /Data/time.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/Data/time.txt -------------------------------------------------------------------------------- /Data/training_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/Data/training_data.md -------------------------------------------------------------------------------- /Data/training_data.md.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/Data/training_data.md.bak -------------------------------------------------------------------------------- /Data/training_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/Data/training_test.txt -------------------------------------------------------------------------------- /Data/training_weather_raw_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/Data/training_weather_raw_data.txt -------------------------------------------------------------------------------- /Data/training_新建文本文档.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/Data/training_新建文本文档.txt -------------------------------------------------------------------------------- /Data/user_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/Data/user_info.json -------------------------------------------------------------------------------- /Dataprocess/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dataprocess/csv2Json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/Dataprocess/csv2Json.py -------------------------------------------------------------------------------- /Dataprocess/intent.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/Dataprocess/intent.csv -------------------------------------------------------------------------------- /Dataprocess/intent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/Dataprocess/intent.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/actions.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/__pycache__/actions.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/app.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/__pycache__/app.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/bot.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/__pycache__/bot.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/testRasa.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/__pycache__/testRasa.cpython-36.pyc -------------------------------------------------------------------------------- /_domain_yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/_domain_yml -------------------------------------------------------------------------------- /actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/actions.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/app.py -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/bot.py -------------------------------------------------------------------------------- /configs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /configs/nlu_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/configs/nlu_config.yml -------------------------------------------------------------------------------- /configs/nlu_embedding_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/configs/nlu_embedding_config.yml -------------------------------------------------------------------------------- /endpoints.yml: -------------------------------------------------------------------------------- 1 | action_endpoint: 2 | url: http://localhost:5055/webhook 3 | -------------------------------------------------------------------------------- /img/对话流程.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/img/对话流程.png -------------------------------------------------------------------------------- /img/系统功能模块图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/img/系统功能模块图.png -------------------------------------------------------------------------------- /img/系统界面.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/img/系统界面.png -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/dialogue/domain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/dialogue/domain.json -------------------------------------------------------------------------------- /models/dialogue/domain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/dialogue/domain.yml -------------------------------------------------------------------------------- /models/dialogue/policy_0_KerasPolicy/featurizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/dialogue/policy_0_KerasPolicy/featurizer.json -------------------------------------------------------------------------------- /models/dialogue/policy_0_KerasPolicy/keras_model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/dialogue/policy_0_KerasPolicy/keras_model.h5 -------------------------------------------------------------------------------- /models/dialogue/policy_0_KerasPolicy/keras_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/dialogue/policy_0_KerasPolicy/keras_policy.json -------------------------------------------------------------------------------- /models/dialogue/policy_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/dialogue/policy_metadata.json -------------------------------------------------------------------------------- /models/dialogue_embed/domain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/dialogue_embed/domain.json -------------------------------------------------------------------------------- /models/dialogue_embed/domain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/dialogue_embed/domain.yml -------------------------------------------------------------------------------- /models/dialogue_embed/policy_0_MemoizationPolicy/featurizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/dialogue_embed/policy_0_MemoizationPolicy/featurizer.json -------------------------------------------------------------------------------- /models/dialogue_embed/policy_0_MemoizationPolicy/memorized_turns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/dialogue_embed/policy_0_MemoizationPolicy/memorized_turns.json -------------------------------------------------------------------------------- /models/dialogue_embed/policy_1_EmbeddingPolicy/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/dialogue_embed/policy_1_EmbeddingPolicy/checkpoint -------------------------------------------------------------------------------- /models/dialogue_embed/policy_1_EmbeddingPolicy/featurizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/dialogue_embed/policy_1_EmbeddingPolicy/featurizer.json -------------------------------------------------------------------------------- /models/dialogue_embed/policy_1_EmbeddingPolicy/tensorflow_embedding.ckpt.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/dialogue_embed/policy_1_EmbeddingPolicy/tensorflow_embedding.ckpt.data-00000-of-00001 -------------------------------------------------------------------------------- /models/dialogue_embed/policy_1_EmbeddingPolicy/tensorflow_embedding.ckpt.encoded_all_actions.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/dialogue_embed/policy_1_EmbeddingPolicy/tensorflow_embedding.ckpt.encoded_all_actions.pkl -------------------------------------------------------------------------------- /models/dialogue_embed/policy_1_EmbeddingPolicy/tensorflow_embedding.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/dialogue_embed/policy_1_EmbeddingPolicy/tensorflow_embedding.ckpt.index -------------------------------------------------------------------------------- /models/dialogue_embed/policy_1_EmbeddingPolicy/tensorflow_embedding.ckpt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/dialogue_embed/policy_1_EmbeddingPolicy/tensorflow_embedding.ckpt.meta -------------------------------------------------------------------------------- /models/dialogue_embed/policy_2_FallbackPolicy/fallback_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/dialogue_embed/policy_2_FallbackPolicy/fallback_policy.json -------------------------------------------------------------------------------- /models/dialogue_embed/policy_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/dialogue_embed/policy_metadata.json -------------------------------------------------------------------------------- /models/dialogue_keras/domain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/dialogue_keras/domain.json -------------------------------------------------------------------------------- /models/dialogue_keras/domain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/dialogue_keras/domain.yml -------------------------------------------------------------------------------- /models/dialogue_keras/policy_0_MemoizationPolicy/featurizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/dialogue_keras/policy_0_MemoizationPolicy/featurizer.json -------------------------------------------------------------------------------- /models/dialogue_keras/policy_0_MemoizationPolicy/memorized_turns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/dialogue_keras/policy_0_MemoizationPolicy/memorized_turns.json -------------------------------------------------------------------------------- /models/dialogue_keras/policy_1_MobilePolicy/featurizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/dialogue_keras/policy_1_MobilePolicy/featurizer.json -------------------------------------------------------------------------------- /models/dialogue_keras/policy_1_MobilePolicy/keras_model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/dialogue_keras/policy_1_MobilePolicy/keras_model.h5 -------------------------------------------------------------------------------- /models/dialogue_keras/policy_1_MobilePolicy/keras_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/dialogue_keras/policy_1_MobilePolicy/keras_policy.json -------------------------------------------------------------------------------- /models/dialogue_keras/policy_2_FallbackPolicy/fallback_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/dialogue_keras/policy_2_FallbackPolicy/fallback_policy.json -------------------------------------------------------------------------------- /models/dialogue_keras/policy_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/dialogue_keras/policy_metadata.json -------------------------------------------------------------------------------- /models/new_dialogue_embed/domain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/new_dialogue_embed/domain.json -------------------------------------------------------------------------------- /models/new_dialogue_embed/domain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/new_dialogue_embed/domain.yml -------------------------------------------------------------------------------- /models/new_dialogue_embed/policy_0_MemoizationPolicy/featurizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/new_dialogue_embed/policy_0_MemoizationPolicy/featurizer.json -------------------------------------------------------------------------------- /models/new_dialogue_embed/policy_0_MemoizationPolicy/memorized_turns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/new_dialogue_embed/policy_0_MemoizationPolicy/memorized_turns.json -------------------------------------------------------------------------------- /models/new_dialogue_embed/policy_1_EmbeddingPolicy/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/new_dialogue_embed/policy_1_EmbeddingPolicy/checkpoint -------------------------------------------------------------------------------- /models/new_dialogue_embed/policy_1_EmbeddingPolicy/featurizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/new_dialogue_embed/policy_1_EmbeddingPolicy/featurizer.json -------------------------------------------------------------------------------- /models/new_dialogue_embed/policy_1_EmbeddingPolicy/tensorflow_embedding.ckpt.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/new_dialogue_embed/policy_1_EmbeddingPolicy/tensorflow_embedding.ckpt.data-00000-of-00001 -------------------------------------------------------------------------------- /models/new_dialogue_embed/policy_1_EmbeddingPolicy/tensorflow_embedding.ckpt.encoded_all_actions.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/new_dialogue_embed/policy_1_EmbeddingPolicy/tensorflow_embedding.ckpt.encoded_all_actions.pkl -------------------------------------------------------------------------------- /models/new_dialogue_embed/policy_1_EmbeddingPolicy/tensorflow_embedding.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/new_dialogue_embed/policy_1_EmbeddingPolicy/tensorflow_embedding.ckpt.index -------------------------------------------------------------------------------- /models/new_dialogue_embed/policy_1_EmbeddingPolicy/tensorflow_embedding.ckpt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/new_dialogue_embed/policy_1_EmbeddingPolicy/tensorflow_embedding.ckpt.meta -------------------------------------------------------------------------------- /models/new_dialogue_embed/policy_2_FallbackPolicy/fallback_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/new_dialogue_embed/policy_2_FallbackPolicy/fallback_policy.json -------------------------------------------------------------------------------- /models/new_dialogue_embed/policy_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/new_dialogue_embed/policy_metadata.json -------------------------------------------------------------------------------- /models/new_dialogue_keras/domain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/new_dialogue_keras/domain.json -------------------------------------------------------------------------------- /models/new_dialogue_keras/domain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/new_dialogue_keras/domain.yml -------------------------------------------------------------------------------- /models/new_dialogue_keras/policy_0_KerasPolicy/featurizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/new_dialogue_keras/policy_0_KerasPolicy/featurizer.json -------------------------------------------------------------------------------- /models/new_dialogue_keras/policy_0_KerasPolicy/keras_model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/new_dialogue_keras/policy_0_KerasPolicy/keras_model.h5 -------------------------------------------------------------------------------- /models/new_dialogue_keras/policy_0_KerasPolicy/keras_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/new_dialogue_keras/policy_0_KerasPolicy/keras_policy.json -------------------------------------------------------------------------------- /models/new_dialogue_keras/policy_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/new_dialogue_keras/policy_metadata.json -------------------------------------------------------------------------------- /models/nlu/default/New/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/nlu/default/New/checkpoint -------------------------------------------------------------------------------- /models/nlu/default/New/crf_model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/nlu/default/New/crf_model.pkl -------------------------------------------------------------------------------- /models/nlu/default/New/intent_classifier_tensorflow_embedding.ckpt.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/nlu/default/New/intent_classifier_tensorflow_embedding.ckpt.data-00000-of-00001 -------------------------------------------------------------------------------- /models/nlu/default/New/intent_classifier_tensorflow_embedding.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/nlu/default/New/intent_classifier_tensorflow_embedding.ckpt.index -------------------------------------------------------------------------------- /models/nlu/default/New/intent_classifier_tensorflow_embedding.ckpt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/nlu/default/New/intent_classifier_tensorflow_embedding.ckpt.meta -------------------------------------------------------------------------------- /models/nlu/default/New/intent_classifier_tensorflow_embedding_encoded_all_intents.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/nlu/default/New/intent_classifier_tensorflow_embedding_encoded_all_intents.pkl -------------------------------------------------------------------------------- /models/nlu/default/New/intent_classifier_tensorflow_embedding_inv_intent_dict.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/nlu/default/New/intent_classifier_tensorflow_embedding_inv_intent_dict.pkl -------------------------------------------------------------------------------- /models/nlu/default/New/intent_featurizer_count_vectors.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/nlu/default/New/intent_featurizer_count_vectors.pkl -------------------------------------------------------------------------------- /models/nlu/default/New/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/nlu/default/New/metadata.json -------------------------------------------------------------------------------- /models/nlu/default/New/training_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/nlu/default/New/training_data.json -------------------------------------------------------------------------------- /models/nlu/default/current/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/nlu/default/current/checkpoint -------------------------------------------------------------------------------- /models/nlu/default/current/crf_model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/nlu/default/current/crf_model.pkl -------------------------------------------------------------------------------- /models/nlu/default/current/intent_classifier_tensorflow_embedding.ckpt.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/nlu/default/current/intent_classifier_tensorflow_embedding.ckpt.data-00000-of-00001 -------------------------------------------------------------------------------- /models/nlu/default/current/intent_classifier_tensorflow_embedding.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/nlu/default/current/intent_classifier_tensorflow_embedding.ckpt.index -------------------------------------------------------------------------------- /models/nlu/default/current/intent_classifier_tensorflow_embedding.ckpt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/nlu/default/current/intent_classifier_tensorflow_embedding.ckpt.meta -------------------------------------------------------------------------------- /models/nlu/default/current/intent_classifier_tensorflow_embedding_encoded_all_intents.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/nlu/default/current/intent_classifier_tensorflow_embedding_encoded_all_intents.pkl -------------------------------------------------------------------------------- /models/nlu/default/current/intent_classifier_tensorflow_embedding_inv_intent_dict.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/nlu/default/current/intent_classifier_tensorflow_embedding_inv_intent_dict.pkl -------------------------------------------------------------------------------- /models/nlu/default/current/intent_featurizer_count_vectors.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/nlu/default/current/intent_featurizer_count_vectors.pkl -------------------------------------------------------------------------------- /models/nlu/default/current/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/nlu/default/current/metadata.json -------------------------------------------------------------------------------- /models/nlu/default/current/training_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/models/nlu/default/current/training_data.json -------------------------------------------------------------------------------- /policy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /policy/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/policy/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /policy/__pycache__/attention_keras.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/policy/__pycache__/attention_keras.cpython-36.pyc -------------------------------------------------------------------------------- /policy/__pycache__/attention_policy.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/policy/__pycache__/attention_policy.cpython-36.pyc -------------------------------------------------------------------------------- /policy/__pycache__/mobile_policy.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/policy/__pycache__/mobile_policy.cpython-36.pyc -------------------------------------------------------------------------------- /policy/attention_keras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/policy/attention_keras.py -------------------------------------------------------------------------------- /policy/attention_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/policy/attention_policy.py -------------------------------------------------------------------------------- /policy/attention_policy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/policy/attention_policy.yml -------------------------------------------------------------------------------- /policy/embed_policy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/policy/embed_policy.yml -------------------------------------------------------------------------------- /policy/keras_policy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/policy/keras_policy.yml -------------------------------------------------------------------------------- /policy/mobile_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/policy/mobile_policy.py -------------------------------------------------------------------------------- /rasa_core.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/rasa_core.log -------------------------------------------------------------------------------- /story_graph.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/story_graph.dot -------------------------------------------------------------------------------- /testRasa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao2years/DSServer/HEAD/testRasa.py --------------------------------------------------------------------------------