-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathattributes_datasets.json
18301 lines (18301 loc) · 556 KB
/
attributes_datasets.json
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
[{
"label": 1,
"question": "请问北京农商银行(富乐支行)地址在哪儿",
"attribute": "address"
}, {
"label": 0,
"question": "忠凉路工作日早上八点的车流速度是多少",
"attribute": "status"
}, {
"label": 0,
"question": "工人体育场西路工作日早上八点的车流速度是多少",
"attribute": "time"
}, {
"label": 0,
"question": "银地东路工作日的车流速度是多少?",
"attribute": "date"
}, {
"label": 0,
"question": "你知道筑福抗震园地理位置是什么吗?",
"attribute": "adname"
}, {
"label": 1,
"question": "你知道盛学培训地理位置是什么吗?",
"attribute": "address"
}, {
"label": 0,
"question": "金蝉北路工作日的车流速度是多少?",
"attribute": "date"
}, {
"label": 0,
"question": "请问极客晨星少儿编程(广渠门校区)地址在哪儿",
"attribute": "cityname"
}, {
"label": 0,
"question": "前毛家湾工作日早上八点的车流速度是多少",
"attribute": "date"
}, {
"label": 0,
"question": "你知道兴海家园(日苑)-13号楼地理位置是什么吗?",
"attribute": "typecode"
}, {
"label": 0,
"question": "你知道栗园西里14号楼在哪儿吗?",
"attribute": "cityname"
}, {
"label": 0,
"question": "你知道农印厂在哪儿吗?",
"attribute": "adname"
}, {
"label": 0,
"question": "你知道龙潭湖地理位置是什么吗?",
"attribute": "type"
}, {
"label": 0,
"question": "你知道北京建工在哪儿吗?",
"attribute": "cityname"
}, {
"label": 0,
"question": "顺四条工作日的车流速度是多少?",
"attribute": "direction"
}, {
"label": 0,
"question": "你知道海淀区第四实险小学在哪儿吗?",
"attribute": "adname"
}, {
"label": 1,
"question": "你知道皇家新村1号楼在哪儿吗?",
"attribute": "address"
}, {
"label": 0,
"question": "你知道公益西桥地铁站W1口在哪儿吗?",
"attribute": "cityname"
}, {
"label": 0,
"question": "你知道兴业银行24小时自助银行(橡树湾支行)地理位置是什么吗?",
"attribute": "lng"
}, {
"label": 0,
"question": "你知道保诺尔商厦在哪儿吗?",
"attribute": "adname"
}, {
"label": 0,
"question": "红领巾桥工作日早上八点的车流速度是多少",
"attribute": "angle"
}, {
"label": 0,
"question": "内环西路工作日的车流速度是多少?",
"attribute": "direction"
}, {
"label": 0,
"question": "你知道老山东里5号楼地理位置是什么吗?",
"attribute": "adcode"
}, {
"label": 0,
"question": "张仪村路工作日早上八点的车流速度是多少",
"attribute": "date"
}, {
"label": 0,
"question": "你知道北京培特电气工程有限公司地理位置是什么吗?",
"attribute": "typecode"
}, {
"label": 0,
"question": "你知道清华大学停车场地理位置是什么吗?",
"attribute": "adcode"
}, {
"label": 0,
"question": "请问同观涧桥山13号楼地址在哪儿",
"attribute": "location"
}, {
"label": 0,
"question": "你知道巩华二小家长学校在哪儿吗?",
"attribute": "pcode"
}, {
"label": 0,
"question": "你知道西铁营村地理位置是什么吗?",
"attribute": "citycode"
}, {
"label": 0,
"question": "粉厂胡同工作日的车流速度是多少?",
"attribute": "angle"
}, {
"label": 1,
"question": "你知道北京市门头沟区龙泉镇龙门新区二区综治中心在哪儿吗?",
"attribute": "address"
}, {
"label": 0,
"question": "右安门西滨河路工作日的车流速度是多少?",
"attribute": "direction"
}, {
"label": 0,
"question": "你知道钰山考试场车管服务站地理位置是什么吗?",
"attribute": "name"
}, {
"label": 1,
"question": "你知道慧爱融合儿童发展中心在哪儿吗?",
"attribute": "address"
}, {
"label": 0,
"question": "你知道滨阳西里小区北区在哪儿吗?",
"attribute": "location"
}, {
"label": 1,
"question": "请问北京道才建筑工程有限公司地址在哪儿",
"attribute": "address"
}, {
"label": 0,
"question": "你知道霍营小区地理位置是什么吗?",
"attribute": "citycode"
}, {
"label": 0,
"question": "你知道公共厕所地理位置是什么吗?",
"attribute": "cityname"
}, {
"label": 0,
"question": "你知道世界中餐业联合会地理位置是什么吗?",
"attribute": "typecode"
}, {
"label": 0,
"question": "请问如家酒店微型消防站地址在哪儿",
"attribute": "adname"
}, {
"label": 0,
"question": "京原西路工作日早上八点的车流速度是多少",
"attribute": "status"
}, {
"label": 0,
"question": "东二环工作日的车流速度是多少?",
"attribute": "direction"
}, {
"label": 0,
"question": "你知道芳嘉园胡同在哪儿吗?",
"attribute": "name"
}, {
"label": 0,
"question": "兆丰街工作日早上八点的车流速度是多少",
"attribute": "direction"
}, {
"label": 0,
"question": "请问韩屯村委会地址在哪儿",
"attribute": "pcode"
}, {
"label": 0,
"question": "海淀中街工作日的车流速度是多少?",
"attribute": "angle"
}, {
"label": 0,
"question": "请问榆垡镇人民代表大会地址在哪儿",
"attribute": "pcode"
}, {
"label": 0,
"question": "请问北京千禧龙华商贸有限公司地址在哪儿",
"attribute": "pcode"
}, {
"label": 0,
"question": "你知道北京市第二十中学(分校)在哪儿吗?",
"attribute": "citycode"
}, {
"label": 0,
"question": "请问首颐中医医院停车场地址在哪儿",
"attribute": "business_area"
}, {
"label": 0,
"question": "会城门东路工作日的车流速度是多少?",
"attribute": "status"
}, {
"label": 0,
"question": "你知道北京桥梓扬成饭店地理位置是什么吗?",
"attribute": "name"
}, {
"label": 0,
"question": "你知道延庆区香水园街道办事处职康站在哪儿吗?",
"attribute": "adcode"
}, {
"label": 0,
"question": "农展馆北路工作日的车流速度是多少?",
"attribute": "angle"
}, {
"label": 0,
"question": "球宝市街工作日早上八点的车流速度是多少",
"attribute": "date"
}, {
"label": 0,
"question": "请问东大街48号楼地址在哪儿",
"attribute": "business_area"
}, {
"label": 0,
"question": "请问颐和园-须弥灵境址地址在哪儿",
"attribute": "pcode"
}, {
"label": 0,
"question": "你知道名佳花园三区48号楼在哪儿吗?",
"attribute": "lng"
}, {
"label": 0,
"question": "你知道小八里庄在哪儿吗?",
"attribute": "type"
}, {
"label": 0,
"question": "含草路工作日早上八点的车流速度是多少",
"attribute": "status"
}, {
"label": 0,
"question": "外馆后身工作日的车流速度是多少?",
"attribute": "status"
}, {
"label": 0,
"question": "老山西街工作日早上八点的车流速度是多少",
"attribute": "date"
}, {
"label": 0,
"question": "请问北京艺吧(苹果)酒店公寓地址在哪儿",
"attribute": "location"
}, {
"label": 0,
"question": "请问和平里5区5号楼地址在哪儿",
"attribute": "cityname"
}, {
"label": 0,
"question": "大望桥工作日早上八点的车流速度是多少",
"attribute": "direction"
}, {
"label": 1,
"question": "你知道北京第二外国语学院附属小学定福分校在哪儿吗?",
"attribute": "address"
}, {
"label": 1,
"question": "你知道长辛店社会福利中心(建设中)在哪儿吗?",
"attribute": "address"
}, {
"label": 1,
"question": "闵庄路工作日的车流速度是多少?",
"attribute": "speed"
}, {
"label": 0,
"question": "你知道东南沟在哪儿吗?",
"attribute": "lng"
}, {
"label": 0,
"question": "请问北京美昌装饰工程有限公司地址在哪儿",
"attribute": "location"
}, {
"label": 1,
"question": "你知道翠微南里社区在哪儿吗?",
"attribute": "address"
}, {
"label": 0,
"question": "San Li Tun Back Street工作日早上八点的车流速度是多少",
"attribute": "date"
}, {
"label": 0,
"question": "请问云岗森林公园地址在哪儿",
"attribute": "lat"
}, {
"label": 0,
"question": "请问四车路地址在哪儿",
"attribute": "pcode"
}, {
"label": 0,
"question": "干面胡同工作日早上八点的车流速度是多少",
"attribute": "time"
}, {
"label": 0,
"question": "你知道北京农商银行(双桥支行)地理位置是什么吗?",
"attribute": "business_area"
}, {
"label": 1,
"question": "外馆斜街工作日的车流速度是多少?",
"attribute": "speed"
}, {
"label": 0,
"question": "学清苑小区北路工作日早上八点的车流速度是多少",
"attribute": "angle"
}, {
"label": 0,
"question": "厢红旗北路工作日早上八点的车流速度是多少",
"attribute": "status"
}, {
"label": 0,
"question": "你知道兴业银行(北京双井支行)地理位置是什么吗?",
"attribute": "adcode"
}, {
"label": 0,
"question": "请问中研百方地址在哪儿",
"attribute": "citycode"
}, {
"label": 0,
"question": "你知道百家廊地理位置是什么吗?",
"attribute": "lat"
}, {
"label": 0,
"question": "你知道北京市顺义区本先教育培训学校在哪儿吗?",
"attribute": "location"
}, {
"label": 0,
"question": "你知道北京航空航天大学中关村开放实验室在哪儿吗?",
"attribute": "location"
}, {
"label": 0,
"question": "你知道中国农业银行24小时自助银行(北京渔阳支行)地理位置是什么吗?",
"attribute": "name"
}, {
"label": 0,
"question": "你知道公共厕所(永顺村拆迁区)在哪儿吗?",
"attribute": "lng"
}, {
"label": 0,
"question": "你知道水郡长安2号院在哪儿吗?",
"attribute": "lng"
}, {
"label": 0,
"question": "请问卡思德少儿编程乐高机器人(航天万源店)地址在哪儿",
"attribute": "name"
}, {
"label": 0,
"question": "前门大街工作日的车流速度是多少?",
"attribute": "direction"
}, {
"label": 0,
"question": "京密路 Jingmi Road工作日早上八点的车流速度是多少",
"attribute": "angle"
}, {
"label": 0,
"question": "你知道沙河镇东一社区综治中心在哪儿吗?",
"attribute": "name"
}, {
"label": 1,
"question": "天桥市场斜街工作日的车流速度是多少?",
"attribute": "speed"
}, {
"label": 0,
"question": "通河北巷工作日的车流速度是多少?",
"attribute": "direction"
}, {
"label": 1,
"question": "你知道公共厕所(西北关村)在哪儿吗?",
"attribute": "address"
}, {
"label": 0,
"question": "你知道希岸·轻雅酒店(顺义地铁站店)在哪儿吗?",
"attribute": "citycode"
}, {
"label": 0,
"question": "请问北京农商银行(富乐支行)地址在哪儿",
"attribute": "adcode"
}, {
"label": 0,
"question": "人民村路工作日的车流速度是多少?",
"attribute": "angle"
}, {
"label": 0,
"question": "你知道北京三里屯通盈中心洲际酒店在哪儿吗?",
"attribute": "lat"
}, {
"label": 1,
"question": "你知道麻峪东街地理位置是什么吗?",
"attribute": "address"
}, {
"label": 1,
"question": "你知道西南园地理位置是什么吗?",
"attribute": "address"
}, {
"label": 0,
"question": "你知道中荷人寿保险北京分公司地理位置是什么吗?",
"attribute": "cityname"
}, {
"label": 0,
"question": "你知道北京春雨春商贸有限公司地理位置是什么吗?",
"attribute": "business_area"
}, {
"label": 0,
"question": "你知道汇航桃园地理位置是什么吗?",
"attribute": "citycode"
}, {
"label": 0,
"question": "你知道华彩宾馆(百子湾路)地理位置是什么吗?",
"attribute": "citycode"
}, {
"label": 0,
"question": "你知道世华水岸东区在哪儿吗?",
"attribute": "citycode"
}, {
"label": 0,
"question": "你知道北京成长青年旅舍在哪儿吗?",
"attribute": "adname"
}, {
"label": 0,
"question": "你知道东花市北里中区1号楼地理位置是什么吗?",
"attribute": "lng"
}, {
"label": 0,
"question": "你知道滨阳西里小区北区在哪儿吗?",
"attribute": "adcode"
}, {
"label": 0,
"question": "请问中国民生银行(北京东湖社区支行)地址在哪儿",
"attribute": "name"
}, {
"label": 0,
"question": "你知道北京市第十五中学春明校区西址初中部地理位置是什么吗?",
"attribute": "adname"
}, {
"label": 0,
"question": "你知道中国工商银行24小时自助银行(大栅栏支行)在哪儿吗?",
"attribute": "lat"
}, {
"label": 0,
"question": "你知道荣华西三路在哪儿吗?",
"attribute": "type"
}, {
"label": 0,
"question": "你知道平安银行24小时自助银行(东三环支行)在哪儿吗?",
"attribute": "pcode"
}, {
"label": 0,
"question": "你知道三温路地理位置是什么吗?",
"attribute": "type"
}, {
"label": 0,
"question": "你知道中国中医药国际合作中心在哪儿吗?",
"attribute": "adcode"
}, {
"label": 0,
"question": "请问八角北里甲1号楼地址在哪儿",
"attribute": "adname"
}, {
"label": 0,
"question": "你知道永兴家园停车场地理位置是什么吗?",
"attribute": "business_area"
}, {
"label": 0,
"question": "你知道西山奥园地面停车场在哪儿吗?",
"attribute": "name"
}, {
"label": 1,
"question": "敞风胡同工作日早上八点的车流速度是多少",
"attribute": "speed"
}, {
"label": 0,
"question": "王庄路 (wángzhuāng lù)工作日的车流速度是多少?",
"attribute": "status"
}, {
"label": 0,
"question": "请问西便门西里1号楼地址在哪儿",
"attribute": "lng"
}, {
"label": 0,
"question": "请问北京世纪鑫机械厂地址在哪儿",
"attribute": "cityname"
}, {
"label": 0,
"question": "你知道寿逾百胡同地理位置是什么吗?",
"attribute": "adcode"
}, {
"label": 0,
"question": "请问铁道科学研究院住宅区地址在哪儿",
"attribute": "type"
}, {
"label": 0,
"question": "你知道昀豆培训部地理位置是什么吗?",
"attribute": "lat"
}, {
"label": 0,
"question": "你知道天主堂在哪儿吗?",
"attribute": "adname"
}, {
"label": 0,
"question": "金台北街工作日的车流速度是多少?",
"attribute": "date"
}, {
"label": 0,
"question": "屏翠东路工作日的车流速度是多少?",
"attribute": "time"
}, {
"label": 0,
"question": "请问北京城建永定河特大桥项目部地址在哪儿",
"attribute": "name"
}, {
"label": 0,
"question": "建华南路工作日的车流速度是多少?",
"attribute": "angle"
}, {
"label": 0,
"question": "你知道立恒名苑在哪儿吗?",
"attribute": "citycode"
}, {
"label": 0,
"question": "你知道中国农业银行24小时自助银行(北京先农坛支行)在哪儿吗?",
"attribute": "typecode"
}, {
"label": 0,
"question": "东坝中街工作日早上八点的车流速度是多少",
"attribute": "angle"
}, {
"label": 1,
"question": "后纱络胡同工作日的车流速度是多少?",
"attribute": "speed"
}, {
"label": 0,
"question": "你知道林带路在哪儿吗?",
"attribute": "adname"
}, {
"label": 0,
"question": "你知道怀北农产品协会地理位置是什么吗?",
"attribute": "type"
}, {
"label": 0,
"question": "请问百朗财经会计(旧宫校区)地址在哪儿",
"attribute": "adcode"
}, {
"label": 0,
"question": "你知道方恒国际中心1号楼地理位置是什么吗?",
"attribute": "cityname"
}, {
"label": 0,
"question": "你知道公共厕所(西中堡村村北)在哪儿吗?",
"attribute": "typecode"
}, {
"label": 0,
"question": "请问中共党史出版社地址在哪儿",
"attribute": "citycode"
}, {
"label": 0,
"question": "你知道凯帝学院在哪儿吗?",
"attribute": "lat"
}, {
"label": 0,
"question": "你知道道路停车位地理位置是什么吗?",
"attribute": "citycode"
}, {
"label": 0,
"question": "你知道梁家坝学校地理位置是什么吗?",
"attribute": "business_area"
}, {
"label": 0,
"question": "七棵树路工作日的车流速度是多少?",
"attribute": "date"
}, {
"label": 0,
"question": "你知道镶黄旗官学地理位置是什么吗?",
"attribute": "citycode"
}, {
"label": 0,
"question": "枫竹苑南路工作日的车流速度是多少?",
"attribute": "direction"
}, {
"label": 0,
"question": "你知道海淀公安分局交通支队中国人民保险警保联动服务点地理位置是什么吗?",
"attribute": "type"
}, {
"label": 0,
"question": "你知道北京市门头沟区永定镇秋坡村村民委员会地理位置是什么吗?",
"attribute": "lng"
}, {
"label": 0,
"question": "你知道幸福东区丁18号楼在哪儿吗?",
"attribute": "typecode"
}, {
"label": 0,
"question": "你知道京彩青少年成长中心在哪儿吗?",
"attribute": "adname"
}, {
"label": 0,
"question": "长青南路工作日早上八点的车流速度是多少",
"attribute": "direction"
}, {
"label": 0,
"question": "你知道长银大厦在哪儿吗?",
"attribute": "lat"
}, {
"label": 0,
"question": "鼓楼东大街工作日早上八点的车流速度是多少",
"attribute": "status"
}, {
"label": 0,
"question": "杏坛路工作日的车流速度是多少?",
"attribute": "direction"
}, {
"label": 0,
"question": "你知道云岫谷游猎自然风景区(暂停营业)地理位置是什么吗?",
"attribute": "typecode"
}, {
"label": 0,
"question": "你知道德泉胡同-道路停车位在哪儿吗?",
"attribute": "adcode"
}, {
"label": 0,
"question": "请问辰季酒店-洗手间地址在哪儿",
"attribute": "location"
}, {
"label": 0,
"question": "请问大故现村新街地址在哪儿",
"attribute": "adname"
}, {
"label": 0,
"question": "你知道嘉浩别墅4072号楼在哪儿吗?",
"attribute": "cityname"
}, {
"label": 0,
"question": "请问时代花园东街地址在哪儿",
"attribute": "lat"
}, {
"label": 0,
"question": "你知道森林岛会议中心地理位置是什么吗?",
"attribute": "cityname"
}, {
"label": 1,
"question": "你知道总部基地·金融港北区9号楼地理位置是什么吗?",
"attribute": "address"
}, {
"label": 0,
"question": "你知道丁丁培训(小西天总部)在哪儿吗?",
"attribute": "business_area"
}, {
"label": 0,
"question": "请问中航工业青云地址在哪儿",
"attribute": "lng"
}, {
"label": 0,
"question": "你知道芳嘉园胡同在哪儿吗?",
"attribute": "citycode"
}, {
"label": 0,
"question": "你知道聚兴源宾馆(博兴胡同)地理位置是什么吗?",
"attribute": "typecode"
}, {
"label": 1,
"question": "请问北京晨辉印章有限公司地址在哪儿",
"attribute": "address"
}, {
"label": 0,
"question": "左安门桥工作日的车流速度是多少?",
"attribute": "status"
}, {
"label": 0,
"question": "你知道京彩青少年成长中心在哪儿吗?",
"attribute": "citycode"
}, {
"label": 0,
"question": "公益西街工作日早上八点的车流速度是多少",
"attribute": "date"
}, {
"label": 1,
"question": "你知道国际花园3区地理位置是什么吗?",
"attribute": "address"
}, {
"label": 0,
"question": "你知道清华大学-工字厅后厅在哪儿吗?",
"attribute": "pcode"
}, {
"label": 0,
"question": "请问林木遗传育种国家重点实验室地址在哪儿",
"attribute": "adcode"
}, {
"label": 0,
"question": "你知道蓝山国际公寓在哪儿吗?",
"attribute": "adcode"
}, {
"label": 0,
"question": "你知道北京德惠众科技有限公司分公司地理位置是什么吗?",
"attribute": "cityname"
}, {
"label": 0,
"question": "你知道国祥雲著在哪儿吗?",
"attribute": "name"
}, {
"label": 0,
"question": "你知道道路停车位在哪儿吗?",
"attribute": "citycode"
}, {
"label": 0,
"question": "曙光花园中路工作日的车流速度是多少?",
"attribute": "direction"
}, {
"label": 1,
"question": "请问金泉家园地址在哪儿",
"attribute": "address"
}, {
"label": 0,
"question": "兴丰大街工作日早上八点的车流速度是多少",
"attribute": "date"
}, {
"label": 0,
"question": "你知道逸翠园在哪儿吗?",
"attribute": "citycode"
}, {
"label": 0,
"question": "你知道阳坊镇东贯市村党支部党员服务站地理位置是什么吗?",
"attribute": "pcode"
}, {
"label": 0,
"question": "请问体验蔓时光度假别墅(香堂村分店)地址在哪儿",
"attribute": "cityname"
}, {
"label": 0,
"question": "请问颐园小区地址在哪儿",
"attribute": "adcode"
}, {
"label": 0,
"question": "你知道张伯驹潘素故居纪念馆地理位置是什么吗?",
"attribute": "pcode"
}, {
"label": 0,
"question": "请问华丽大厦地下停车场地址在哪儿",
"attribute": "citycode"
}, {
"label": 0,
"question": "你知道大坎村村委会在哪儿吗?",
"attribute": "lng"
}, {
"label": 0,
"question": "你知道北京市经济管理干部学院地理位置是什么吗?",
"attribute": "lng"
}, {
"label": 0,
"question": "你知道大兴公安分局交通支队地理位置是什么吗?",
"attribute": "location"
}, {
"label": 0,
"question": "G4辅路工作日早上八点的车流速度是多少",
"attribute": "status"
}, {
"label": 0,
"question": "东华门大街工作日的车流速度是多少?",
"attribute": "status"
}, {
"label": 0,
"question": "你知道嘉捷·BDA企业汇10号楼地理位置是什么吗?",
"attribute": "cityname"
}, {
"label": 1,
"question": "金汇路工作日早上八点的车流速度是多少",
"attribute": "speed"
}, {
"label": 0,
"question": "朱房北二街工作日的车流速度是多少?",
"attribute": "angle"
}, {
"label": 0,
"question": "你知道怀北农产品协会地理位置是什么吗?",
"attribute": "typecode"
}, {
"label": 0,
"question": "你知道车架生产基地在哪儿吗?",
"attribute": "adcode"
}, {
"label": 0,
"question": "你知道北影社区老年互助社地理位置是什么吗?",
"attribute": "type"
}, {
"label": 1,
"question": "横二条工作日早上八点的车流速度是多少",
"attribute": "speed"
}, {
"label": 0,
"question": "尚家楼路工作日的车流速度是多少?",
"attribute": "time"
}, {
"label": 0,
"question": "温家街工作日早上八点的车流速度是多少",
"attribute": "date"
}, {
"label": 0,
"question": "你知道板桥村在哪儿吗?",
"attribute": "adcode"
}, {
"label": 0,
"question": "你知道金隅大成时代b座地理位置是什么吗?",
"attribute": "typecode"
}, {
"label": 1,
"question": "西四环南路工作日的车流速度是多少?",
"attribute": "speed"
}, {
"label": 0,
"question": "你知道上地四街在哪儿吗?",
"attribute": "lng"
}, {
"label": 0,
"question": "请问英芽国际少儿教育中心(琨廷校区)地址在哪儿",
"attribute": "adname"
}, {
"label": 0,
"question": "三虎桥南路工作日的车流速度是多少?",
"attribute": "status"
}, {
"label": 0,
"question": "请问北湾地址在哪儿",
"attribute": "pcode"
}, {
"label": 0,
"question": "你知道常惠路-道路停车位地理位置是什么吗?",
"attribute": "adname"
}, {
"label": 0,
"question": "请问国瑞城中区地址在哪儿",
"attribute": "location"
}, {
"label": 1,
"question": "北坞嘉园东小街工作日早上八点的车流速度是多少",
"attribute": "speed"
}, {
"label": 0,
"question": "你知道义宾北区8号楼地理位置是什么吗?",
"attribute": "location"
}, {
"label": 1,
"question": "你知道古心画室·金丝珐琅DIY·团建地理位置是什么吗?",
"attribute": "address"
}, {
"label": 1,
"question": "上河沿路工作日早上八点的车流速度是多少",
"attribute": "speed"
}, {
"label": 0,
"question": "你知道中国工商银行(焦奥中心支行)在哪儿吗?",
"attribute": "pcode"
}, {
"label": 0,
"question": "请问多福巷社区党建协调分会-工会联合会地址在哪儿",
"attribute": "adname"
}, {
"label": 1,
"question": "朝阳北路工作日早上八点的车流速度是多少",
"attribute": "speed"
}, {
"label": 0,
"question": "你知道北京市平谷区采购中心地理位置是什么吗?",
"attribute": "location"
}, {
"label": 0,
"question": "你知道日新路地理位置是什么吗?",
"attribute": "citycode"
}, {
"label": 0,
"question": "你知道海淀驾驶学校训练场地理位置是什么吗?",
"attribute": "typecode"
}, {
"label": 0,
"question": "你知道人社社保就业服务窗口(北京市门头沟区妙峰山镇政务服务中心)地理位置是什么吗?",
"attribute": "location"
}, {
"label": 0,
"question": "请问北石渠村防火防震办公室地址在哪儿",
"attribute": "name"
}, {
"label": 0,
"question": "你知道北苑安监地理位置是什么吗?",
"attribute": "name"
}, {
"label": 0,
"question": "和平里北街工作日早上八点的车流速度是多少",
"attribute": "direction"
}, {
"label": 0,
"question": "你知道工美大厦地下停车场在哪儿吗?",
"attribute": "pcode"
}, {
"label": 1,
"question": "你知道恭王府警务站在哪儿吗?",
"attribute": "address"
}, {
"label": 0,
"question": "柳林馆路工作日的车流速度是多少?",
"attribute": "time"
}, {
"label": 0,
"question": "请问北京军谊丰通商贸有限公司地址在哪儿",
"attribute": "location"
}, {
"label": 0,
"question": "请问北京国际鲜花港绿植花卉分拨中心地址在哪儿",
"attribute": "adcode"
}, {
"label": 0,
"question": "你知道明德立人教育在哪儿吗?",
"attribute": "location"
}, {
"label": 0,
"question": "G4辅路工作日早上八点的车流速度是多少",
"attribute": "time"
}, {
"label": 0,
"question": "你知道阜外民宿在哪儿吗?",
"attribute": "typecode"
}, {
"label": 0,
"question": "大井胡同工作日的车流速度是多少?",
"attribute": "angle"
}, {
"label": 0,
"question": "你知道阳坊镇党群服务中心地理位置是什么吗?",
"attribute": "lat"
}, {
"label": 0,
"question": "你知道宫娄警北国家森林公园动物园-矮马在哪儿吗?",
"attribute": "adcode"
}, {
"label": 0,
"question": "你知道北京德惠众科技有限公司分公司地理位置是什么吗?",
"attribute": "adcode"
}, {
"label": 0,
"question": "你知道南观村地理位置是什么吗?",
"attribute": "cityname"
}, {
"label": 0,
"question": "请问首创空间地址在哪儿",
"attribute": "adname"
}, {
"label": 0,
"question": "你知道百里驿栈地理位置是什么吗?",
"attribute": "type"
}, {
"label": 0,
"question": "你知道云西大田园地理位置是什么吗?",
"attribute": "pcode"
}, {
"label": 1,
"question": "阜成路南二街工作日的车流速度是多少?",
"attribute": "speed"
}, {
"label": 0,
"question": "你知道宣颐社区残疾人康复服务站地理位置是什么吗?",
"attribute": "lat"
}, {
"label": 0,
"question": "你知道华彩宾馆(百子湾路)地理位置是什么吗?",
"attribute": "lng"
}, {
"label": 0,
"question": "荣华北路工作日的车流速度是多少?",
"attribute": "status"
}, {
"label": 0,
"question": "你知道北京培特电气工程有限公司地理位置是什么吗?",
"attribute": "adcode"
}, {
"label": 0,
"question": "你知道天长帝酒厂在哪儿吗?",
"attribute": "lng"
}, {
"label": 0,
"question": "你知道星光科技股份地理位置是什么吗?",
"attribute": "adname"
}, {
"label": 0,
"question": "请问青年林地址在哪儿",
"attribute": "citycode"
}, {
"label": 0,
"question": "请问益泽路1号院16号楼地址在哪儿",
"attribute": "cityname"
}, {
"label": 0,
"question": "你知道七巧屋酒店(北京协和医院店)在哪儿吗?",
"attribute": "adname"
}, {
"label": 0,
"question": "豆瓣胡同工作日的车流速度是多少?",
"attribute": "date"