-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhowmany.aiml
267 lines (267 loc) · 9.2 KB
/
howmany.aiml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
<?xml version="1.0" encoding="UTF-8"?>
<aiml>
<category><pattern>HOW MANY LEGS DOES * HAVE</pattern>
<template><srai>how many legs do<star/>have</srai></template>
</category>
<category><pattern>HOW MANY LEGS WOULD * HAVE</pattern>
<template><srai>how many legs do<star/>have</srai></template>
</category>
<category><pattern>HOW MANY LEGS SHOULD * HAVE</pattern>
<template><srai>how many legs do<star/>have</srai></template>
</category>
<category><pattern>HOW MANY LEGS WILL * HAVE</pattern>
<template><srai>how many legs do<star/>have</srai></template>
</category>
<category><pattern>HOW MANY LEGS ON *</pattern>
<template><srai>how many legs do<star/>have</srai></template>
</category>
<category><pattern>HOW MANY LEGS DO * HAVE</pattern>
<template>Four would seem a good number of legs for<person/>at a guess.</template>
</category>
<category><pattern>HOW MANY LEGS _ HAVE *</pattern>
<template><srai>how many legs<star/>have</srai></template>
</category>
<category><pattern>HOW MANY LEGS DO * CENTIPEDES HAVE</pattern>
<template><srai>XLEGS <star/>centipedes</srai>I would imagine.</template>
</category>
<category><pattern>HOW MANY LEGS DO * MILLIPEDES HAVE</pattern>
<template><srai>XLEGS <star/>millipedes</srai>I would imagine.</template>
</category>
<category><pattern>HOW MANY LEGS DO TWO * HAVE</pattern>
<template>I would guess that two<person/>have<srai>XLEGS TWO<star/></srai>legs between them?</template>
</category>
<category><pattern>HOW MANY LEGS DO THREE * HAVE</pattern>
<template>I think three<person/>have<srai>XLEGS THREE<star/></srai>legs?</template>
</category>
<category><pattern>HOW MANY LEGS DO FOUR * HAVE</pattern>
<template>Probably, four<person/>would have<srai>XLEGS FOUR<star/></srai>legs?</template>
</category>
<category><pattern>HOW MANY LEGS DO FIVE * HAVE</pattern>
<template>Five of them will have<srai>XLEGS FIVE<star/></srai>legs, I think?</template>
</category>
<category><pattern>HOW MANY LEGS DO 2 * HAVE</pattern>
<template><srai>how many legs do two<star/>have</srai></template>
</category>
<category><pattern>HOW MANY LEGS DO 3 * HAVE</pattern>
<template><srai>how many legs do three<star/>have</srai></template>
</category>
<category><pattern>HOW MANY LEGS DO 4 * HAVE</pattern>
<template><srai>how many legs do four<star/>have</srai></template>
</category>
<category><pattern>HOW MANY LEGS DO 5 * HAVE</pattern>
<template><srai>how many legs do five<star/>have</srai></template>
</category>
<category><pattern>XLEGS *</pattern>
<template>a lot of</template>
</category>
<category><pattern>XLEGS TWO *</pattern>
<template>eight</template>
</category>
<category><pattern>XLEGS THREE *</pattern>
<template>twelve</template>
</category>
<category><pattern>XLEGS FOUR *</pattern>
<template>sixteen</template>
</category>
<category><pattern>XLEGS FIVE *</pattern>
<template>twenty</template>
</category>
<category><pattern>XLEGS TWO BIRDS</pattern>
<template>four</template>
</category>
<category><pattern>XLEGS THREE BIRDS</pattern>
<template>six</template>
</category>
<category><pattern>XLEGS FOUR BIRDS</pattern>
<template>eight</template>
</category>
<category><pattern>XLEGS FIVE BIRDS</pattern>
<template>ten</template>
</category>
<category><pattern>XLEGS TWO PEOPLE</pattern>
<template>four</template>
</category>
<category><pattern>XLEGS THREE PEOPLE</pattern>
<template>six</template>
</category>
<category><pattern>XLEGS FOUR PEOPLE</pattern>
<template>eight</template>
</category>
<category><pattern>XLEGS FIVE PEOPLE</pattern>
<template>ten</template>
</category>
<category><pattern>XLEGS _ MEN</pattern>
<template><srai>XLEGS<star/>people</srai></template>
</category>
<category><pattern>XLEGS _ WOMEN</pattern>
<template><srai>XLEGS<star/>people</srai></template>
</category>
<category><pattern>XLEGS _ BOYS</pattern>
<template><srai>XLEGS<star/>people</srai></template>
</category>
<category><pattern>XLEGS _ GIRLS</pattern>
<template><srai>XLEGS<star/>people</srai></template>
</category>
<category><pattern>XLEGS _ CHILDREN</pattern>
<template><srai>XLEGS<star/>people</srai></template>
</category>
<category><pattern>XLEGS _ OSTRICHES</pattern>
<template><srai>XLEGS<star/>birds</srai></template>
</category>
<category><pattern>XLEGS _ EAGLES</pattern>
<template><srai>XLEGS<star/>birds</srai></template>
</category>
<category><pattern>XLEGS _ CHICKENS</pattern>
<template><srai>XLEGS<star/>birds</srai></template>
</category>
<category><pattern>XLEGS _ DUCKS</pattern>
<template><srai>XLEGS<star/>birds</srai></template>
</category>
<category><pattern>XLEGS TWO INSECTS</pattern>
<template>twelve</template>
</category>
<category><pattern>XLEGS THREE INSECTS</pattern>
<template>eighteen</template>
</category>
<category><pattern>XLEGS FOUR INSECTS</pattern>
<template>twenty four</template>
</category>
<category><pattern>XLEGS FIVE INSECTS</pattern>
<template>thirty</template>
</category>
<category><pattern>XLEGS _ BEETLES</pattern>
<template><srai>XLEGS<star/>insects</srai></template>
</category>
<category><pattern>XLEGS _ ANTS</pattern>
<template><srai>XLEGS<star/>insects</srai></template>
</category>
<category><pattern>XLEGS _ BEES</pattern>
<template><srai>XLEGS<star/>insects</srai></template>
</category>
<category><pattern>XLEGS _ BUMBLEBEES</pattern>
<template><srai>XLEGS<star/>insects</srai></template>
</category>
<category><pattern>XLEGS _ CENTIPEDES</pattern>
<template><star/>hundred</template>
</category>
<category><pattern>XLEGS _ MILLIPEDES</pattern>
<template><star/>thousand</template>
</category>
<category><pattern>XLEGS TWO OCTOPUSES</pattern>
<template>sixteen</template>
</category>
<category><pattern>XLEGS THREE OCTOPUSES</pattern>
<template>twenty four</template>
</category>
<category><pattern>XLEGS FOUR OCTOPUSES</pattern>
<template>thirty two</template>
</category>
<category><pattern>XLEGS FIVE OCTOPUSES</pattern>
<template>forty</template>
</category>
<category><pattern>XLEGS _ OCTOPII</pattern>
<template><srai>XLEGS<star/>octopuses</srai></template>
</category>
<category><pattern>XLEGS _ OCTOPI</pattern>
<template><srai>XLEGS<star/>octopuses</srai></template>
</category>
<category><pattern>XLEGS _ SPIDERS</pattern>
<template><srai>XLEGS<star/>octopuses</srai></template>
</category>
<category><pattern>XLEGS _ SNAKES</pattern>
<template>no</template>
</category>
<category><pattern>XLEGS _ WORMS</pattern>
<template>no</template>
</category>
<category><pattern>XLEGS _ SNAILS</pattern>
<template>no</template>
</category>
<category><pattern>XLEGS _ FISH</pattern>
<template>no</template>
</category>
<category><pattern>XLEGS _ SHARKS</pattern>
<template>no</template>
</category>
<category><pattern>XLEGS _ WHALES</pattern>
<template>no</template>
</category>
<category><pattern>XLEGS _ FISHES</pattern>
<template>no</template>
</category>
<category><pattern>HOW MANY LEGS DOES A * BIRD HAVE</pattern>
<template>2 legs.</template>
</category>
<category><pattern>HOW MANY LEGS DOES A BIRD HAVE</pattern>
<template>2 legs.</template>
</category>
<category><pattern>HOW MANY LEGS DOES A PERSON HAVE</pattern>
<template>2 legs.</template>
</category>
<category><pattern>HOW MANY LEGS DOES A MAN HAVE</pattern>
<template>2 legs.</template>
</category>
<category><pattern>HOW MANY LEGS DOES A WOMAN HAVE</pattern>
<template>2 legs.</template>
</category>
<category><pattern>HOW MANY LEGS DOES A BOY HAVE</pattern>
<template>2 legs.</template>
</category>
<category><pattern>HOW MANY LEGS DOES A GIRL HAVE</pattern>
<template>2 legs.</template>
</category>
<category><pattern>HOW MANY LEGS DOES A CHILD HAVE</pattern>
<template>2 legs.</template>
</category>
<category><pattern>HOW MANY LEGS DOES AN OSTRICH HAVE</pattern>
<template>2 legs.</template>
</category>
<category><pattern>HOW MANY LEGS DOES AN EAGLE HAVE</pattern>
<template>2 legs.</template>
</category>
<category><pattern>HOW MANY LEGS DOES A CHICKEN HAVE</pattern>
<template>2 legs.</template>
</category>
<category><pattern>HOW MANY LEGS DOES A DUCK HAVE</pattern>
<template>2 legs.</template>
</category>
<category><pattern>HOW MANY LEGS DOES AN INSECT HAVE</pattern>
<template>6 legs.</template>
</category>
<category><pattern>HOW MANY LEGS DOES A BEETLE HAVE</pattern>
<template>6 legs.</template>
</category>
<category><pattern>HOW MANY LEGS DOES AN ANT HAVE</pattern>
<template>6 legs.</template>
</category>
<category><pattern>HOW MANY LEGS DOES A BEE HAVE</pattern>
<template>6 legs.</template>
</category>
<category><pattern>HOW MANY LEGS DOES A * BEE HAVE</pattern>
<template>6 legs.</template>
</category>
<category><pattern>HOW MANY LEGS DOES AN OCTOPUS HAVE</pattern>
<template>8 legs.</template>
</category>
<category><pattern>HOW MANY LEGS DOES A SPIDER HAVE</pattern>
<template>8 legs.</template>
</category>
<category><pattern>HOW MANY LEGS DOES A SNAKE HAVE</pattern>
<template>It doesn't have any legs.</template>
</category>
<category><pattern>HOW MANY LEGS DOES A WORM HAVE</pattern>
<template>It doesn't have any legs.</template>
</category>
<category><pattern>HOW MANY LEGS DOES A SNAIL HAVE</pattern>
<template>It doesn't have any legs.</template>
</category>
<category><pattern>HOW MANY LEGS DOES A FISH HAVE</pattern>
<template>It doesn't have any legs.</template>
</category>
<category><pattern>HOW MANY LEGS DOES A SHARK HAVE</pattern>
<template>It doesn't have any legs.</template>
</category>
<category><pattern>HOW MANY LEGS DOES A WHALE HAVE</pattern>
<template>It doesn't have any legs.</template>
</category>
</aiml>