diff --git a/models/dialogue/domain.json b/models/dialogue/domain.json new file mode 100644 index 0000000..b6aa176 --- /dev/null +++ b/models/dialogue/domain.json @@ -0,0 +1,35 @@ +{ + "features": [ + "intent_greet", + "intent_confirm", + "intent_goodbye", + "intent_thanks", + "intent_inform_item", + "intent_inform_package", + "intent_inform_time", + "intent_request_management", + "intent_request_search", + "intent_deny", + "intent_inform_current_phone", + "intent_inform_other_phone", + "entity_item", + "entity_time", + "entity_phone_number", + "entity_price", + "slot_item_0", + "slot_phone_number_0", + "slot_price_0", + "slot_time_0", + "prev_action_listen", + "prev_action_restart", + "prev_utter_greet", + "prev_utter_goodbye", + "prev_utter_default", + "prev_utter_thanks", + "prev_utter_ask_morehelp", + "prev_utter_ask_time", + "prev_utter_ask_package", + "prev_utter_ack_management", + "prev_action_search_consume" + ] +} \ No newline at end of file diff --git a/models/dialogue/domain.yml b/models/dialogue/domain.yml new file mode 100644 index 0000000..585b059 --- /dev/null +++ b/models/dialogue/domain.yml @@ -0,0 +1,77 @@ +action_factory: null +action_names: +- utter_greet +- utter_goodbye +- utter_default +- utter_thanks +- utter_ask_morehelp +- utter_ask_time +- utter_ask_package +- utter_ack_management +- action_search_consume +actions: +- utter_greet +- utter_goodbye +- utter_default +- utter_thanks +- utter_ask_morehelp +- utter_ask_time +- utter_ask_package +- utter_ack_management +- bot.ActionSearchConsume +config: + store_entities_as_slots: true +entities: +- item +- time +- phone_number +- price +intents: +- greet +- confirm +- goodbye +- thanks +- inform_item +- inform_package +- inform_time +- request_management +- request_search +- deny +- inform_current_phone +- inform_other_phone +slots: + item: + type: text + phone_number: + type: text + price: + type: text + time: + type: text +templates: + utter_ack_management: + - text: 已经为您办理好了{item} + utter_ask_morehelp: + - text: 还有什么能帮您吗 + - text: 您还想干什么 + utter_ask_package: + - text: 我们现在支持办理流量套餐:套餐一:二十元包月三十兆;套餐二:四十元包月八十兆,请问您需要哪个? + - text: 我们有如下套餐供您选择:套餐一:二十元包月三十兆;套餐二:四十元包月八十兆,请问您需要哪个? + utter_ask_time: + - text: 你想查哪个时间段的 + - text: 你想查几月份的 + utter_default: + - text: 您说什么 + - text: 您能再说一遍吗,我没听清 + utter_goodbye: + - text: 再见,为您服务很开心 + - text: Bye, 下次再见 + utter_greet: + - text: 您好!,我是机器人小热,很高兴为您服务。 + - text: 你好!,我是小热,可以帮您办理流量套餐,话费查询等业务。 + - text: hi!,人家是小热,有什么可以帮您吗。 + utter_thanks: + - text: 不用谢 + - text: 我应该做的 + - text: 您开心我就开心 +topics: [] diff --git a/models/dialogue/featurizer.json b/models/dialogue/featurizer.json new file mode 100644 index 0000000..a696054 --- /dev/null +++ b/models/dialogue/featurizer.json @@ -0,0 +1 @@ +{"py/object": "rasa_core.featurizers.BinaryFeaturizer"} \ No newline at end of file diff --git a/models/dialogue/keras_arch.json b/models/dialogue/keras_arch.json new file mode 100644 index 0000000..9041bcb --- /dev/null +++ b/models/dialogue/keras_arch.json @@ -0,0 +1 @@ +{"class_name": "Sequential", "config": [{"class_name": "Masking", "config": {"name": "masking_1", "trainable": true, "batch_input_shape": [null, 2, 31], "dtype": "float32", "mask_value": -1}}, {"class_name": "LSTM", "config": {"name": "lstm_1", "trainable": true, "batch_input_shape": [null, 2, 31], "dtype": "float32", "return_sequences": false, "return_state": false, "go_backwards": false, "stateful": false, "unroll": false, "implementation": 0, "units": 32, "activation": "tanh", "recurrent_activation": "hard_sigmoid", "use_bias": true, "kernel_initializer": {"class_name": "VarianceScaling", "config": {"scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null}}, "recurrent_initializer": {"class_name": "Orthogonal", "config": {"gain": 1.0, "seed": null}}, "bias_initializer": {"class_name": "Zeros", "config": {}}, "unit_forget_bias": true, "kernel_regularizer": null, "recurrent_regularizer": null, "bias_regularizer": null, "activity_regularizer": null, "kernel_constraint": null, "recurrent_constraint": null, "bias_constraint": null, "dropout": 0.0, "recurrent_dropout": 0.0}}, {"class_name": "Dense", "config": {"name": "dense_1", "trainable": true, "batch_input_shape": [null, 32], "dtype": "float32", "units": 11, "activation": "linear", "use_bias": true, "kernel_initializer": {"class_name": "VarianceScaling", "config": {"scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null}}, "bias_initializer": {"class_name": "Zeros", "config": {}}, "kernel_regularizer": null, "bias_regularizer": null, "activity_regularizer": null, "kernel_constraint": null, "bias_constraint": null}}, {"class_name": "Activation", "config": {"name": "activation_1", "trainable": true, "activation": "softmax"}}], "keras_version": "2.0.8", "backend": "tensorflow"} \ No newline at end of file diff --git a/models/dialogue/keras_policy.json b/models/dialogue/keras_policy.json new file mode 100644 index 0000000..6f4c393 --- /dev/null +++ b/models/dialogue/keras_policy.json @@ -0,0 +1 @@ +{"arch": "keras_arch.json", "weights": "keras_weights.h5", "epochs": 200} \ No newline at end of file diff --git a/models/dialogue/keras_weights.h5 b/models/dialogue/keras_weights.h5 new file mode 100644 index 0000000..b33bb3d Binary files /dev/null and b/models/dialogue/keras_weights.h5 differ diff --git a/models/dialogue/memorized_turns.json b/models/dialogue/memorized_turns.json new file mode 100644 index 0000000..d08dff2 --- /dev/null +++ b/models/dialogue/memorized_turns.json @@ -0,0 +1,94 @@ +{ + "lookup": { + "eJyLzivNydFRiI7OzCtJzSuJTy9KTS3RUTCMBYoVFKWWxScml2Tm58XnZBYD5UESsbEA9W8Svg==": 2, + "eJwtzEEKgDAMRNGr9ABd6HlKCaUEDMRUm6ng7a3icv6DSTZUY0hJDGygzudgBzmXXrcY1jxxguAmAe9/cW34Ni1/OTpfVCqkGan4PHsh5we8pyKR": 10, + "eJwtjFEKgDAMQ6/iAfah5xmjDClS6DrdMsHbW2V/yXsh0YZqWGIUAxuo8TW4g0q2fHBxFJYt+cCT4CEBl0m6Vvyd1knOxjflHVKNVLoffiKlF17YJDg=": 8, + "eJyLjo4uKEotiy8tKUktii/JSMzLLtZRMIyN1VGIjs7MK0nNK4lPL0pNLQEJAsXAihOTSzLz8+JzMouB8mDVsQDN+hoo": 2, + "eJwtjNEJgDAMBVdxgH7oPKGEIoEGa6rNU3B7a/Hz7uCI6Ghy8wVIY+Rkm4dpiTFMRGoQAzc5L3GwS2pr/mqPPSgeVsj+Gy8Vg3n+zTinFVqNi3qfjXV8AeLjKfs=": 7, + "eJwtjEEKgDAMBL/iA3rQ94QSggQN2lTbVfD31uJtdxiGiI6iN1+AFsYqvtUwTDGGgcgc6uCi56UVnMRl0dTQZzShLcPDBk0/qXtG/zz+pNdlhmXn3WoL9nx8AaK8K6I=": 8, + "eJyLjo4uKEotiy8tKUktik/Pz09JqkzVUTCMjdVRiI7OzCtJzSuJTy9KTS0BCQLFwKoTk0sy8/PiczKLgfJg1bEA6gcaiA==": 2, + "eJwtjFEKgCAQBa/SAfyo8yyymC21YG7pK+j2mfQ5MzBEdBS5+QKk8Gq2zI+4YfLeDUSaIRlc5LykgquEErevttiC4mGF7L+pydCZx9/0dYhQy5y0tllf+xcP3ypb": 7, + "eJwtjFEKgCAQBa/SAfyo8yyyWC2ykGvpK/D2mfT33jAMEZ1FHr4BKRxz3tcmblq8dxORGsTARa5bKjgFC1FSR5/Rhb4UjRWSflKPjPF5/snIhw2ajQ+tPTjy/gXRKSwC": 8, + "eJyLjo4uKEotiy8tKUktik8vSk0t0VEwjI3VUYiOzswrSc0rQQgCxcBqE5NLMvPz4nMyi4HyYNWxAK5yGbY=": 2, + "eJwtjEEKgDAMBL/iA3rQ94QSRBYNaKvpVvD31uJxZmBE5HTcWkm4rg4wDFOMYRCxRCSq46oo1ILZl+2rLbZgfNSI4zdlz+ys42/6eF5oOelupc36Or6vUSmJ": 7, + "eJwtjFEKgCAQRK/iAfyo8yyySAyyoFY6Bd0+k/5mHo8nIkfDrReJpqkB9G4NwTsRq0SlNpwXOrXEGhPKQJ8xhLGMjxpRftLzzvl1+cmMx422V83WR3DmwwttYisw": 8, + "eJyLjo7OzCtJzSuJT0nNq9RRMIzVUYguzskvic8sSc2NN4CKFBSllsWXlpSkFsWn5+enJFWmgiRAMsRrT0wuyczPi8/JLAZqAGuPBQD4TCwD": 2, + "eJyLzivNydFRiI7OzCtJzSuJT0nNq9RRMIwFChXn5JfEZ5ak5sYbQEUKilLL4hOTSzLz8+JzMouBGkASsbEAU+0YNw==": 3, + "eJyLjo7OzCtJzSuJT0nNq9RRMIzVUYguzskvic8sSc2NN4CKFBSllsUnJpdk5ufF52QWAzWAJEAyEKnSkpLUovj0otTUErBELABssh8v": 0, + "eJyLzivNydFRiI4uKEotiy8tKUktik8vSk0t0VEwjI2NBQC8CQtz": 0, + "eJyLjo7OzCtJzSuJT0nNq9RRMIzVUYguzskvic8sSc2NN4CKFBSllsUnJpdk5ufF52QWAzWAJEAyxGsvLSlJLYpPz89PSapMBWuPBQD0XCwD": 0, + "eJyLzivNydFRiI7OzCtJzSuJT0nNq9RRMIwFChXn5JfEZ5ak5sYbQEUKilLL4ktLSlKL4tPz81OSKlNBErGxAFWtGEc=": 0, + "eJyLjo7OzCtJzSuJT0nNq9RRMIzVUYguzskvic8sSc2NN4CKFBSllsUnJpdk5ufF52QWAzWAJEAyxGsvLSlJLYpPL0pNLQFrjgUAmvkrMQ==": 0, + "eJyLzivNydFRiI7OzCtJzSuJT0nNq9RRMIwFChXn5JfEZ5ak5sYbQEUKilLL4ktLSlKL4tOLUlNLQMKxsQAjwhd1": 0, + "eJyVzEEKgCAQRuGreAAXdR6RQWqoIR1D/4JuXwZF27bvweecEwUraGQ9rOm9Na7GDBJwou5bIInfshbeaQO4EOagS229jcebCjP+gmGAZKUo9TJu0Z/PgzfK": 2, + "eJyLzivNydFRiI7OzCtJzSuJTy9KTS3RUTCMBYoV5+SXxGeWpObGGyCLlGTmpsJFCopSy+ITk0sy8/PiczKLgWaAJGJjAVQIHn4=": 2, + "eJyLjo7OzCtJzSuJT0nNq9RRMIzVUYguzskvic8sSc2NN0AWKcnMTYWLFBSllsWXlpSkFsWn5+enJFWmgiRAMpQbWJKRmJddDDYvFgCXgTdz": 0, + "eJyLzivNydFRiI7OzCtJzSuJT0nNq9RRMIwFChXn5JfEZ5ak5sYbIIuUZOamwkUKilLL4ktLSlKL4ksyEvOyi0HisbEAE+8dxw==": 0, + "eJyVjVsOQDAURLdiAT5YTyM3HhNuQks7JN09FYRPv+dkzhhj1BKW0sHGPCurPDNhdBQlJinehDrhIbPHJisJL71zXRORRDJ30GNZESgBtW+Ha3YIZTzjX5Lif+/rluqsjBqOw/O+2gGjuUhJ": 7, + "eJxVzdEKgCAMheFX6QG8qOcRGSKDBnOWm0Fvn0ZE3X7/geOlMbvJexJDMai4N1QDxVjT6qYl9NgD2QlkmP9ilPER5WL3AuavjMUrW8UDYjIqAkzaD0cI4QJpSC6d": 7, + "eJxNzFEKgCAQRdGttAA/aj0iQ+UQAzoT+grcfVkQ/d4D13svClZQZG1umIIbfE0GEnCm8V8gmb+yFz5pXiGmlKTeiw5dXjoALrSZxaXxQ+ECBTol4Q==": 0, + "eJyLzivNydFRiI4uKEotiy8tKUktik/Pz09JqkzVUTCMjY0FANXwDEU=": 0, + "eJyLjo7OzCtJzSuJT0nNq9RRMIzVUYguzskvic8sSc2NN0AWKcnMTYWLFBSllsUnJpdk5ufF52QWA40ASYBkKDGwtKQktSg+PT8/JakyFWxgLADJEzfD": 5, + "eJyLzivNydFRiI7OzCtJzSuJT0nNq9RRMIwFChXn5JfEZ5ak5sYbIIuUZOamwkUKilLL4ktLSlKL4tPz81OSKlNBErGxADKlHic=": 5, + "eJytjVEKwCAMQ6/iAfzYzlOkiBRW0LrZOtjtN8Uj7DPJSwIALEZi2OjqpIZKsaXDuz14B1/A9iAbleVorjY1bss5G90Yk3GVVcZURXuhAQzi14vM+o3N6fACox5D5w==": 10, + "eJxtjUEKgDAMBL/iA3rQ9xQJUiIGbKpNKvh7ba0o6DGzk11rLbEiK0RcE4qC4BDdZJquN409A9IdSNFXInPQckNbyRJxg8EpBa7P4AJL8piFbNwTxGOIHpSu6Ol/kW9/Idn4XZxJzu6y1B+fs0iC": 10, + "eJyLzivNydFRiI7OzCtJzSuJz8xLyy/KjS/JzE3VUTCMBcoARTNLKpFFinPygQpLUnPjDZBFQCrgIgVFqWXxicklmfl58TmZxUCzQRKxsQDFFCcs": 10, + "eJxljVEKhDAMBa/iAfxYz1MkFIkY1raaPAVvry26q/iZmTDPOScRHEHK88IGMvbaDXXVtHXlDiHYSMDhJDYmlJs+J5mUV1oAVvL2JUjgbLK62hL7pOGn/uEbeYcLyR/PKd9BUqRR7GiXpXYHgYZFtg==": 10, + "eJytjUsKwCAMRK/iAVy05wkSRAIN+GlNLPT2VesRupz3mBkA4KyUFStdjURRyNdwWLM7a6AL1gdZKS0isejMuC1yVrrRB+WSMbL0sSGG+XX6K2MoWVqieeFefEZD5w==": 0, + "eJwti0EKwCAMBL/iAzy07xEJIgsNaGxNLPT3tcXjzswGGaV4FwKLQYw6rgE1UqSeD+/2OOUUbA+xoS6ipdm/aVvk7LgpZeMm60y5iY6KL4jxBeXrJdE=": 0, + "eJytjMsJgDAQBVuxgBy0niCPEBZc1ER3n4Ld+yEleJwZmBijFkohTPZDnHBJlqfQDWPo4hOUF5SyNuNL5cfom9lMTqRMrQWL+jN7w1v+WR+kGJLPoK7yvccbpcZBGw==": 0, + "eJwtyVEKgCAQRdGtuAA/aj0ig8SDhtTKeQbtPos+7z2h9py9C0ErUSkNZ4dRDKktq3dzHDhAeYsS5T+Wd34t03+Ohks6iSbJNqEWvBLjA+IUIwU=": 0, + "eJyNjUsKgDAMBa/iAVzoeYqEIhGDttXkKXh7tfhbunwz8MY5JxEcQcrzwgYy9tr2ZVE3ZeEOIdhIwOEiNibkTdWXQAI/ZFJeaQFYyduQ3WlOddckdknDo97Uh/xO+RaSIo1ix3cuNTtpIUuW": 10, + "eJy1jUEKgDAMBL/iA3rQ9xQJpQQMaqvJVvD32iLiBzzuDOx47yWBE0h5L2wg46Bxct0wus7fQnCSgNeH2JLRNvVfAln5JZvyQSFCcqJF7L6vopq/YgVgpWBzc602XlnmTNs=": 0, + "eJxNyVEKgCAQRdGttAA/aj0ig8RAQ2o18wzafSYRfd57fKkpucF7KeACUj4qG8g46ry4YQoNGwguEnB+j6UNvWn8H0jm7+zKJ1WAlaKt3R4J4QZ/Tyjl": 0, + "eJyljUsKgDAMBa/iAVzoeYqEIhGDttXkKXh7P6jUtdt5n3HOSQRHkPK8sIGMvbZ9WdRNWbgjEGwk4PAlkMA3sTHhalCVk7Pxkkl5pQVgJW/Duz6jxy+xSxry4x8q30JSpFHs+L5MzQ7ua1HC": 10, + "eJzFjsEJgDAQBFtJAT60nhAOkQWDxsTLKti9RlS0Ar8zs7DWWj8RE0UxL8iUjFa7vjKNq4w9hOcmnghfQh9wkTxGnoXUb1KKhyTFKgsJlTYPEqKix5iKLfqPD/fauR3/1FtU": 0, + "eJxVy1EKgCAQhOGreAAf6jwii8RCklrtjkG3zyKkXr9/xpWakjXOxQIuIOG9soKUg0yzNaNvsYWIkyI4/wUx8yuaVjwLGr5yL7pswgdVgIWCLv3t/QWawS8R": 0, + "eJy9jVEKgCAQBa/iAfqo84gsEgstpZb7Crp9GiF1gX5n3mOstRLBEZR521lByj6PU2cG1xlbhOAkAYcvgQR+iC4J94L6N6mLRtbMB/kRkiItoiVYRTX/5XeAM3md29u5CwPGWTM=": 0, + "eJy9jlsKg0AQBK/iAfyI51lkWKTBwX3oTCt4+7giIblAfqsaqkMIWohCMWw7nOKINs19N4x9Fy6hPEWJ/EuoGQ/xVHkv5PVN2uJDVsMhcaLWIkn9CjbRzP/yOwmT6IvkapiR1vvD+AZwhlrg": 7, + "eJxVyksKgDAQBNGreAAXep4QBpGGBPPRSUfw9kYR0e2rMqmG0HfG+EQkimKrKJSCSWfXd6NtsQXPQzwR/0If8UgJmfchw1eu45VVsUsloTKVRWJWOIT1qtaeXvkwvg==": 7, + "eJyVjUEKgDAMBL/iA3rQ9xQJQaIEbartVvD3VlHw6i07AxPvvRrEQEm2IhkU2HiSUJFrut41vl6KgxQSHpKXiHtT+5A1yU4FkEScZ1p5mGvkkpd9X6iNMYWv/ZPnARqNFs01dqf7E6aFQ7c=": 9, + "eJwtzEEKwCAMRNGreAAX9TwiIUhaQmMUTQu9fW1xOf/BRL1EvIuR1UgNWPfaCzTMJx7kXUgTJ7A9wEZllSHV/g3bKq3TDZiNq4LwmGcfpPQCsP8iaQ==": 9, + "eJytjcsJgEAMRFuxAA9aT1hCkCDB/bk7CnZvFEvwNvMG3hCRZWgGN90P7eAkWVZNjsZhDuNAngwXGzR9pMeCt/P0kdr0ZFlgJXO07sJneJb/9AegjaVvXGXZXPJehBvL10WG": 0, + "eJwtjFEKgCAQRK/iAfyo84gsSywh6mY6Bt2+LfqbeW+YoLMU70JIClFQl3PKAFVW3qUa8m6NNrCUcFOC1J+McuDrtPykdbloAtKJR6bGW7aTV8b4APfSJck=": 0, + "eJy1zdEJgDAMRdFVHKAfOk+RUEqkwTaRNApur1WQLuDv4fKe957YkA2IF9ECRgXdMM1u8LeSnb3ULHdoWGDspRWfbIoHhGgkDBWDxgRRuO7vSCt+edzNUCHUFYooJszbczdfJRtPPg==": 0, + "eJxNysENgCAMQNFVGICDzkNI46HGxraQUkzcXrgYru//pJ05hpRIHdWB9Cwm4CQYw55HGUr+rtK4jNFRYFtlHr9Uwwe6Oxoc7QYphhdynTXnD5WQKU0=": 0, + "eJydjUkKgDAMAL/iAzzoe0oJpUQM2FSbKPh7Wzfq1eswzBhjiBVZgXiIKYBSwLbpbduYTEn3msgUs6gYoKtJMV4yJ9zAeaXIIOiSH8FHlvWKFOM5JlxWFL2t77RMfk4nkpw/Z/YAl5xOYg==": 7, + "eJxNzFEKgCAQhOGrdAAf6jwii8hCC6uWOwbdPouIHuf7YXzpqm7yXgq4gBrvnQ1kHFta3bSEEUcQnCTg/IppxbNp/gsk8ydb44NigtRCKjbu7xDCBVQCKHE=": 7, + "eJyVjVEKgCAQBa/iAfyo84gsUhst6Sq6Bd4+DQp/+515zDPGEAuyAPEWcwChgFrNVivTKEkdSfGxDQUDTCPpi4+kjBecIpjBlQNCzLijT912/d6tyPVv1S1CkcFTaYknaG97fkLp": 3, + "eJyLzivNydFRiI7OzCtJzSuJT0nNq9RRMIwFChXn5JfEZ5ak5sYbIIuUZOamwkUKilLL4hOTSzLz8+JzMouBRoAkYmMBMOUeFw==": 3, + "eJyVjVEKgCAQBa/SAfqo84gsEhsu6Rr6Crp9GhT+9jvzmGeMEQUrSHRNORIk8jjMdhxMpYKrJyWkOgRHmnrSFh/ZM590AJzJlY1iyuw57M02/d7BO93K365bIEkpSKmRJ2lvDtNDwg==": 5, + "eJyLzivNydFRiI7OzCtJzSuJL8lIzMsu1lEwjAUKFufkl8RnlqTmxhsgi5Rk5qbCRQqKUsviE5NLMvPz4nMyi4GGgCRiYwF6hx7w": 5, + "eJyljksKg0AQRK/iAVwk5xmkGaTEJvMx3aWQ22cmEDHrbN8reBVC0EIUipalWhZqxjjcp3EIjSpfV+KptiGR5XYlfXGSzXDITsIk+kNyNaxIW7ddf3OG5w6nOKLN62+xF/7/EGdqLZLUW/CTn95SBlNv": 7, + "eJyVjUEKgDAMBL/iA3rQ95QSRCIGm0TSKPh7W0Hx6nVmmY0xkjiKA8msxuDEGLohhS5WSn5+Sclah44M/Ze0xUs2wwN2dzQYywqshgvmrdmmn7tJZSbjv+FxclKBTKVW7ma6AFbgRCc=": 6, + "eJyLzivNydFRiI7OzCtJzSuJT87PS8ssytVRMIwFihbn5JfEZ5ak5sYbIIuUZOamwkUKilLL4hOTSzLz8+JzMouBpoAkYmMBncIfVQ==": 6, + "eJyVjUsKg0AQRK/iAVwk5xmkGaTEJvMx3aWQ22cmEDHLbN8r6oUQtBCFomWploWaMQ73aRxCo8rXlXiqbUhkuV1JX5xkMxyykzCJ/pBcDSvS1m3X35zhucMpjmjz+lvshX+LcabWIkm93X9i0xulz01D": 7, + "eJy1jdEJwCAMBVdxAD/aeUSCSEoDmhSTFrp9lUJxgf7ePe6FEIgN2YB4k1bBqKJ3a/QudEp2z0SL9KFhhWUmY/GRo+EFKRsJQyHt7SGG+fNJMbW8QxbW843E+ABkG00d": 6, + "eJxNzEEKwCAMRNGreAAX7XlEgkhKA5qIxkJv35RCcfvmM4FnKd6FQKzICsSH9ApKFb3boy2mpPcqo4iFihW2Vd7il9bxgpSVhGFg6vmELDzmdxLjAxM/Kmw=": 6, + "eJytjUsKgDAMRK/SA3Sh5wklFIla7I80Ct7etPQILufzZgAgZKEsGPJeOGH12+UPsmZ11oAGQV4MQmk6LRYZGpfpVKYHbxFiVBaTz8onJXveC78+NH0oTCfFOvbdB44ORUo=": 0, + "eJwtyUsKwCAMANGreAAX7XlEgpS0DcYoMRZ6+35wOfOCDGbvQiAxFAOSvWqBlracDvRujS++QHYDGZZ5Olf7G5Z5muIFwwwVUs9QquKJ3D6N8QFprCSK": 0, + "eJx9jEEOgCAMBL/CAzjoe4hpCFZtgEKgmvh7heDV485k1hhDLMgCxFsqEbJ13u6o1bxoZV5BcgMJxkFqSNI3TIPkghecIljAVg8xFTww5Gab/v5X5Pv/wzqhxBCovkHPlwfODjhG": 3, + "eJyVzFsKhEAMRNGtuAA/nPU0EkJTarBfk8SB2b0PdAF+Vl04IQQpjuIkZaqaqXFceUbffca+C0cQ/5M48v1Yqn5tGu6nKX60uUOJbaVcFQtSO+uZH1/x3WBOBta4vPU5utRCSezALnrcAbioQqA=": 7, + "eJytjdEJwCAMRFdxAD/aeUSCSFqCGkXTQrdvLI7Qz7vHu3POEQuyAPFRe4EWYgonWrN7a5wCkgdIsKxm5Cpfhm01reMNIQpVhkxDxyaY5J/pSwS7HiQogdUvan4P/gUQrkMp": 6, + "eJwti0EKgDAMwL6yB+yg7xmjFKlSXLsxO8HfW2XHJCTpKCWGlFiN1IB1r12g4XbiQTGs2aMHtgfYSKa5SrWfYZmmdbphmFEHf0FQ/Rc/v57zC7NhJTs=": 6, + "eJxNzEEKgDAMBdGr9ABd6HlCCUUCBttUmq/n1yJIt/NgiEgNYmDs2Q6PYU0xkJcGVkjlZS7QKn85u9ycN2gzLurvZMCQjy5A+rRN6QE6aCZa": 0, + "eJyLzivNydFRiI4uKEotiy8tKUktii/JSMzLLtZRMIyNjQUAyRwL5Q==": 0, + "eJyLjo7OzCtJzSuJL8lIzMsu1lEwjNVRiC7OyS+JzyxJzY03QBYpycxNhYsUFKWWxScml2Tm58XnZBYDDQFJgGQoM7K0pCS1CElvbCwAl+c5FQ==": 0, + "eJyLzivNydFRiI7OzCtJzSuJL8lIzMsu1lEwjAUKFufkl8RnlqTmxhsgi5Rk5qbCRQqKUsviS0tKUouQ9MbGAgBcuB6g": 0, + "eJyLjo7OzCtJzSuJT8/PT0mqTNVRMIzVUYguzskvic8sSc2NN0AWKcnMTYWLFBSllsUnJpdk5ufF52QWA00BSYBkIFKlJSWpRcjmxsYCAIvAJxo=": 0, + "eJyLjo7OzCtJzSuJT8/PT0mqTNVRMIzVUYguzskvic8sSc2NN0AWKcnMTYWLFBSllsUnJpdk5ufF52QWA00BSYBkKDSztKQktQhZc2wsAE3UOjU=": 0, + "eJyLzivNydFRiI7OzCtJzSuJT8/PT0mqTNVRMIwFihbn5JfEZ5ak5sYbIIuUZOamwkUKilLL4ktLSlKLkDXHxgIAnj0fYA==": 0, + "eJyVzEEKgCAQQNGreAAXdR6RQWyiIWcUnYJuXwZF27b/w3POkSiKQswyU2VrRm+NaykrkCLD8C1KjG8pFXfYVLFCaCtwrrhgKv32/cATyvFXDVEpCyRqF3GD/gTeXzsS": 3, + "eJylzMEJgDAMQNFVHKAHnSeUUErEYJOUNjq/1oN49/o/PABgdVLHbLpykzAtMUzQizmyk+D8Lc5Cb6mNTkzZ2RQL91sZY5yf5uFODVPfUazRRqU+cLwAf808UA==": 0, + "eJxNycEJgDAMBdBVHKAHnaeUIBIxmKQl/XV+9SJe38s+VNOUszjYQVv1XcLStJRHu1aQgI3mv0CMP2nBFw2Ag9Z+ktXgg7W9W8oNRwshdg==": 0, + "eJxNjEEKgDAQA7/iAzzoe0pZpARdqK1uo+Dv1aLoMZNknHOaiEQZDWDb9L5t3GLYZSNhH775uzWsGwqlYLAwPaerUB6ixPyQEjNrlu4vHgI1J4laLllV+xPvyjAS": 10, + "eJxNjFEKgCAQRK/iAfqo84gsEkMspJZOQbfPxKi/mcfMs9ZqJCJlyQAHM7nB2C3jlINE/vDD323GfqBQgo9+QaioH2tSXqJE6KSsia3L+Jf7mZqirFqqsOndDcf/Mbk=": 8, + "eJyLjo7OzCtJzSuJTy9KTS3RUTCM1VGILihKLYtPTC7JzM+Lz8ksBsqDJEAyOFWXlpSkFiGEY2MByw8gPw==": 0, + "eJyLzivNydFRiI7OzCtJzSuJTy9KTS3RUTCMBYoVFKWWxZeWlKQWIYRjYwHQNhH8": 0, + "eJyLjo7OzCtJzSuJTy9KTS3RUTCM1VGILs7JL4nPLEnNjTdAFinJzE2FixQUpZbFl5aUpBYhtILE4ebl56ckVaaSamJicklmfl58TmYx0BSwmbEASmM4kQ==": 3, + "eJyLzivNydFRiI7OzCtJzSuJT8/PT0mqTNVRMIwFihbn5JfEZ5ak5sYbIIuUZOamwkUKilLL4hOTSzLz8+JzMouBpoAkYmMBnH0fUA==": 3, + "eJyLjo7OzCtJzSuJTy9KTS3RUTCM1VGILs7JL4nPLEnNjTdAFinJzE2FixQUpZbFJyaXZObnxedkFgPNAEmAZCgysbSkJLUIoTU2FgDVbTe/": 0, + "eJyLzivNydFRiI7OzCtJzSuJTy9KTS3RUTCMBYoV5+SXxGeWpObGGyCLlGTmpsJFCopSy+JLS0pSixBaY2MBF08dvA==": 0, + "eJyLzivNydFRAJGxAB0vBHs=": 0 + } +} \ No newline at end of file diff --git a/models/dialogue/policy_metadata.json b/models/dialogue/policy_metadata.json new file mode 100644 index 0000000..56dfe95 --- /dev/null +++ b/models/dialogue/policy_metadata.json @@ -0,0 +1,9 @@ +{ + "rasa_core": "0.8.0a1", + "max_history": 2, + "ensemble_name": "rasa_core.policies.ensemble.SimplePolicyEnsemble", + "policy_names": [ + "rasa_core.policies.memoization.MemoizationPolicy", + "__main__.MobilePolicy" + ] +} \ No newline at end of file diff --git a/models/ivr/demo/entity_extractor.dat b/models/ivr/demo/entity_extractor.dat new file mode 100644 index 0000000..7873cad Binary files /dev/null and b/models/ivr/demo/entity_extractor.dat differ diff --git a/models/ivr/demo/entity_synonyms.json b/models/ivr/demo/entity_synonyms.json new file mode 100644 index 0000000..a831683 --- /dev/null +++ b/models/ivr/demo/entity_synonyms.json @@ -0,0 +1,5 @@ +{ + "\u8bdd\u8d39": "\u6d88\u8d39", + "\u94b1": "\u6d88\u8d39", + "\u91cf\u4e1a": "\u6d41\u91cf" +} \ No newline at end of file diff --git a/models/ivr/demo/intent_classifier.pkl b/models/ivr/demo/intent_classifier.pkl new file mode 100644 index 0000000..8afdd43 Binary files /dev/null and b/models/ivr/demo/intent_classifier.pkl differ diff --git a/models/ivr/demo/metadata.json b/models/ivr/demo/metadata.json new file mode 100644 index 0000000..bc2d09a --- /dev/null +++ b/models/ivr/demo/metadata.json @@ -0,0 +1,21 @@ +{ + "language": "zh", + "pipeline": [ + "rasa_nlu.utils.mitie_utils.MitieNLP", + "rasa_nlu.tokenizers.jieba_tokenizer.JiebaTokenizer", + "rasa_nlu.extractors.mitie_entity_extractor.MitieEntityExtractor", + "rasa_nlu.extractors.entity_synonyms.EntitySynonymMapper", + "rasa_nlu.featurizers.regex_featurizer.RegexFeaturizer", + "rasa_nlu.featurizers.mitie_featurizer.MitieFeaturizer", + "rasa_nlu.classifiers.sklearn_intent_classifier.SklearnIntentClassifier" + ], + "training_data": "training_data.json", + "mitie_feature_extractor_fingerprint": 18096750213186988631, + "mitie_file": "data/total_word_feature_extractor.dat", + "entity_extractor_mitie": "entity_extractor.dat", + "entity_synonyms": "entity_synonyms.json", + "regex_featurizer": null, + "intent_classifier_sklearn": "intent_classifier.pkl", + "trained_at": "20180117-103436", + "rasa_nlu_version": "0.10.4" +} \ No newline at end of file diff --git a/models/ivr/demo/training_data.json b/models/ivr/demo/training_data.json new file mode 100644 index 0000000..93592a7 --- /dev/null +++ b/models/ivr/demo/training_data.json @@ -0,0 +1,1839 @@ +{ + "rasa_nlu_data": { + "common_examples": [ + { + "intent": "request_search", + "entities": [ + { + "start": 7, + "end": 9, + "value": "\u6d41\u91cf", + "entity": "item" + } + ], + "text": "\u5e2e\u6211\u67e5\u4e00\u4e0b\u6211\u7684\u6d41\u91cf\u6709\u591a\u5c11" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 7, + "end": 9, + "value": "\u6d41\u91cf", + "entity": "item" + } + ], + "text": "\u5e2e\u6211\u67e5\u4e00\u4e0b\u6211\u7684\u6d41\u91cf\u8fd9\u91cc\u8fd8\u6709\u591a\u5c11" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 9, + "end": 11, + "value": "\u6d88\u8d39", + "entity": "item" + } + ], + "text": "\u5e2e\u6211\u67e5\u4e00\u4e0b\u6211\u4e00\u4e2a\u6708\u6d88\u8d39\u591a\u5c11" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 6, + "end": 8, + "value": "\u6708\u79df", + "entity": "item" + } + ], + "text": "\u5e2e\u6211\u67e5\u4e00\u4e0b\u6211\u6708\u79df\u591a\u5c11" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 12, + "end": 14, + "value": "\u6d41\u91cf", + "entity": "item" + } + ], + "text": "\u5e2e\u6211\u770b\u4e00\u4e0b\u8fd9\u4e2a\u624b\u673a\u7684\u90a3\u4e2a\u6d41\u91cf" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 11, + "end": 13, + "value": "\u6d88\u8d39", + "entity": "item" + } + ], + "text": "\u6211\u60f3\u95ee\u4e00\u4e0b\u6211\u662f\u7528\u4e86\u591a\u5c11\u8bdd\u8d39" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 12, + "end": 14, + "value": "\u6d41\u91cf", + "entity": "item" + } + ], + "text": "\u5e2e\u6211\u67e5\u4e00\u4e0b\u770b\u770b\u6211\u5269\u6709\u591a\u5c11\u6d41\u91cf" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 9, + "end": 11, + "value": "\u4f59\u989d", + "entity": "item" + } + ], + "text": "\u6211\u73b0\u5728\u8fd8\u6709\u591a\u5c11\u8bdd\u8d39\u4f59\u989d\u554a" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 5, + "end": 7, + "value": "\u4f59\u989d", + "entity": "item" + } + ], + "text": "\u67e5\u4e00\u4e0b\u8bdd\u8d39\u4f59\u989d" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 3, + "end": 5, + "value": "\u6d41\u91cf", + "entity": "item" + } + ], + "text": "\u6211\u90a3\u4e2a\u6d41\u91cf\u8fd8\u6709\u591a\u5c11" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 7, + "end": 9, + "value": "\u6d41\u91cf", + "entity": "item" + } + ], + "text": "\u4f60\u597d\u67e5\u4e0b\u6211\u8fd9\u4e2a\u6d41\u91cf\u6709\u591a\u5c11\u554a" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 12, + "end": 14, + "value": "\u6d41\u91cf", + "entity": "item" + } + ], + "text": "\u5582\u4f60\u597d\u4f60\u5e2e\u6211\u67e5\u770b\u4e00\u4e0b\u6211\u7684\u6d41\u91cf" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 10, + "end": 12, + "value": "\u6d41\u91cf", + "entity": "item" + }, + { + "start": 6, + "end": 9, + "value": "\u4e0a\u4e2a\u6708", + "entity": "time" + } + ], + "text": "\u5e2e\u6211\u67e5\u4e00\u4e0b\u6211\u4e0a\u4e2a\u6708\u7684\u6d41\u91cf\u6709\u591a\u5c11" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 10, + "end": 12, + "value": "\u6d41\u91cf", + "entity": "item" + } + ], + "text": "\u6069\u4f60\u597d\u554a\u7ed9\u6211\u67e5\u67e5\u6211\u7684\u6d41\u91cf" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 10, + "end": 12, + "value": "\u6d41\u91cf", + "entity": "item" + } + ], + "text": "\u55ef\u4f60\u597d\u554a\u7ed9\u6211\u67e5\u67e5\u6211\u7684\u6d41\u91cf" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 9, + "end": 11, + "value": "\u8bdd\u8d39", + "entity": "item" + } + ], + "text": "\u6069\u4f60\u597d\u554a\u7ed9\u6211\u67e5\u67e5\u6211\u8bdd\u8d39\u7684\u4f7f\u7528\u60c5\u51b5" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 5, + "end": 7, + "value": "\u8bdd\u8d39", + "entity": "item" + } + ], + "text": "\u6211\u60f3\u770b\u4e00\u4e0b\u8bdd\u8d39" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 8, + "end": 10, + "value": "\u6d88\u8d39", + "entity": "item" + } + ], + "text": "\u4f60\u7ed9\u6211\u67e5\u4e0b\u6211\u7684\u6708\u6d88\u8d39\u60c5\u51b5" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 2, + "end": 4, + "value": "\u8bdd\u8d39", + "entity": "item" + } + ], + "text": "\u6211\u7684\u8bdd\u8d39\u8fd8\u5269\u591a\u5c11" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 10, + "end": 11, + "value": "\u94b1", + "entity": "item" + } + ], + "text": "\u80fd\u4e0d\u80fd\u770b\u4e0b\u6211\u8fd8\u5269\u591a\u5c11\u94b1" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 4, + "end": 6, + "value": "\u8bdd\u8d39", + "entity": "item" + } + ], + "text": "\u90a3\u4e2a\u6211\u7684\u8bdd\u8d39\u8fd8\u6709\u591a\u5c11" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 7, + "end": 9, + "value": "\u6d88\u8d39", + "entity": "item" + } + ], + "text": "\u4f60\u80fd\u7ed9\u6211\u770b\u4e0b\u6211\u6d88\u8d39\u591a\u5c11\u4e86\u5417" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 10, + "end": 12, + "value": "\u8bdd\u8d39", + "entity": "item" + } + ], + "text": "\u6211\u60f3\u77e5\u9053\u6211\u7684\u8fd9\u4e2a\u6708\u7684\u8bdd\u8d39\u55ef\u55ef" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 6, + "end": 8, + "value": "\u6d88\u8d39", + "entity": "item" + } + ], + "text": "\u4f60\u7ed9\u6211\u8bf4\u6211\u7684\u6d88\u8d39\u591a\u5c11" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 9, + "end": 11, + "value": "\u6d88\u8d39", + "entity": "item" + }, + { + "start": 6, + "end": 9, + "value": "\u4e0a\u4e2a\u6708", + "entity": "time" + } + ], + "text": "\u5e2e\u6211\u770b\u4e00\u4e0b\u6211\u4e0a\u4e2a\u6708\u6d88\u8d39\u591a\u5c11" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 9, + "end": 11, + "value": "\u6d88\u8d39", + "entity": "item" + }, + { + "start": 6, + "end": 9, + "value": "\u8fd9\u4e2a\u6708", + "entity": "time" + } + ], + "text": "\u5e2e\u6211\u67e5\u4e00\u4e0b\u6211\u8fd9\u4e2a\u6708\u6d88\u8d39\u591a\u5c11" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 14, + "end": 16, + "value": "\u6d88\u8d39", + "entity": "item" + }, + { + "start": 6, + "end": 9, + "value": "\u8fd9\u4e2a\u6708", + "entity": "time" + } + ], + "text": "\u6211\u60f3\u95ee\u4e00\u4e0b\u6211\u8fd9\u4e2a\u6708\u662f\u7528\u4e86\u591a\u5c11\u8bdd\u8d39" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 9, + "end": 11, + "value": "\u4f59\u989d", + "entity": "item" + }, + { + "start": 1, + "end": 3, + "value": "\u73b0\u5728", + "entity": "time" + } + ], + "text": "\u6211\u73b0\u5728\u8fd8\u6709\u591a\u5c11\u8bdd\u8d39\u4f59\u989d\u554a" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 8, + "end": 10, + "value": "\u6d41\u91cf", + "entity": "item" + }, + { + "start": 5, + "end": 8, + "value": "\u8fd9\u4e2a\u6708", + "entity": "time" + } + ], + "text": "\u4f60\u597d\u67e5\u4e0b\u6211\u8fd9\u4e2a\u6708\u6d41\u91cf\u6709\u591a\u5c11\u554a" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 16, + "end": 18, + "value": "\u6d41\u91cf", + "entity": "item" + }, + { + "start": 12, + "end": 14, + "value": "\u672c\u6708", + "entity": "time" + } + ], + "text": "\u5582\u4f60\u597d\u4f60\u5e2e\u6211\u67e5\u770b\u4e00\u4e0b\u8fd9\u4e2a\u672c\u6708\u6211\u7684\u6d41\u91cf" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 10, + "end": 12, + "value": "\u6d41\u91cf", + "entity": "item" + }, + { + "start": 6, + "end": 9, + "value": "\u5341\u4e8c\u6708", + "entity": "time" + } + ], + "text": "\u5e2e\u6211\u67e5\u4e00\u4e0b\u6211\u5341\u4e8c\u6708\u7684\u6d41\u91cf\u6709\u591a\u5c11" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 9, + "end": 11, + "value": "\u6d88\u8d39", + "entity": "item" + }, + { + "start": 6, + "end": 9, + "value": "\u5341\u4e8c\u6708", + "entity": "time" + } + ], + "text": "\u5e2e\u6211\u770b\u4e00\u4e0b\u6211\u5341\u4e8c\u6708\u6d88\u8d39\u591a\u5c11" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 9, + "end": 11, + "value": "\u6d88\u8d39", + "entity": "item" + }, + { + "start": 6, + "end": 9, + "value": "\u5341\u4e8c\u6708", + "entity": "time" + } + ], + "text": "\u5e2e\u6211\u67e5\u4e00\u4e0b\u6211\u5341\u4e8c\u6708\u6d88\u8d39\u591a\u5c11" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 14, + "end": 16, + "value": "\u6d88\u8d39", + "entity": "item" + }, + { + "start": 6, + "end": 9, + "value": "\u5341\u4e8c\u6708", + "entity": "time" + } + ], + "text": "\u6211\u60f3\u95ee\u4e00\u4e0b\u6211\u5341\u4e8c\u6708\u662f\u7528\u4e86\u591a\u5c11\u8bdd\u8d39" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 8, + "end": 10, + "value": "\u6d41\u91cf", + "entity": "item" + }, + { + "start": 5, + "end": 8, + "value": "\u5341\u4e8c\u6708", + "entity": "time" + } + ], + "text": "\u4f60\u597d\u67e5\u4e0b\u6211\u5341\u4e8c\u6708\u6d41\u91cf\u6709\u591a\u5c11\u554a" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 17, + "end": 19, + "value": "\u6d41\u91cf", + "entity": "item" + }, + { + "start": 12, + "end": 15, + "value": "\u5341\u4e8c\u6708", + "entity": "time" + } + ], + "text": "\u5582\u4f60\u597d\u4f60\u5e2e\u6211\u67e5\u770b\u4e00\u4e0b\u8fd9\u4e2a\u5341\u4e8c\u6708\u6211\u7684\u6d41\u91cf" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 9, + "end": 11, + "value": "\u6d41\u91cf", + "entity": "item" + }, + { + "start": 6, + "end": 8, + "value": "\u516d\u6708", + "entity": "time" + } + ], + "text": "\u5e2e\u6211\u67e5\u4e00\u4e0b\u6211\u516d\u6708\u7684\u6d41\u91cf\u6709\u591a\u5c11" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 8, + "end": 10, + "value": "\u6d88\u8d39", + "entity": "item" + }, + { + "start": 6, + "end": 8, + "value": "\u516d\u6708", + "entity": "time" + } + ], + "text": "\u5e2e\u6211\u770b\u4e00\u4e0b\u6211\u516d\u6708\u6d88\u8d39\u591a\u5c11" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 8, + "end": 10, + "value": "\u6d88\u8d39", + "entity": "item" + }, + { + "start": 6, + "end": 8, + "value": "\u516d\u6708", + "entity": "time" + } + ], + "text": "\u5e2e\u6211\u67e5\u4e00\u4e0b\u6211\u516d\u6708\u6d88\u8d39\u591a\u5c11" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 13, + "end": 15, + "value": "\u6d88\u8d39", + "entity": "item" + }, + { + "start": 6, + "end": 8, + "value": "\u516d\u6708", + "entity": "time" + } + ], + "text": "\u6211\u60f3\u95ee\u4e00\u4e0b\u6211\u516d\u6708\u662f\u7528\u4e86\u591a\u5c11\u8bdd\u8d39" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 7, + "end": 9, + "value": "\u6d41\u91cf", + "entity": "item" + }, + { + "start": 5, + "end": 7, + "value": "\u516d\u6708", + "entity": "time" + } + ], + "text": "\u4f60\u597d\u67e5\u4e0b\u6211\u516d\u6708\u6d41\u91cf\u6709\u591a\u5c11\u554a" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 16, + "end": 18, + "value": "\u6d41\u91cf", + "entity": "item" + }, + { + "start": 12, + "end": 14, + "value": "\u516d\u6708", + "entity": "time" + } + ], + "text": "\u5582\u4f60\u597d\u4f60\u5e2e\u6211\u67e5\u770b\u4e00\u4e0b\u8fd9\u4e2a\u516d\u6708\u6211\u7684\u6d41\u91cf" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 9, + "end": 11, + "value": "\u6d41\u91cf", + "entity": "item" + }, + { + "start": 6, + "end": 8, + "value": "\u4e09\u6708", + "entity": "time" + } + ], + "text": "\u5e2e\u6211\u67e5\u4e00\u4e0b\u6211\u4e09\u6708\u7684\u6d41\u91cf\u6709\u591a\u5c11" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 8, + "end": 10, + "value": "\u6d88\u8d39", + "entity": "item" + }, + { + "start": 6, + "end": 8, + "value": "\u4e00\u6708", + "entity": "time" + } + ], + "text": "\u5e2e\u6211\u770b\u4e00\u4e0b\u6211\u4e00\u6708\u6d88\u8d39\u591a\u5c11" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 8, + "end": 10, + "value": "\u6d88\u8d39", + "entity": "item" + }, + { + "start": 6, + "end": 8, + "value": "\u4e00\u6708", + "entity": "time" + } + ], + "text": "\u5e2e\u6211\u67e5\u4e00\u4e0b\u6211\u4e00\u6708\u6d88\u8d39\u591a\u5c11" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 13, + "end": 15, + "value": "\u6d88\u8d39", + "entity": "item" + }, + { + "start": 6, + "end": 8, + "value": "\u4e00\u6708", + "entity": "time" + } + ], + "text": "\u6211\u60f3\u95ee\u4e00\u4e0b\u6211\u4e00\u6708\u662f\u7528\u4e86\u591a\u5c11\u8bdd\u8d39" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 8, + "end": 10, + "value": "\u6d41\u91cf", + "entity": "item" + }, + { + "start": 5, + "end": 7, + "value": "\u4e8c\u6708", + "entity": "time" + } + ], + "text": "\u4f60\u597d\u67e5\u4e0b\u6211\u4e8c\u6708\u7684\u6d41\u91cf\u6709\u591a\u5c11\u554a" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 16, + "end": 18, + "value": "\u6d41\u91cf", + "entity": "item" + }, + { + "start": 12, + "end": 14, + "value": "\u4e00\u6708", + "entity": "time" + } + ], + "text": "\u5582\u4f60\u597d\u4f60\u5e2e\u6211\u67e5\u770b\u4e00\u4e0b\u8fd9\u4e2a\u4e00\u6708\u6211\u7684\u6d41\u91cf" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 11, + "end": 13, + "value": "\u6d41\u91cf", + "entity": "item" + }, + { + "start": 7, + "end": 9, + "value": "\u4e00\u6708", + "entity": "time" + } + ], + "text": "\u4f60\u5e2e\u6211\u67e5\u770b\u4e00\u4e0b\u4e00\u6708\u6211\u7684\u6d41\u91cf" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 12, + "end": 14, + "value": "\u6d41\u91cf", + "entity": "item" + }, + { + "start": 9, + "end": 11, + "value": "\u5f53\u6708", + "entity": "time" + } + ], + "text": "\u6069\u4f60\u597d\u554a\u7ed9\u6211\u67e5\u67e5\u6211\u5f53\u6708\u7684\u6d41\u91cf" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 13, + "end": 15, + "value": "\u6d41\u91cf", + "entity": "item" + }, + { + "start": 9, + "end": 12, + "value": "\u8fd9\u4e2a\u6708", + "entity": "time" + } + ], + "text": "\u55ef\u4f60\u597d\u554a\u7ed9\u6211\u67e5\u67e5\u6211\u8fd9\u4e2a\u6708\u7684\u6d41\u91cf" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 9, + "end": 11, + "value": "\u8bdd\u8d39", + "entity": "item" + }, + { + "start": 16, + "end": 19, + "value": "\u8fd9\u4e2a\u6708", + "entity": "time" + } + ], + "text": "\u6069\u4f60\u597d\u554a\u7ed9\u6211\u67e5\u67e5\u6211\u8bdd\u8d39\u7684\u4f7f\u7528\u60c5\u51b5\u8fd9\u4e2a\u6708\u7684" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 10, + "end": 12, + "value": "\u8bdd\u8d39", + "entity": "item" + }, + { + "start": 5, + "end": 8, + "value": "\u8fd9\u4e2a\u6708", + "entity": "time" + } + ], + "text": "\u6211\u60f3\u770b\u4e00\u4e0b\u8fd9\u4e2a\u6708\u4efd\u7684\u8bdd\u8d39" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 14, + "end": 15, + "value": "\u94b1", + "entity": "item" + }, + { + "start": 6, + "end": 9, + "value": "\u8fd9\u4e2a\u6708", + "entity": "time" + } + ], + "text": "\u80fd\u4e0d\u80fd\u770b\u4e0b\u6211\u8fd9\u4e2a\u6708\u7684\u8fd8\u5269\u591a\u5c11\u94b1" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 4, + "end": 6, + "value": "\u8bdd\u8d39", + "entity": "item" + }, + { + "start": 10, + "end": 13, + "value": "\u8fd9\u4e2a\u6708", + "entity": "time" + } + ], + "text": "\u90a3\u4e2a\u6211\u7684\u8bdd\u8d39\u8fd8\u6709\u591a\u5c11\u8fd9\u4e2a\u6708" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 7, + "end": 9, + "value": "\u4e09\u6708", + "entity": "time" + } + ], + "text": "\u4f60\u80fd\u7ed9\u6211\u770b\u4e0b\u6211\u4e09\u6708\u4efd\u6d88\u8d39\u591a\u5c11\u4e86\u5417" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 10, + "end": 12, + "value": "\u8bdd\u8d39", + "entity": "item" + }, + { + "start": 6, + "end": 9, + "value": "\u8fd9\u4e2a\u6708", + "entity": "time" + } + ], + "text": "\u6211\u60f3\u77e5\u9053\u6211\u7684\u8fd9\u4e2a\u6708\u7684\u8bdd\u8d39\u55ef\u55ef" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 7, + "end": 9, + "value": "\u4e09\u6708", + "entity": "time" + } + ], + "text": "\u4f60\u80fd\u7ed9\u6211\u770b\u4e0b\u6211\u4e09\u6708\u4efd\u7684\u6d88\u8d39\u591a\u5c11\u4e86\u5417" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 14, + "end": 16, + "value": "\u8bdd\u8d39", + "entity": "item" + }, + { + "start": 6, + "end": 8, + "value": "\u4e00\u6708", + "entity": "time" + } + ], + "text": "\u6211\u60f3\u95ee\u4e00\u4e0b\u6211\u4e00\u6708\u4efd\u662f\u7528\u4e86\u591a\u5c11\u8bdd\u8d39" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 10, + "end": 12, + "value": "\u6d88\u8d39", + "entity": "item" + }, + { + "start": 7, + "end": 9, + "value": "\u4e09\u6708", + "entity": "time" + } + ], + "text": "\u5e2e\u6211\u67e5\u4e00\u4e0b\u6211\u7684\u4e09\u6708\u7684\u6d88\u8d39\u591a\u5c11" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 11, + "end": 13, + "value": "\u6d88\u8d39", + "entity": "item" + }, + { + "start": 7, + "end": 9, + "value": "\u4e09\u6708", + "entity": "time" + } + ], + "text": "\u5e2e\u6211\u67e5\u4e00\u4e0b\u6211\u7684\u4e09\u6708\u4efd\u7684\u6d88\u8d39\u591a\u5c11" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 11, + "end": 12, + "value": "\u94b1", + "entity": "item" + }, + { + "start": 3, + "end": 5, + "value": "\u4e09\u6708", + "entity": "time" + } + ], + "text": "\u67e5\u4e0b\u6211\u4e09\u6708\u4efd\u7684\u7528\u4e86\u591a\u5c11\u94b1" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 11, + "end": 13, + "value": "\u6d88\u8d39", + "entity": "item" + }, + { + "start": 5, + "end": 7, + "value": "\u4e09\u6708", + "entity": "time" + } + ], + "text": "\u90a3\u4e2a\u8bf7\u95ee\u6211\u4e09\u6708\u4efd\u7684\u4e00\u5171\u6d88\u8d39\u591a\u5c11" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 18, + "end": 20, + "value": "\u6d88\u8d39", + "entity": "item" + }, + { + "start": 6, + "end": 17, + "value": "18810397783", + "entity": "phone_number" + } + ], + "text": "\u8bf7\u5e2e\u6211\u67e5\u4e00\u4e0b18810397783\u7684\u8bdd\u8d39" + }, + { + "intent": "request_search", + "entities": [ + { + "start": 10, + "end": 12, + "value": "\u6d88\u8d39", + "entity": "item" + }, + { + "start": 6, + "end": 9, + "value": "110", + "entity": "phone_number" + } + ], + "text": "\u8bf7\u5e2e\u6211\u67e5\u4e00\u4e0b110\u7684\u8bdd\u8d39" + }, + { + "intent": "inform_time", + "entities": [ + { + "start": 0, + "end": 2, + "value": "\u4e00\u6708", + "entity": "time" + } + ], + "text": "\u4e00\u6708" + }, + { + "intent": "inform_time", + "entities": [ + { + "start": 0, + "end": 2, + "value": "\u4e00\u6708", + "entity": "time" + } + ], + "text": "\u4e00\u6708\u7684" + }, + { + "intent": "inform_time", + "entities": [ + { + "start": 1, + "end": 3, + "value": "\u4e00\u6708", + "entity": "time" + } + ], + "text": "\u662f\u4e00\u6708\u7684" + }, + { + "intent": "inform_time", + "entities": [ + { + "start": 0, + "end": 2, + "value": "\u4e00\u6708", + "entity": "time" + } + ], + "text": "\u4e00\u6708" + }, + { + "intent": "inform_time", + "entities": [ + { + "start": 0, + "end": 2, + "value": "\u4e0a\u6708", + "entity": "time" + } + ], + "text": "\u4e0a\u6708\u7684" + }, + { + "intent": "inform_time", + "entities": [ + { + "start": 0, + "end": 3, + "value": "\u4e0a\u4e2a\u6708", + "entity": "time" + } + ], + "text": "\u4e0a\u4e2a\u6708\u7684" + }, + { + "intent": "inform_time", + "entities": [ + { + "start": 0, + "end": 2, + "value": "\u4e8c\u6708", + "entity": "time" + } + ], + "text": "\u4e8c\u6708" + }, + { + "intent": "inform_time", + "entities": [ + { + "start": 0, + "end": 2, + "value": "\u4e8c\u6708", + "entity": "time" + } + ], + "text": "\u4e8c\u6708\u7684" + }, + { + "intent": "inform_time", + "entities": [ + { + "start": 1, + "end": 3, + "value": "\u4e8c\u6708", + "entity": "time" + } + ], + "text": "\u662f\u4e8c\u6708\u7684" + }, + { + "intent": "inform_time", + "entities": [ + { + "start": 0, + "end": 2, + "value": "\u4e8c\u6708", + "entity": "time" + } + ], + "text": "\u4e8c\u6708" + }, + { + "intent": "inform_time", + "entities": [], + "text": "\u4e09\u6708\u4efd" + }, + { + "intent": "inform_time", + "entities": [], + "text": "\u4e09\u6708\u7684" + }, + { + "intent": "inform_time", + "entities": [ + { + "start": 0, + "end": 3, + "value": "\u5341\u4e00\u6708", + "entity": "time" + } + ], + "text": "\u5341\u4e00\u6708" + }, + { + "intent": "inform_time", + "entities": [ + { + "start": 0, + "end": 3, + "value": "\u5341\u4e00\u6708", + "entity": "time" + } + ], + "text": "\u5341\u4e00\u6708\u7684" + }, + { + "intent": "inform_time", + "entities": [ + { + "start": 1, + "end": 4, + "value": "\u5341\u4e00\u6708", + "entity": "time" + } + ], + "text": "\u662f\u5341\u4e00\u6708\u7684" + }, + { + "intent": "inform_time", + "entities": [ + { + "start": 0, + "end": 3, + "value": "\u5341\u4e00\u6708", + "entity": "time" + } + ], + "text": "\u5341\u4e00\u6708" + }, + { + "intent": "inform_time", + "entities": [ + { + "start": 0, + "end": 2, + "value": "\u4e0a\u6708", + "entity": "time" + } + ], + "text": "\u4e0a\u6708\u7684" + }, + { + "intent": "inform_time", + "entities": [ + { + "start": 0, + "end": 3, + "value": "\u4e00\u6708\u4efd", + "entity": "time" + } + ], + "text": "\u4e00\u6708\u4efd" + }, + { + "intent": "inform_time", + "entities": [ + { + "start": 0, + "end": 2, + "value": "\u672c\u6708", + "entity": "time" + } + ], + "text": "\u672c\u6708\u7684" + }, + { + "intent": "inform_time", + "entities": [], + "text": "\u5341\u4e00\u4efd\u6708\u7684\u5427" + }, + { + "intent": "inform_item", + "entities": [ + { + "start": 0, + "end": 2, + "value": "\u8bdd\u8d39", + "entity": "item" + } + ], + "text": "\u8bdd\u8d39" + }, + { + "intent": "inform_item", + "entities": [ + { + "start": 0, + "end": 2, + "value": "\u6d88\u8d39", + "entity": "item" + } + ], + "text": "\u6d88\u8d39" + }, + { + "intent": "inform_item", + "entities": [ + { + "start": 0, + "end": 2, + "value": "\u6d41\u91cf", + "entity": "item" + } + ], + "text": "\u6d41\u91cf" + }, + { + "intent": "inform_item", + "entities": [ + { + "start": 0, + "end": 2, + "value": "\u8bdd\u8d39", + "entity": "item" + } + ], + "text": "\u8bdd\u8d39\u5427" + }, + { + "intent": "inform_item", + "entities": [ + { + "start": 1, + "end": 3, + "value": "\u6d88\u8d39", + "entity": "item" + } + ], + "text": "\u662f\u6d88\u8d39" + }, + { + "intent": "inform_item", + "entities": [ + { + "start": 0, + "end": 2, + "value": "\u6d41\u91cf", + "entity": "item" + } + ], + "text": "\u6d41\u91cf\u5c31\u884c" + }, + { + "intent": "inform_package", + "entities": [ + { + "start": 0, + "end": 3, + "value": "\u5957\u9910\u4e00", + "entity": "item" + } + ], + "text": "\u5957\u9910\u4e00\u5427" + }, + { + "intent": "inform_package", + "entities": [ + { + "start": 0, + "end": 3, + "value": "\u5957\u9910\u4e00", + "entity": "item" + } + ], + "text": "\u5957\u9910\u4e00" + }, + { + "intent": "inform_package", + "entities": [ + { + "start": 0, + "end": 3, + "value": "\u5957\u9910\u4e8c", + "entity": "item" + } + ], + "text": "\u5957\u9910\u4e8c" + }, + { + "intent": "inform_package", + "entities": [ + { + "start": 0, + "end": 3, + "value": "\u5957\u9910\u4e09", + "entity": "item" + } + ], + "text": "\u5957\u9910\u4e09\u5c31\u597d" + }, + { + "intent": "request_management", + "entities": [ + { + "start": 5, + "end": 7, + "value": "\u6d41\u91cf", + "entity": "item" + } + ], + "text": "\u7ed9\u6211\u529e\u4e00\u4e0b\u6d41\u91cf\u5957\u9910" + }, + { + "intent": "request_management", + "entities": [ + { + "start": 3, + "end": 5, + "value": "\u6d41\u91cf", + "entity": "item" + } + ], + "text": "\u6211\u60f3\u529e\u6d41\u91cf\u5957\u9910" + }, + { + "intent": "request_management", + "entities": [ + { + "start": 6, + "end": 8, + "value": "\u6d41\u91cf", + "entity": "item" + } + ], + "text": "\u6211\u60f3\u5f00\u4e00\u4e2a\u65b0\u6d41\u91cf\u5957\u9910" + }, + { + "intent": "request_management", + "entities": [ + { + "start": 6, + "end": 8, + "value": "\u6d41\u91cf", + "entity": "item" + } + ], + "text": "\u7ed9\u6211\u529e\u4e00\u4e2a\u65b0\u6d41\u91cf\u4e1a\u52a1" + }, + { + "intent": "request_management", + "entities": [ + { + "start": 9, + "end": 11, + "value": "\u6d41\u91cf", + "entity": "item" + }, + { + "start": 5, + "end": 7, + "value": "\u4fbf\u5b9c", + "entity": "price" + } + ], + "text": "\u7ed9\u6211\u529e\u4e00\u4e0b\u4fbf\u5b9c\u70b9\u7684\u6d41\u91cf\u5957\u9910" + }, + { + "intent": "request_management", + "entities": [ + { + "start": 7, + "end": 9, + "value": "\u6d41\u91cf", + "entity": "item" + }, + { + "start": 3, + "end": 6, + "value": "\u4e8c\u5341\u516b", + "entity": "price" + } + ], + "text": "\u6211\u60f3\u529e\u4e8c\u5341\u516b\u7684\u6d41\u91cf\u5957\u9910" + }, + { + "intent": "request_management", + "entities": [ + { + "start": 9, + "end": 11, + "value": "\u6d41\u91cf", + "entity": "item" + }, + { + "start": 5, + "end": 7, + "value": "\u5408\u9002", + "entity": "price" + } + ], + "text": "\u6211\u60f3\u5f00\u4e00\u4e2a\u5408\u9002\u7684\u65b0\u6d41\u91cf\u5957\u9910" + }, + { + "intent": "request_management", + "entities": [ + { + "start": 4, + "value": "\u6d41\u91cf", + "end": 6, + "entity": "item" + } + ], + "text": "\u7ed9\u6211\u529e\u7406\u6d41\u91cf\u4e1a\u52a1" + }, + { + "intent": "request_management", + "entities": [ + { + "start": 4, + "value": "\u6d41\u91cf", + "end": 6, + "entity": "item" + } + ], + "text": "\u7ed9\u6211\u529e\u7406\u6d41\u91cf" + }, + { + "intent": "request_management", + "entities": [ + { + "start": 10, + "end": 12, + "value": "\u6d41\u91cf", + "entity": "item" + }, + { + "start": 5, + "end": 7, + "value": "\u4e09\u5341", + "entity": "price" + } + ], + "text": "\u7ed9\u6211\u529e\u4e00\u4e2a\u4e09\u5341\u7684\u65b0\u6d41\u91cf\u4e1a\u52a1" + }, + { + "intent": "inform_current_phone", + "entities": [], + "text": "\u672c\u673a\u7684" + }, + { + "intent": "inform_current_phone", + "entities": [], + "text": "\u81ea\u5df1\u7684\u53f7\u7801" + }, + { + "intent": "inform_current_phone", + "entities": [], + "text": "\u6211\u81ea\u5df1\u7684" + }, + { + "intent": "inform_current_phone", + "entities": [], + "text": "\u672c\u673a" + }, + { + "intent": "inform_current_phone", + "entities": [], + "text": "\u6211\u67e5\u672c\u673a\u7684" + }, + { + "intent": "inform_current_phone", + "entities": [], + "text": "\u67e5\u672c\u673a" + }, + { + "intent": "inform_current_phone", + "entities": [], + "text": "\u8fd9\u4e2a\u624b\u673a\u7684" + }, + { + "intent": "inform_other_phone", + "entities": [], + "text": "\u5176\u4ed6\u7684" + }, + { + "intent": "inform_other_phone", + "entities": [], + "text": "\u5176\u4ed6\u53f7\u7801\u7684" + }, + { + "intent": "inform_other_phone", + "entities": [], + "text": "\u4e0d\u662f\u672c\u673a\u7684" + }, + { + "intent": "inform_other_phone", + "entities": [], + "text": "\u522b\u7684\u53f7\u7801\u7684" + }, + { + "intent": "inform_other_phone", + "entities": [], + "text": "\u522b\u7684" + }, + { + "intent": "inform_other_phone", + "entities": [], + "text": "\u5176\u4ed6\u53f7\u7801" + }, + { + "intent": "inform_other_phone", + "entities": [], + "text": "\u975e\u672c\u673a\u53f7\u7801" + }, + { + "intent": "greet", + "entities": [], + "text": "\u4f60\u597d" + }, + { + "intent": "greet", + "entities": [], + "text": "\u60a8\u597d" + }, + { + "intent": "greet", + "entities": [], + "text": "\u60a8\u597d\u5417" + }, + { + "intent": "greet", + "entities": [], + "text": "\u55e8" + }, + { + "intent": "greet", + "entities": [], + "text": "\u4f60\u662f\u8c01" + }, + { + "intent": "greet", + "entities": [], + "text": "\u60a8\u662f" + }, + { + "intent": "greet", + "entities": [], + "text": "\u4f60\u662f\u54ea\u4e2a" + }, + { + "intent": "greet", + "entities": [], + "text": "\u5582" + }, + { + "intent": "goodbye", + "entities": [], + "text": "\u518d\u89c1" + }, + { + "intent": "goodbye", + "entities": [], + "text": "\u62dc\u62dc" + }, + { + "intent": "goodbye", + "entities": [], + "text": "\u5f88\u9ad8\u5174\u548c\u4f60\u8bf4\u8bdd" + }, + { + "intent": "confirm", + "entities": [], + "text": "\u55ef" + }, + { + "intent": "confirm", + "entities": [], + "text": "\u597d\u7684" + }, + { + "intent": "confirm", + "entities": [], + "text": "\u884c" + }, + { + "intent": "confirm", + "entities": [], + "text": "\u53ef\u4ee5\u7684" + }, + { + "intent": "confirm", + "entities": [], + "text": "\u6069" + }, + { + "intent": "confirm", + "entities": [], + "text": "\u4e2d\u4e2d" + }, + { + "intent": "confirm", + "entities": [], + "text": "\u4e2d" + }, + { + "intent": "confirm", + "entities": [], + "text": "\u529e\u5427" + }, + { + "intent": "confirm", + "entities": [], + "text": "\u529e\u7406\u5427" + }, + { + "intent": "confirm", + "entities": [], + "text": "\u884c\u7684" + }, + { + "intent": "confirm", + "entities": [], + "text": "\u6ca1\u95ee\u9898" + }, + { + "intent": "thanks", + "entities": [], + "text": "\u8c22\u8c22" + }, + { + "intent": "thanks", + "entities": [], + "text": "\u8c22\u8c22\u60a8" + }, + { + "intent": "thanks", + "entities": [], + "text": "\u8c22\u8c22\u4f60" + }, + { + "intent": "thanks", + "entities": [], + "text": "\u975e\u5e38\u611f\u8c22" + }, + { + "intent": "thanks", + "entities": [], + "text": "\u8c22\u8c22\u554a" + }, + { + "intent": "thanks", + "entities": [], + "text": "\u8c22\u4e86" + }, + { + "intent": "deny", + "entities": [], + "text": "\u4e0d\u8981" + }, + { + "intent": "deny", + "entities": [], + "text": "\u4e0d\u9700\u8981" + }, + { + "intent": "deny", + "entities": [], + "text": "\u4e0d\u8981\u529e" + }, + { + "intent": "deny", + "entities": [], + "text": "\u4e0d\u529e" + }, + { + "intent": "deny", + "entities": [], + "text": "\u6682\u65f6\u4e0d\u8981\u4e86" + }, + { + "intent": "deny", + "entities": [], + "text": "\u4e0d\u662f" + }, + { + "intent": "deny", + "entities": [], + "text": "\u6709\u95ee\u9898" + }, + { + "intent": "deny", + "entities": [], + "text": "\u6211\u518d\u8003\u8651\u8003\u8651" + }, + { + "intent": "deny", + "entities": [], + "text": "\u4e0d\u597d\u5566" + }, + { + "intent": "deny", + "entities": [], + "text": "\u4e0d\u884c" + }, + { + "intent": "deny", + "entities": [], + "text": "\u4e0d\u53ef\u4ee5\u7684" + }, + { + "intent": "deny", + "entities": [], + "text": "\u4e0d\u4e2d" + }, + { + "intent": "deny", + "entities": [], + "text": "\u4e0d\u53ef\u4ee5" + }, + { + "intent": "deny", + "entities": [], + "text": "\u6ca1\u4e86" + }, + { + "intent": "deny", + "entities": [], + "text": "\u6ca1\u6709\u4e86" + }, + { + "intent": "deny", + "entities": [], + "text": "\u4e0d\u7528\u4e86" + }, + { + "intent": "deny", + "entities": [], + "text": "\u6682\u65f6\u4e0d\u7528\u4e86" + }, + { + "intent": "deny", + "entities": [], + "text": "\u597d\u7684\u6ca1\u4e86" + }, + { + "intent": "deny", + "entities": [], + "text": "\u597d\u4e0d\u7528\u4e86" + }, + { + "intent": "unknown_intent", + "entities": [], + "text": "=" + }, + { + "intent": "unknown_intent", + "entities": [], + "text": "&" + }, + { + "intent": "unknown_intent", + "entities": [], + "text": "\u5403\u996d" + } + ], + "regex_features": [], + "entity_synonyms": [ + { + "value": "\u6d88\u8d39", + "synonyms": [ + "\u8bdd\u8d39", + "\u94b1" + ] + } + ] + } +} \ No newline at end of file