-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathData.json
More file actions
3955 lines (3955 loc) · 139 KB
/
Data.json
File metadata and controls
3955 lines (3955 loc) · 139 KB
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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"rasa_nlu_data": {
"common_examples": [
{
"text": "who is the academy chair of design london sept community",
"intent": "Championrole_by_community",
"entities": []
},
{
"text": "who is the active chapter events officer of a alarma community",
"intent": "Championrole_by_community",
"entities": []
},
{
"text": "woh is th current chapter executive committee member of neus excellence awards chair community",
"intent": "Championrole_by_community",
"entities": []
},
{
"text": "woh is th latest chapter executive committee officer of neus region rising conference community",
"intent": "Championrole_by_community",
"entities": []
},
{
"text": "who was the current chapter mississippi education officer of a first class viking moving storage community",
"intent": "Championrole_by_community",
"entities": []
},
{
"text": "show me the current chapter tennessee membership officer of a t chadwick co inc community",
"intent": "Championrole_by_community",
"entities": []
},
{
"text": "shw me the current chapter tennessee state chair of a t kearney community",
"intent": "Championrole_by_community",
"entities": []
},
{
"text": "show the committee champion other of abc electric inc of des moines community",
"intent": "Championrole_by_community",
"entities": []
},
{
"text": "tell me about executive director emea asia pacific of abraham tsoukalidis household community",
"intent": "Championrole_by_community",
"entities": []
},
{
"text": "past international forum of accor hotels community",
"intent": "Championrole_by_community",
"entities": []
},
{
"text": "who is the past network past chair of adaptive micro systems community",
"intent": "Championrole_by_community",
"entities": []
},
{
"text": "current steering committee chair of avalchile seguros and pyme network",
"intent": "Championrole_by_community",
"entities": []
},
{
"text": "recently elected seminars of chana asdathorn household",
"intent": "Championrole_by_community",
"entities": []
},
{
"text": "whats all the detail about covice chair of the chapters and regions committee of investorside",
"intent": "Championrole_by_community",
"entities": []
},
{
"text": "what network roundtable officer of naor mann household",
"intent": "Championrole_by_community",
"entities": []
},
{
"text": "tell me the details about network spousal liaison of naresh kumra household",
"intent": "Championrole_by_community",
"entities": []
},
{
"text": "show me details from ypo poland gold community in education chairman",
"intent": "Championrole_by_community",
"entities": []
},
{
"text": "tel me about chair of the leadership committee of sergio gonzalez ramirezhousehold",
"intent": "Championrole_by_community",
"entities": []
},
{
"text": "who are academy chair of wapahani high school",
"intent": "Championrole_by_community",
"entities": []
},
{
"text": "give me details of design london sept in espoo",
"intent": "community_by_Location",
"entities": []
},
{
"text": "gie me details of a daigger company in lagos",
"intent": "community_by_Location",
"entities": []
},
{
"text": "details of a dalumi diamonds in laren",
"intent": "community_by_Location",
"entities": []
},
{
"text": "details about a r s inc in munro",
"intent": "community_by_Location",
"entities": []
},
{
"text": "pls list out the abc electric inc of des moines in covina",
"intent": "community_by_Location",
"entities": []
},
{
"text": "let me know the details of act government in claxton",
"intent": "community_by_Location",
"entities": []
},
{
"text": "sort out the adept global llc in moggill",
"intent": "community_by_Location",
"entities": []
},
{
"text": "view all the flexibly packaging assoc in mableton",
"intent": "community_by_Location",
"entities": []
},
{
"text": "please list out the james grace household in glenrock",
"intent": "community_by_Location",
"entities": []
},
{
"text": "memers list from the pen canada community in gladwyne",
"intent": "community_by_Location",
"entities": []
},
{
"text": "list of communites in warroad",
"intent": "community_by_Location",
"entities": []
},
{
"text": "list out the communities from w point",
"intent": "community_by_Location",
"entities": []
},
{
"text": "show communities from wailuku",
"intent": "community_by_Location",
"entities": []
},
{
"text": "show the communites from walcott",
"intent": "community_by_Location",
"entities": []
},
{
"text": "eventa hosted by design london sept",
"intent": "event_by_community",
"entities": []
},
{
"text": "eventa hosted by entrepreneurs",
"intent": "event_by_community",
"entities": []
},
{
"text": "show me the events by participacoes sa",
"intent": "event_by_community",
"entities": []
},
{
"text": "all the events hosted by yil isil community",
"intent": "event_by_community",
"entities": []
},
{
"text": "all the events hosted by ypo edge community",
"intent": "event_by_community",
"entities": []
},
{
"text": "new events goona hapen by a royale co community",
"intent": "event_by_community",
"entities": []
},
{
"text": "summer events conducted by aaa club alliance",
"intent": "event_by_community",
"entities": []
},
{
"text": "last event conducted by aaron emelhousehold community",
"intent": "event_by_community",
"entities": []
},
{
"text": "girls particiated event hosted by ab svenska shell",
"intent": "event_by_community",
"entities": []
},
{
"text": "events conducted by abilityfirst",
"intent": "event_by_community",
"entities": []
},
{
"text": "last evetns conducted buy acceleration partners llc",
"intent": "event_by_community",
"entities": []
},
{
"text": "show the evnts conducted by advertising association of pakistan",
"intent": "event_by_community",
"entities": []
},
{
"text": "events happend by alexander lee household",
"intent": "event_by_community",
"entities": []
},
{
"text": "sho the events conducted by advertising association of thailand",
"intent": "event_by_community",
"entities": []
},
{
"text": "events by all india distillers association",
"intent": "event_by_community",
"entities": []
},
{
"text": "lists of all events conducted by birla institute of technology",
"intent": "event_by_community",
"entities": []
},
{
"text": "party events hosted by gpi re group limited",
"intent": "event_by_community",
"entities": []
},
{
"text": "show me the events on november 2018",
"intent": "event_by_date",
"entities": []
},
{
"text": "list of events on november 2018",
"intent": "event_by_date",
"entities": []
},
{
"text": "eevnts on november 2018",
"intent": "event_by_date",
"entities": []
},
{
"text": "all the events on november 2018",
"intent": "event_by_date",
"entities": []
},
{
"text": "show me all the evnt s on november 2018",
"intent": "event_by_date",
"entities": []
},
{
"text": "show me when is the event happening on december 2018",
"intent": "event_by_date",
"entities": []
},
{
"text": "when is the next event happen january 2020",
"intent": "event_by_date",
"entities": []
},
{
"text": "when is the next evnt happn january",
"intent": "event_by_date",
"entities": []
},
{
"text": "can you show all the events on february",
"intent": "event_by_date",
"entities": []
},
{
"text": "list all events on 2017",
"intent": "event_by_date",
"entities": []
},
{
"text": "list of all the events during 2018",
"intent": "event_by_date",
"entities": []
},
{
"text": "show me events on sunday",
"intent": "event_by_date",
"entities": []
},
{
"text": "show me the upcoming events in august",
"intent": "event_by_date",
"entities": []
},
{
"text": "show me al evnt happening on december 2018",
"intent": "event_by_date",
"entities": []
},
{
"text": "event on past january 2019",
"intent": "event_by_date",
"entities": []
},
{
"text": "upcoming events on nov",
"intent": "event_by_date",
"entities": []
},
{
"text": "details about general michael hayden happen in sep",
"intent": "event_by_date",
"entities": []
},
{
"text": "list the uae presidents programme authentic leadership scott snook october 2020",
"intent": "event_by_date",
"entities": []
},
{
"text": "events in the public theatre",
"intent": "event_by_location",
"entities": []
},
{
"text": "evnets in 29 b green avenue vasant kunj",
"intent": "event_by_location",
"entities": []
},
{
"text": "evsns in the hong kong jockey club",
"intent": "event_by_location",
"entities": []
},
{
"text": "event at lifemoves haven family house",
"intent": "event_by_location",
"entities": []
},
{
"text": "evnt at dallas arboretum botanical garden ",
"intent": "event_by_location",
"entities": []
},
{
"text": "evenet at winnipeg manitoba canada",
"intent": "event_by_location",
"entities": []
},
{
"text": "evenet at the country club woodmead",
"intent": "event_by_location",
"entities": []
},
{
"text": "what are the events in pereyaslovkhmelnytskyi",
"intent": "event_by_location",
"entities": []
},
{
"text": "ht are the events in lower parel",
"intent": "event_by_location",
"entities": []
},
{
"text": "what upcoming events in jackie cameron school of food and wine",
"intent": "event_by_location",
"entities": []
},
{
"text": "events that happen in huntsville unit",
"intent": "event_by_location",
"entities": []
},
{
"text": "event happened at alice smith secondary schoolequine park",
"intent": "event_by_location",
"entities": []
},
{
"text": "when do the event took place at the metropolitan willis tower",
"intent": "event_by_location",
"entities": []
},
{
"text": "today events in walt disney studios sony pictures releasing office",
"intent": "event_by_location",
"entities": []
},
{
"text": "present events at salon social calle apolonio morales 17",
"intent": "event_by_location",
"entities": []
},
{
"text": "list of all upcoming template yng nonchapter responsive template dnd 1jul19 at como cuisine",
"intent": "event_by_location",
"entities": []
},
{
"text": "see upcoming ypooc spousalpartner dine around dinner happened at johannisstrasse 3 berlinmitte",
"intent": "event_by_location",
"entities": []
},
{
"text": "check all upcming connected couples stay committed occured at the united nations",
"intent": "event_by_location",
"entities": []
},
{
"text": "find all womens networking luncheon hosted by lauren hitchman occur at hilton hotel durban",
"intent": "event_by_location",
"entities": []
},
{
"text": "members from deal network community",
"intent": "member_by_community",
"entities": []
},
{
"text": "please diplay the members from keystone bank community",
"intent": "member_by_community",
"entities": []
},
{
"text": "pls show the members from ypo hyderabad integrated community",
"intent": "member_by_community",
"entities": []
},
{
"text": "member in university of arts london community",
"intent": "member_by_community",
"entities": []
},
{
"text": "active members from abdulrahman algosaibi household community",
"intent": "member_by_community",
"entities": []
},
{
"text": "who are all the active current members from adani infrastructure developers private ltd community",
"intent": "member_by_community",
"entities": []
},
{
"text": "who were the membrer from graduate schoolisvevyfu community",
"intent": "member_by_community",
"entities": []
},
{
"text": "current membrers from icici bank uk limited community",
"intent": "member_by_community",
"entities": []
},
{
"text": "could i know the life leadershipenglan member",
"intent": "member_by_community",
"entities": []
},
{
"text": "all members by eugene dupuch law school community",
"intent": "member_by_community",
"entities": []
},
{
"text": "show all membar from fundacion sinfonia",
"intent": "member_by_community",
"entities": []
},
{
"text": "all members from mohamed seedat household",
"intent": "member_by_community",
"entities": []
},
{
"text": "swho is active members on the zz capital international",
"intent": "member_by_community",
"entities": []
},
{
"text": "who was the past president of keystone bank",
"intent": "title_by_community",
"entities": []
},
{
"text": "wh was the past accounts payable manager of keystone bank",
"intent": "title_by_community",
"entities": []
},
{
"text": "who is the events planner of seminar",
"intent": "title_by_community",
"entities": []
},
{
"text": "who si the flagship events coordinator of education committee",
"intent": "title_by_community",
"entities": []
},
{
"text": "display the all active forum programs resources specialist of forum committee community",
"intent": "title_by_community",
"entities": []
},
{
"text": "all past senior manager registration services of junior leadership university 1 2016 committee",
"intent": "title_by_community",
"entities": []
},
{
"text": "elected content creation manager of pre-rocky mountain leadership college 2017 committee",
"intent": "title_by_community",
"entities": []
},
{
"text": "who all are the marketing coordinatorcontractor of ypo americas gateway miami gold community",
"intent": "title_by_community",
"entities": []
},
{
"text": "may know the hr director of impact capital inc",
"intent": "title_by_community",
"entities": []
},
{
"text": "may i know the executive vicepresident from inc conference community",
"intent": "title_by_community",
"entities": []
},
{
"text": "shown me the information support specialist from something everything committee",
"intent": "title_by_community",
"entities": []
},
{
"text": "who all are the marketing coordinatorcontractor of ypo americas gateway miami gold community",
"intent": "title_by_community",
"entities": []
},
{
"text": "past senior manager stragetic alliances of a capital",
"intent": "title_by_community",
"entities": []
},
{
"text": "find out the senior manager administrator relations from ada christian school",
"intent": "title_by_community",
"entities": []
},
{
"text": "may i know the human resources director of integrated merchandising solutions ims",
"intent": "title_by_community",
"entities": []
},
{
"text": "president of wimax global conference community at luna park",
"intent": "title_by_community_by_location",
"entities": []
},
{
"text": "show the executive vicepresident of w j towell co llc community in the place of the lodge at woodloch",
"intent": "title_by_community_by_location",
"entities": []
},
{
"text": "shw the event production manager of w jacobson household community of hotel das triest",
"intent": "title_by_community_by_location",
"entities": []
},
{
"text": " show the event finance director of wai pong chan household comunity of the hotel brussels park ballroom",
"intent": "title_by_community_by_location",
"entities": []
},
{
"text": "show me events service specialist of warrington asset mgt llc community of curitiba",
"intent": "title_by_community_by_location",
"entities": []
},
{
"text": "show group chief commercial officer of wesley medical center community of don alfonso 1890",
"intent": "title_by_community_by_location",
"entities": []
},
{
"text": "only active business analyst present in test company vbvgplmr updated community at newport harbor hotel",
"intent": "title_by_community_by_location",
"entities": []
},
{
"text": "list all the top sql database administrator present in talktel sa de cv community at bangkok thailand",
"intent": "title_by_community_by_location",
"entities": []
},
{
"text": "show all top global corporate recruiter present in tarkett wood inc community at zoom call in info email for access",
"intent": "title_by_community_by_location",
"entities": []
},
{
"text": "top numbers of senior manager administrator relations curently active technical uni of denmark community",
"intent": "title_by_community_by_location",
"entities": []
},
{
"text": "how many chief governance officer present in synapseindia group community located at rooney hall",
"intent": "title_by_community_by_location",
"entities": []
},
{
"text": "who are all the research analyst present in syracuse univ community which located at the hutton house",
"intent": "title_by_community_by_location",
"entities": []
},
{
"text": "view community belongs to the president operations of st giles garden hotel",
"intent": "title_by_community_by_location",
"entities": []
},
{
"text": "show all of the community belongs to the regional family manager in new jersey institute of technology",
"intent": "title_by_community_by_location",
"entities": []
},
{
"text": "senior director family of william wells household community at los angeles gun club",
"intent": "title_by_community_by_location",
"entities": []
},
{
"text": "member at wyckoff",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "show me the member at wyckoff",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "all member at wyckoff",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "is there any member at wyckoff",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "list out the member at wyckoff",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "can yu show me member at wyckoff",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "member from ft.thomas",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "all members from apapa",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "show me the members at santa domingo",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "can you show me the members at albireh-ranallah",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "evenry member at courbevoie",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "show me evenry member at kennebunkport",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "all members at banksia park",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "list out the members at fisherville",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "memebers from avenutura",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "show me all memebers from caracas piso 12",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "all memebers from caracas piso 12",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "list out memebers from caracas piso 12",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "members from hartwell",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "list of members from taguig",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "list members from taguig",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "show members from taguig",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "member from kota kinabalu",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "show me all member from chaoyang",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "list of member from chaoyang",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "members by mitry-mory",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "show me members by lost creek",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "list of members by santa tecla",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "whoa ll are the active members from turin",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "whoa all are the members from boca raton,",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "menbers from hermiston",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "show me menbers from prince george",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "list memevber from ploenchit",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "list out memevber from lasso",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "all memevber from mils",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "show memevber from makati central post office",
"intent": "Member_by_Location",
"entities": []
},{
"text": "all active memenre from east rutherford",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "show me all active memenre from islamabad",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "memebers ni lahaina",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "all memebers ni boulogne-billancourt",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "all active memenrs in gracita alvarez, san",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "show me all members from coburg north",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "what are all the members by aravnca",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "members in philadelphila north region",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "weekend members in buena park ",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "best members by clark this month",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "global level members from freienbach today",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "top members from wierda valley, sandton, jhb",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "active members by seongnam-si last year",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "yougsters members in vila olimpia",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "senior members running in vaud",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "blocked members from caba, buenos aires",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "free members by hendersonville",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "indian members in gold canyon",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "superior members running in ramat-gan",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "senior members in sunfish lake",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "middle class members from grand bay",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "widget members by katonah",
"intent": "Member_by_Location",
"entities": []
},
{
"text": "my communities",
"intent": "My_Communities",
"entities": []
},
{
"text": "show me my communities",
"intent": "My_Communities",
"entities": []
},
{
"text": "show my communities",
"intent": "My_Communities",
"entities": []
},
{
"text": "mention my communities",
"intent": "My_Communities",
"entities": []
},
{
"text": "what are my communities",
"intent": "My_Communities",
"entities": []
},
{
"text": "name my communities",
"intent": "My_Communities",
"entities": []
},
{
"text": "list out the my communities",
"intent": "My_Communities",
"entities": []
},
{
"text": "what are all my communities",
"intent": "My_Communities",
"entities": []
},
{
"text": "list out my communities",
"intent": "My_Communities",
"entities": []
},
{
"text": "my community",
"intent": "My_Communities",
"entities": []
},
{
"text": "show me my community",
"intent": "My_Communities",
"entities": []
},
{
"text": "show my community",
"intent": "My_Communities",