You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert

65
-
66
-
These entities will help you add name and place recognition to your client application.
63
+
This entity will help you add place recognition to your client application.
67
64
68
65
## Add example utterances to the None intent
69
66
@@ -81,79 +78,83 @@ LUIS provides several prebuilt entities for common data extraction.
81
78
82
79
1.[!INCLUDE [LUIS How to get endpoint first step](../../../includes/cognitive-services-luis-tutorial-how-to-get-endpoint.md)]
83
80
84
-
1. Go to the end of the URL in the browser address bar and enter `I want to cancel my trip to Seattle to see Bob Smith`. The last query string parameter is `q`, the utterance **query**.
81
+
1. Go to the end of the URL in the browser address bar and enter `I want to cancel my trip to Seattle`. The last query string parameter is `q`, the utterance **query**.
85
82
86
83
```json
87
84
{
88
-
"query": "I want to cancel my trip to Seattle to see Bob Smith.",
85
+
"query": "I want to cancel my trip to Seattle",
89
86
"topScoringIntent": {
90
-
"intent": "Utilities.ReadAloud",
91
-
"score": 0.100361854
87
+
"intent": "Utilities.Cancel",
88
+
"score": 0.1055009
92
89
},
93
90
"intents": [
94
91
{
95
-
"intent": "Utilities.ReadAloud",
96
-
"score": 0.100361854
92
+
"intent": "Utilities.Cancel",
93
+
"score": 0.1055009
97
94
},
98
95
{
99
-
"intent": "Utilities.Stop",
100
-
"score": 0.08102781
96
+
"intent": "Utilities.SelectItem",
97
+
"score": 0.02659072
101
98
},
102
99
{
103
-
"intent": "Utilities.SelectNone",
104
-
"score": 0.0398852825
100
+
"intent": "Utilities.Stop",
101
+
"score": 0.0253379084
105
102
},
106
103
{
107
-
"intent": "Utilities.Cancel",
108
-
"score": 0.0277276486
104
+
"intent": "Utilities.ReadAloud",
105
+
"score": 0.02528683
109
106
},
110
107
{
111
-
"intent": "Utilities.SelectItem",
112
-
"score": 0.0220712926
108
+
"intent": "Utilities.SelectNone",
109
+
"score": 0.02434013
113
110
},
114
111
{
115
-
"intent": "Utilities.StartOver",
116
-
"score": 0.0145813478
112
+
"intent": "Utilities.Escalate",
113
+
"score": 0.009161292
117
114
},
118
115
{
119
-
"intent": "None",
120
-
"score": 0.012434179
116
+
"intent": "Utilities.Help",
117
+
"score": 0.006861785
121
118
},
122
119
{
123
-
"intent": "Utilities.Escalate",
124
-
"score": 0.0122632384
120
+
"intent": "Utilities.StartOver",
121
+
"score": 0.00633448
125
122
},
126
123
{
127
124
"intent": "Utilities.ShowNext",
128
-
"score": 0.008534077
125
+
"score": 0.0053827134
126
+
},
127
+
{
128
+
"intent": "None",
129
+
"score": 0.002602003
129
130
},
130
131
{
131
132
"intent": "Utilities.ShowPrevious",
132
-
"score": 0.00547111453
133
+
"score": 0.001797354
133
134
},
134
135
{
135
136
"intent": "Utilities.SelectAny",
136
-
"score": 0.00152912608
137
+
"score": 0.000831930141
137
138
},
138
139
{
139
140
"intent": "Utilities.Repeat",
140
-
"score": 0.0005556819
141
-
},
142
-
{
143
-
"intent": "Utilities.FinishTask",
144
-
"score": 0.000169488427
141
+
"score": 0.0006924066
145
142
},
146
143
{
147
144
"intent": "Utilities.Confirm",
148
-
"score": 0.000149565312
145
+
"score": 0.000606057351
149
146
},
150
147
{
151
148
"intent": "Utilities.GoBack",
152
-
"score": 0.000141017343
149
+
"score": 0.000276725681
150
+
},
151
+
{
152
+
"intent": "Utilities.FinishTask",
153
+
"score": 0.000267822179
153
154
},
154
155
{
155
156
"intent": "Utilities.Reject",
156
-
"score": 6.27324E-06
157
+
"score": 3.21784828E-05
157
158
}
158
159
],
159
160
"entities": [
@@ -162,18 +163,12 @@ LUIS provides several prebuilt entities for common data extraction.
162
163
"type": "builtin.geographyV2.city",
163
164
"startIndex": 28,
164
165
"endIndex": 34
165
-
},
166
-
{
167
-
"entity": "bob smith",
168
-
"type": "builtin.personName",
169
-
"startIndex": 43,
170
-
"endIndex": 51
171
166
}
172
167
]
173
168
}
174
169
```
175
170
176
-
The result predicted the Utilities.Cancel intent with 80% confidence and extracted the city and person name data.
171
+
The result predicted the Utilities.Cancel intent with 80% confidence and extracted the city data.
0 commit comments