-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtest_public.jsonl
1000 lines (1000 loc) · 199 KB
/
test_public.jsonl
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
{"sentence_id": 4898, "sentence_text": "可我没比以前做地很多运动。", "article_id": 7305, "article_name": "5月26日", "total_annotators": 11}
{"sentence_id": 4906, "sentence_text": "天气很好,气温也高,真好老公也休息,一家三口人一起外出了。", "article_id": 7306, "article_name": "累死了。。。", "total_annotators": 11}
{"sentence_id": 4910, "sentence_text": "我建议在外面吃晚饭回家,老公也同意", "article_id": 7306, "article_name": "累死了。。。", "total_annotators": 11}
{"sentence_id": 4913, "sentence_text": "我以前在上海的时候,我家一楼就是小尾羊,所以有时去吃的。", "article_id": 7306, "article_name": "累死了。。。", "total_annotators": 11}
{"sentence_id": 5088, "sentence_text": "突然离我,开始笑着呢。", "article_id": 7313, "article_name": "终于睡觉了", "total_annotators": 11}
{"sentence_id": 5096, "sentence_text": "昨天在我家附近的咖啡厅我们三个人一边喝咖啡一边等了一个朋友。", "article_id": 7314, "article_name": "昨天的星巴克咖啡的事儿", "total_annotators": 11}
{"sentence_id": 5099, "sentence_text": "那天一个男生打算顺便跟还没到的男生还给自己垫付的钱。", "article_id": 7314, "article_name": "昨天的星巴克咖啡的事儿", "total_annotators": 11}
{"sentence_id": 5105, "sentence_text": "他们都说\"这是我们会设想的\"", "article_id": 7314, "article_name": "昨天的星巴克咖啡的事儿", "total_annotators": 11}
{"sentence_id": 5130, "sentence_text": "九月和十月我提高我的汉语水平。", "article_id": 7316, "article_name": "大家好!", "total_annotators": 11}
{"sentence_id": 5147, "sentence_text": "那,以后我想写我的大连的生活。", "article_id": 7317, "article_name": "大连", "total_annotators": 11}
{"sentence_id": 5183, "sentence_text": "高中是虽然大家不相信,我加入美国Football俱乐部,度过非常痛苦的", "article_id": 7319, "article_name": "慢慢走CEO日记", "total_annotators": 11}
{"sentence_id": 5196, "sentence_text": "我会在平时生活,在工作中体验的事情,学习的事情,感受的事情在这博客上一点写。", "article_id": 7319, "article_name": "慢慢走CEO日记", "total_annotators": 11}
{"sentence_id": 5212, "sentence_text": "我知道,我的汉语不是容易理解。", "article_id": 7320, "article_name": "你好!", "total_annotators": 11}
{"sentence_id": 5276, "sentence_text": "方案2:听歌曲,猜歌手就要不能错的唱下去。", "article_id": 7324, "article_name": "在上海歌城举办圣诞会", "total_annotators": 11}
{"sentence_id": 5288, "sentence_text": "策划了包琳和赵颖非常辛苦了!", "article_id": 7324, "article_name": "在上海歌城举办圣诞会", "total_annotators": 11}
{"sentence_id": 5300, "sentence_text": "而看到外滩茂悦的优惠套餐。", "article_id": 7325, "article_name": "中国人好像不大重视圣诞节??", "total_annotators": 11}
{"sentence_id": 5349, "sentence_text": "没有坐的地方我们一直走。", "article_id": 7327, "article_name": "nanjing", "total_annotators": 11}
{"sentence_id": 5374, "sentence_text": "我们在定点休息很长时间。", "article_id": 7327, "article_name": "nanjing", "total_annotators": 11}
{"sentence_id": 5395, "sentence_text": "因为这次旅行的时候和辛苦了所以下次旅行以前我们要准备完善。", "article_id": 7327, "article_name": "nanjing", "total_annotators": 11}
{"sentence_id": 5402, "sentence_text": "我的汉语不很好,我很多用词典哈哈", "article_id": 7328, "article_name": "Update", "total_annotators": 11}
{"sentence_id": 5444, "sentence_text": "-我认识都字初级文章里。", "article_id": 7331, "article_name": "我的目的", "total_annotators": 11}
{"sentence_id": 5454, "sentence_text": "看外国的电影他这么练习英语和汉语的听力和词汇。", "article_id": 7332, "article_name": "我的朋友的爱好", "total_annotators": 11}
{"sentence_id": 5455, "sentence_text": "这些爱好能他打开眼界。", "article_id": 7332, "article_name": "我的朋友的爱好", "total_annotators": 11}
{"sentence_id": 5490, "sentence_text": "两个年期间我一直学习汉语呢。", "article_id": 7334, "article_name": "我学习汉语。。。", "total_annotators": 11}
{"sentence_id": 5516, "sentence_text": "这个办法对我们汉语水平很好处。", "article_id": 7335, "article_name": "我最近的生活。", "total_annotators": 11}
{"sentence_id": 5568, "sentence_text": "我妈妈总是给我一点巧克力,因为我伤心在回大学的时候。", "article_id": 7338, "article_name": "寒假有感", "total_annotators": 10}
{"sentence_id": 5575, "sentence_text": "到那个地方的条路凹凸不平以及不很舒服。", "article_id": 7339, "article_name": "今天的旅行", "total_annotators": 10}
{"sentence_id": 5671, "sentence_text": "以后,我要给他们电话,要求了交换产品,很麻烦。", "article_id": 7345, "article_name": "网上购物", "total_annotators": 10}
{"sentence_id": 5774, "sentence_text": "从我来台湾的天,今天我努力学习了汉语。", "article_id": 7353, "article_name": "从我来台湾的天,今天我努力学习了汉语。", "total_annotators": 11}
{"sentence_id": 5779, "sentence_text": "学习的时间我发现好句字。", "article_id": 7353, "article_name": "从我来台湾的天,今天我努力学习了汉语。", "total_annotators": 11}
{"sentence_id": 5798, "sentence_text": "看英语学习的办法动影像。", "article_id": 7353, "article_name": "从我来台湾的天,今天我努力学习了汉语。", "total_annotators": 11}
{"sentence_id": 5854, "sentence_text": "因为在学期中学汉语的都是跟老师一起用教材学的,所以我这次暑假想要用别的方法自己学汉语了,就是在学期中没有时间不能尝试的。", "article_id": 7359, "article_name": "朋友们,请帮我一下!", "total_annotators": 11}
{"sentence_id": 5869, "sentence_text": "其实,以这个目的语为母语的人也不一定讲完美的普通话,每个人有些影响家乡的方言。", "article_id": 7360, "article_name": "说错不用害怕,对话时重要的就是互相沟通,互相理解", "total_annotators": 11}
{"sentence_id": 5870, "sentence_text": "他们也是在这样情况下,我们外国人何必追求完美的目的语呢?", "article_id": 7360, "article_name": "说错不用害怕,对话时重要的就是互相沟通,互相理解", "total_annotators": 11}
{"sentence_id": 5882, "sentence_text": "我从来没有想过请某个留学生跟我朋友们一起踢足球可以变成这么棒的友谊。", "article_id": 7362, "article_name": "我帮朋友翻译的感谢信", "total_annotators": 11}
{"sentence_id": 5885, "sentence_text": "今年的高中最后一年比一般学生的还困难。", "article_id": 7362, "article_name": "我帮朋友翻译的感谢信", "total_annotators": 11}
{"sentence_id": 5900, "sentence_text": "星期天是也冷但是有太阳。", "article_id": 7363, "article_name": "我的周末", "total_annotators": 11}
{"sentence_id": 5952, "sentence_text": "我以前尝不出来水果味道,最近尝得出来了,比如梨的名牌叫“二十世纪”和叫“秋月”尝得出来。", "article_id": 7366, "article_name": "营养师", "total_annotators": 11}
{"sentence_id": 5953, "sentence_text": "有一天,在叫“永旺”的超市买永旺名牌儿的咖啡。", "article_id": 7366, "article_name": "营养师", "total_annotators": 11}
{"sentence_id": 5974, "sentence_text": "我住在的地方的店没有百威啤酒。", "article_id": 7368, "article_name": "在便利店和超市百威没有了", "total_annotators": 11}
{"sentence_id": 5982, "sentence_text": "我们等一分钟才看怎么回事。", "article_id": 7369, "article_name": "昨天我看十一台消防车", "total_annotators": 11}
{"sentence_id": 5984, "sentence_text": "我从公车走下去着看还一台消防车开飞驰得开去。", "article_id": 7369, "article_name": "昨天我看十一台消防车", "total_annotators": 11}
{"sentence_id": 5989, "sentence_text": "他们停因为在路上还有八台消防车开的inarow.", "article_id": 7369, "article_name": "昨天我看十一台消防车", "total_annotators": 11}
{"sentence_id": 6000, "sentence_text": "她的脸色白白的,他的身体也发抖了。", "article_id": 7369, "article_name": "昨天我看十一台消防车", "total_annotators": 11}
{"sentence_id": 6003, "sentence_text": "我回家的时候我马上去google写了”台北“跟”火。", "article_id": 7369, "article_name": "昨天我看十一台消防车", "total_annotators": 11}
{"sentence_id": 6004, "sentence_text": "“可是一个火灾的休息,报纸都没有。", "article_id": 7369, "article_name": "昨天我看十一台消防车", "total_annotators": 11}
{"sentence_id": 6231, "sentence_text": "今天是个特别的日子,心情些许复杂,曾经一个简单的joke今日也将划上一个圆满的句号,或许只是一个暂时性的符号…坐上开往书城的公交,跨着父亲曾经买的瑞士背包,一身休闲装的我显得格外精神。", "article_id": 7383, "article_name": "Special Day ^ ^", "total_annotators": 10}
{"sentence_id": 6233, "sentence_text": "我一脸吃惊,但是今天能够在人海茫茫中遇到—同校同班同学,特别开心,经历了从对峙,矛盾,到信任,发觉这已是另一个时代的事了,但回想一下过去的大学生活,十分有趣。", "article_id": 7383, "article_name": "Special Day ^ ^", "total_annotators": 10}
{"sentence_id": 6235, "sentence_text": "逛逛了,肚子有些饿了,他说请我到外头饱餐一顿,我们来到了KFC,点了一份全家桶,两个人边吃边聊,也是件蛮幸福的事情。", "article_id": 7383, "article_name": "Special Day ^ ^", "total_annotators": 10}
{"sentence_id": 6240, "sentence_text": "就这样我被他骗到龙阳路地铁站的一家体育用品专卖超市,这也是我第一次来到如此大的超市,里面的商品琳琅满目,没有你不想要的,只有你想不到的,就这样我们从头到尾逛了逛,最后我把目标锁定在跑步专区,正好自己最近在练长跑,这天气也需要一件运动T恤,就特意得挑了一件草绿色的,后来又买了一条运动短裤,来增加一下运动的激情,试穿了一下,杨向我打量了着,他作了个标志性的手势,瞧他的样子还挺满意,自己照了照mirror,还行吧^^轮到杨了,他试了试休闲裤,妈妈的,还不给我瞧瞧,就从更衣室走出来,看他样子不是很满意,可奇怪的是他背后怎么会冒出一缕缕青烟,他也太厉害了,回想一下百思不得其解?", "article_id": 7383, "article_name": "Special Day ^ ^", "total_annotators": 10}
{"sentence_id": 6241, "sentence_text": "不管那么多了,又来到了登山区,他选了一顶遮阳帽,摆了几个pose,倒有点rap的腔调,但细细打量还是有点像个渔夫", "article_id": 7383, "article_name": "Special Day ^ ^", "total_annotators": 10}
{"sentence_id": 6242, "sentence_text": "=)jisjis不时从广播中传来本超市正在搞健身有奖活动,还是瞧瞧吧,我兴奋得来到了柜台,填了本人信息,来到了跑步测试区,没多久完成了规定的指标,还算是个比较轻松的项目,这也是我春训的结果,表现得还不赖^^。", "article_id": 7383, "article_name": "Special Day ^ ^", "total_annotators": 10}
{"sentence_id": 6274, "sentence_text": "没有来到这里的之间里,很多事情变了。", "article_id": 7386, "article_name": "好久好久没有来到这里了", "total_annotators": 10}
{"sentence_id": 6300, "sentence_text": "我回答;我很喜欢中文,当然我要继续学习中文。", "article_id": 7388, "article_name": "将来的目标", "total_annotators": 10}
{"sentence_id": 6305, "sentence_text": "无论如何,我要继续积极地学中文而用中文。", "article_id": 7388, "article_name": "将来的目标", "total_annotators": 10}
{"sentence_id": 6328, "sentence_text": "很久以前,我就认识了这首歌曲。", "article_id": 7390, "article_name": "台语歌2", "total_annotators": 10}
{"sentence_id": 6372, "sentence_text": "在我的state(在美国)我不知道那里买了,有的大state买这个茶。", "article_id": 7393, "article_name": "我很饿,哈哈。", "total_annotators": 10}
{"sentence_id": 6381, "sentence_text": "有的时候我想说中文,我害怕,哈哈。", "article_id": 7393, "article_name": "我很饿,哈哈。", "total_annotators": 10}
{"sentence_id": 6397, "sentence_text": "我睡觉得很多,没有意思。", "article_id": 7394, "article_name": "夏假。", "total_annotators": 10}
{"sentence_id": 6403, "sentence_text": "中文歌很难董,我听慢的歌。", "article_id": 7394, "article_name": "夏假。", "total_annotators": 10}
{"sentence_id": 6410, "sentence_text": "(一个月前我们有小小地震。", "article_id": 7394, "article_name": "夏假。", "total_annotators": 10}
{"sentence_id": 6450, "sentence_text": "我来中国之前一直犹豫了去不去中国。", "article_id": 7398, "article_name": "", "total_annotators": 11}
{"sentence_id": 6457, "sentence_text": "而且当时那本书在韩国畅销书第一。", "article_id": 7398, "article_name": "", "total_annotators": 11}
{"sentence_id": 6479, "sentence_text": "我不忘了,就有时候我听不懂,我必须翻译新的词。", "article_id": 7399, "article_name": "大家好!", "total_annotators": 11}
{"sentence_id": 6487, "sentence_text": "18年以前开始学中文,正式学了只一年多,然后我只是跟朋友聊天,要是我说错的话,他们帮我改正我所说的。", "article_id": 7400, "article_name": "第一个中文留言!(My First Chinese Post!)", "total_annotators": 11}
{"sentence_id": 6520, "sentence_text": "我有一点儿忙,因为我有很多很多作业,但是我快每天还学习中文。", "article_id": 7403, "article_name": "好久不见!", "total_annotators": 11}
{"sentence_id": 6551, "sentence_text": "自我觉得最近最关住是”中国经济发展“,辛亏面式时第一个题是就是这个。", "article_id": 7405, "article_name": "面试。。", "total_annotators": 11}
{"sentence_id": 6608, "sentence_text": "韩国人常常说星期一病,意思是周末大概两天半休息以后到星期一的时候感觉很累。", "article_id": 7409, "article_name": "星期一病", "total_annotators": 11}
{"sentence_id": 6649, "sentence_text": "我希望四川的人能重获。", "article_id": 7411, "article_name": "在家乡", "total_annotators": 11}
{"sentence_id": 6655, "sentence_text": "然而一些日本人说英文说的行。", "article_id": 7412, "article_name": "在日本!", "total_annotators": 11}
{"sentence_id": 6657, "sentence_text": "我试每天学一个半小时。", "article_id": 7412, "article_name": "在日本!", "total_annotators": 11}
{"sentence_id": 6663, "sentence_text": "拿到打工证我也会让我的生活一切过的很好。", "article_id": 7413, "article_name": "最近的心情", "total_annotators": 11}
{"sentence_id": 6734, "sentence_text": "昨天9月1号,所以去看了电影「不能说的秘密」。", "article_id": 7418, "article_name": "电影的天(映画の日)", "total_annotators": 10}
{"sentence_id": 6783, "sentence_text": "四年之前名古屋举办过世界博览会.我去名古屋座Shinkansen...电车到名古屋的时候,我看一看钱包里.", "article_id": 7422, "article_name": "今年以内我想做的事", "total_annotators": 10}
{"sentence_id": 6785, "sentence_text": "那一天要是我去看了世界博览会就不能回来东京了,所以最后我决定不去博览会,回东京.有一阵子,朋友让我住他家.", "article_id": 7422, "article_name": "今年以内我想做的事", "total_annotators": 10}
{"sentence_id": 6820, "sentence_text": "我们吃到晩上9点半、就回家了。", "article_id": 7424, "article_name": "考完了~~", "total_annotators": 10}
{"sentence_id": 6967, "sentence_text": "说话流利的话看起来不像外国人,所以本来的她跟电影上的她不一様。", "article_id": 7437, "article_name": "", "total_annotators": 11}
{"sentence_id": 6980, "sentence_text": "我跟朋友说,我想看看那边,到底真的有同性人吗?", "article_id": 7438, "article_name": "228公园", "total_annotators": 11}
{"sentence_id": 7020, "sentence_text": "以前台湾人很穷的时候、剩下的吃的东西用什么的皮倦起来吃。", "article_id": 7440, "article_name": "基隆・九份", "total_annotators": 11}
{"sentence_id": 7074, "sentence_text": "看起来有很多训练的样子。", "article_id": 7442, "article_name": "看京剧", "total_annotators": 11}
{"sentence_id": 7086, "sentence_text": "但是现在知道在中国的话「蝙蝠」是好的意思。", "article_id": 7442, "article_name": "看京剧", "total_annotators": 11}
{"sentence_id": 7114, "sentence_text": "我犯了很大的失误,撞到了一颗树.", "article_id": 7443, "article_name": "我被改造了!!", "total_annotators": 10}
{"sentence_id": 7118, "sentence_text": "我醒过来,就在医院里.", "article_id": 7443, "article_name": "我被改造了!!", "total_annotators": 10}
{"sentence_id": 7142, "sentence_text": "学生有时感觉自己的汉语不如我的,我再问为什么;跟我熟悉的话,一定知道我的汉语不太好啦。", "article_id": 7444, "article_name": "越来越栏哪!", "total_annotators": 11}
{"sentence_id": 7143, "sentence_text": "其实,回国此后我的汉语越来越栏(你们肯定能确定我不是中国人嘛!)", "article_id": 7444, "article_name": "越来越栏哪!", "total_annotators": 11}
{"sentence_id": 7148, "sentence_text": "难得不能再难了--没关系。", "article_id": 7444, "article_name": "越来越栏哪!", "total_annotators": 11}
{"sentence_id": 7150, "sentence_text": "我是新到这里来的人,而且我很高兴成为个成员啊。", "article_id": 7445, "article_name": "正在学中文的人", "total_annotators": 11}
{"sentence_id": 7224, "sentence_text": "只有用英语的课真是有很大的效果吗?", "article_id": 7448, "article_name": "", "total_annotators": 11}
{"sentence_id": 7238, "sentence_text": "发生这个事故以前我每天晚上在我家附近的操场和家人一起跑步了。", "article_id": 7449, "article_name": "8.23", "total_annotators": 11}
{"sentence_id": 7278, "sentence_text": "所以女性没有自己的钱,结婚以外不能生活。", "article_id": 7453, "article_name": "18797-72878-结婚的想法", "total_annotators": 11}
{"sentence_id": 7279, "sentence_text": "加上哪儿都有媒人,媒人常常不容易分说给结婚年龄的人介绍对象。", "article_id": 7453, "article_name": "18797-72878-结婚的想法", "total_annotators": 11}
{"sentence_id": 7314, "sentence_text": "那,先在呢...我真的想念我台湾的朋友.", "article_id": 7455, "article_name": "不好意思, 我好久没用中文...", "total_annotators": 11}
{"sentence_id": 7358, "sentence_text": "可是,和简体字相比繁体字我喜欢繁体字,", "article_id": 7458, "article_name": "简体字和繁体字", "total_annotators": 11}
{"sentence_id": 7363, "sentence_text": "到电脑时代,输入繁体字比输入简体字的工夫都同样了。", "article_id": 7458, "article_name": "简体字和繁体字", "total_annotators": 11}
{"sentence_id": 7472, "sentence_text": "他果然一瞬间把它一口吃掉,不过我已经到客厅走了,看不见他都吃完了。", "article_id": 7468, "article_name": "孩子吃奶酪", "total_annotators": 11}
{"sentence_id": 7498, "sentence_text": "她很久以前就愿望开始休假,但是现在很苦恼。", "article_id": 7471, "article_name": "女儿的日记", "total_annotators": 11}
{"sentence_id": 7526, "sentence_text": "花王公司制造的“ECONA”油,由于发癌成分比率比较高,花王公司决定自主回收了。", "article_id": 7473, "article_name": "如意算盘", "total_annotators": 11}
{"sentence_id": 7555, "sentence_text": "然后,我们要去下一个节目,但是所有的活动都要排队,而且等候时间差不多100分。", "article_id": 7475, "article_name": "台场合众国", "total_annotators": 11}
{"sentence_id": 7563, "sentence_text": "所以他门被追逃遁,逃到地方是追捕的人去不了的福建的山沟。", "article_id": 7476, "article_name": "土楼和败逃者部落", "total_annotators": 11}
{"sentence_id": 7583, "sentence_text": "再说,以前多色笔的颜色只有红、绿、青、黑等基本颜色,但是现在又粉红色、橙色、淡蓝色、紫色等等,等等。", "article_id": 7477, "article_name": "现代文具", "total_annotators": 11}
{"sentence_id": 7595, "sentence_text": "捣好的年糕一定要干快吃。", "article_id": 7478, "article_name": "学校节庆", "total_annotators": 11}
{"sentence_id": 7603, "sentence_text": "我们没有办法计划处去旅游。", "article_id": 7479, "article_name": "银周", "total_annotators": 11}
{"sentence_id": 7611, "sentence_text": "还有四天的考试,我就要完成中学之旅了,我有更多的自由和空间,我一直在想成绩不好要怎样办,方向真的很渺茫,我很怕我会选择一条不适当的路,我怕我自己不能达成愿望,不过我时常和自己讲,上天一定会安排你在一个属于你的地方,所以不轮到我担心", "article_id": 7480, "article_name": "在考spm的心情", "total_annotators": 11}
{"sentence_id": 7633, "sentence_text": "另外我跟很多人交往,而且我也学到很多的事。", "article_id": 7482, "article_name": "", "total_annotators": 10}
{"sentence_id": 7670, "sentence_text": "海南有很多水果石榴啊,龙眼啊,甘蔗啊都有我最喜欢吃的是火龙果!", "article_id": 7485, "article_name": "海南岛!!", "total_annotators": 10}
{"sentence_id": 7749, "sentence_text": "要是我一直说我的麻烦,说不定我花三个小时。", "article_id": 7490, "article_name": "困难", "total_annotators": 10}
{"sentence_id": 7798, "sentence_text": "我妹妹是学生,下个年她是大学生。", "article_id": 7495, "article_name": "我家庭", "total_annotators": 10}
{"sentence_id": 7840, "sentence_text": "每次我听到这个歌我觉得高兴。", "article_id": 7499, "article_name": "中国的歌", "total_annotators": 10}
{"sentence_id": 7911, "sentence_text": "要找到甚么书该放哪边真的一开始很头晕@@"", "article_id": 7503, "article_name": "アルバイト", "total_annotators": 11}
{"sentence_id": 7933, "sentence_text": "虽然我对她多么好,她对我的态度一直很冷。", "article_id": 7504, "article_name": "爱在身边", "total_annotators": 11}
{"sentence_id": 7979, "sentence_text": "我刚刚不知道它是什么东西,但是很多人看着同样的地点。", "article_id": 7509, "article_name": "人,人在躺着路上~~!!!", "total_annotators": 11}
{"sentence_id": 8010, "sentence_text": "而且她没有机会地试她的日语.", "article_id": 7510, "article_name": "试一试!", "total_annotators": 11}
{"sentence_id": 8016, "sentence_text": "我还干过语言交换---", "article_id": 7510, "article_name": "试一试!", "total_annotators": 11}
{"sentence_id": 8071, "sentence_text": "听到她来名古屋的消息,我吃了一大惊!", "article_id": 7514, "article_name": "我们大学从今天。。。", "total_annotators": 11}
{"sentence_id": 8084, "sentence_text": "右是罐果汁,左面香烟。", "article_id": 7515, "article_name": "自动售货器", "total_annotators": 11}
{"sentence_id": 8402, "sentence_text": "我喜欢它,因为它是简单的和安静。", "article_id": 7553, "article_name": "homework, please help", "total_annotators": 10}
{"sentence_id": 8426, "sentence_text": "虽然这些都好像相对,它们也就是相统一的。", "article_id": 7554, "article_name": "第一单元:中国历史,文化篇", "total_annotators": 10}
{"sentence_id": 8428, "sentence_text": "虽然这好像疯了,就是真实。", "article_id": 7554, "article_name": "第一单元:中国历史,文化篇", "total_annotators": 10}
{"sentence_id": 8429, "sentence_text": "中国哲学的了解对懂中国文化和中文是必不可少的。", "article_id": 7554, "article_name": "第一单元:中国历史,文化篇", "total_annotators": 10}
{"sentence_id": 8433, "sentence_text": "如果我们用它们在我们自己的生活,可能拿来更好的生活方式。", "article_id": 7554, "article_name": "第一单元:中国历史,文化篇", "total_annotators": 10}
{"sentence_id": 8439, "sentence_text": "但是看这部电影可以学习中国社会一边学汉语一边享受电影。", "article_id": 7555, "article_name": "感动减少.", "total_annotators": 10}
{"sentence_id": 8451, "sentence_text": "大家愉快而又有意义的一天,希望这是你们一个良好开端。", "article_id": 7556, "article_name": "好的开端。", "total_annotators": 10}
{"sentence_id": 8489, "sentence_text": "有很多工作要做,可是我还没决定了,哈哈,我可不可以忘了我的去过?", "article_id": 7559, "article_name": "没事儿。。。", "total_annotators": 10}
{"sentence_id": 8507, "sentence_text": "我希望明天的考试成绩好的。", "article_id": 7560, "article_name": "明天晚上我又考试。", "total_annotators": 10}
{"sentence_id": 8528, "sentence_text": "因为她会说一点儿英语和日语,所以她英语和日语的歌曲,当然还中文唱歌。", "article_id": 7562, "article_name": "王菲", "total_annotators": 10}
{"sentence_id": 8548, "sentence_text": "交流越来越都他们积极地参加与日本的文化和风俗有关的活动。", "article_id": 7563, "article_name": "为了,更光明的未来!", "total_annotators": 10}
{"sentence_id": 8559, "sentence_text": "开始其他的别的地方,为加深国际友好做出贡献", "article_id": 7563, "article_name": "为了,更光明的未来!", "total_annotators": 10}
{"sentence_id": 8576, "sentence_text": "我兴趣是学汉语,看中国电影,和健身运动(锻炼身体)冲浪运动,滑雪单板,", "article_id": 7565, "article_name": "兴趣,", "total_annotators": 10}
{"sentence_id": 8577, "sentence_text": "我家族每天愉快的兴趣是感到生活价值我越老越精神了。", "article_id": 7565, "article_name": "兴趣,", "total_annotators": 10}
{"sentence_id": 8593, "sentence_text": "近来应酬太多了没办法,,,忙的夏天了。", "article_id": 7567, "article_name": "炎热的夏天到来", "total_annotators": 10}
{"sentence_id": 8594, "sentence_text": "毕竟地球越来越坏了,在世界各国各种各样的灾害很多", "article_id": 7567, "article_name": "炎热的夏天到来", "total_annotators": 10}
{"sentence_id": 8595, "sentence_text": "但是这不过才刚刚开始,但愿不要地球坏了我到死,,,,,", "article_id": 7567, "article_name": "炎热的夏天到来", "total_annotators": 10}
{"sentence_id": 8602, "sentence_text": "我的城市也每天热的日持续从上星期", "article_id": 7568, "article_name": "有点不安!", "total_annotators": 10}
{"sentence_id": 8621, "sentence_text": "然而,这个小问题不要扰我。", "article_id": 7570, "article_name": "中文:我的道路", "total_annotators": 10}
{"sentence_id": 8623, "sentence_text": "现在我真的累,因为昨天我没睡觉了,所以我今天不会很多写。", "article_id": 7570, "article_name": "中文:我的道路", "total_annotators": 10}
{"sentence_id": 8633, "sentence_text": "尽管今天天气特别好,但是过得一个好假日有点儿浪费了!", "article_id": 7571, "article_name": "《浪费时间》-2", "total_annotators": 11}
{"sentence_id": 8638, "sentence_text": "我的老板有点儿新,所以他们有时后不知道什么做。", "article_id": 7572, "article_name": "弟二日记信", "total_annotators": 11}
{"sentence_id": 8648, "sentence_text": "他告诉我以后,我说听好的!", "article_id": 7572, "article_name": "弟二日记信", "total_annotators": 11}
{"sentence_id": 8649, "sentence_text": "七月十四我坐飞机去北京,然后我要坐火车去洛阳开始做工作。", "article_id": 7572, "article_name": "弟二日记信", "total_annotators": 11}
{"sentence_id": 8680, "sentence_text": "为了及格那个考试,我应该记住很多成语,惯用语,谚语什么的。", "article_id": 7576, "article_name": "汉语成语多么难啊", "total_annotators": 11}
{"sentence_id": 8699, "sentence_text": "其中最好唱歌,所以大学的时候,我活动了乐队。", "article_id": 7577, "article_name": "荐书", "total_annotators": 11}
{"sentence_id": 8700, "sentence_text": "我经常对每个事情很积极的态度。", "article_id": 7577, "article_name": "荐书", "total_annotators": 11}
{"sentence_id": 8706, "sentence_text": "我们决定一家咖啡店,那店是朋友以前常常来的店.", "article_id": 7578, "article_name": "今天...", "total_annotators": 11}
{"sentence_id": 8717, "sentence_text": "他听完以后,他说[不要想.", "article_id": 7578, "article_name": "今天...", "total_annotators": 11}
{"sentence_id": 8739, "sentence_text": "我看过完成之前的,今天期待看完成的样子。", "article_id": 7580, "article_name": "今天我去环球金融中心了", "total_annotators": 11}
{"sentence_id": 8745, "sentence_text": "我的中国朋友常常帮我和因为他帮我,我中文好转。", "article_id": 7581, "article_name": "买东西列表", "total_annotators": 11}
{"sentence_id": 8783, "sentence_text": "我去过十九个课,所以我去过大学三十八天,因为一个课花二天了.", "article_id": 7584, "article_name": "我的夏期课完了", "total_annotators": 11}
{"sentence_id": 8800, "sentence_text": "我队员都是非常好人,我喜欢去飞镖比赛.", "article_id": 7585, "article_name": "我的心情不好...", "total_annotators": 11}
{"sentence_id": 8805, "sentence_text": "可是队长对我说「你当然参加要来」所以我一定要去飞镖比赛.", "article_id": 7585, "article_name": "我的心情不好...", "total_annotators": 11}
{"sentence_id": 8823, "sentence_text": "在世界各地各种的灾害很多,但是这不过才刚刚开始,但愿地球不要坏了,我到死以前。", "article_id": 7587, "article_name": "炎热的夏天到来。", "total_annotators": 11}
{"sentence_id": 8827, "sentence_text": "宿舍固定电话是只有一台不方便", "article_id": 7588, "article_name": "在北京那里买的到-", "total_annotators": 11}
{"sentence_id": 8841, "sentence_text": "(而且它不是正确还几次。)", "article_id": 7589, "article_name": "在线词典", "total_annotators": 11}
{"sentence_id": 8860, "sentence_text": "由此小东西,为国人叫中国不对名字。", "article_id": 7590, "article_name": "中国的英文名字", "total_annotators": 11}
{"sentence_id": 8892, "sentence_text": "只20分钟后,就出发了下次的地方!", "article_id": 7593, "article_name": "鼻高展望花的小山", "total_annotators": 10}
{"sentence_id": 8898, "sentence_text": "那个电源点是点,但是我按了那个钮,什幺功能也没发动。", "article_id": 7594, "article_name": "不孝的事件", "total_annotators": 10}
{"sentence_id": 8913, "sentence_text": "如果我不能那些问题获得好分数的话,考试合格很难。", "article_id": 7595, "article_name": "参加三级汉语考试", "total_annotators": 10}
{"sentence_id": 8919, "sentence_text": "所以我们比孩子简单买东西。", "article_id": 7596, "article_name": "大人的买东西。(有日语声音)", "total_annotators": 10}
{"sentence_id": 8929, "sentence_text": "企业知道那样的情况・・・・・它们滚滚出售我们小孩的时候喜欢的动画片的DVD-BOX!", "article_id": 7596, "article_name": "大人的买东西。(有日语声音)", "total_annotators": 10}
{"sentence_id": 8985, "sentence_text": "突然NOVA倒闭了,我丢了学汉语的地方。", "article_id": 7599, "article_name": "很好的网站", "total_annotators": 10}
{"sentence_id": 9037, "sentence_text": "最近那部漫画的最新电影上映开始了。", "article_id": 7604, "article_name": "死神", "total_annotators": 10}
{"sentence_id": 9044, "sentence_text": "我们去看过一前的,在电影院里很多都是孩子(从小学生到高中学生)。", "article_id": 7604, "article_name": "死神", "total_annotators": 10}
{"sentence_id": 9115, "sentence_text": "我感到那个东西还可以使用,扔掉的时候,我的心比较疼。", "article_id": 7610, "article_name": "《环保》。", "total_annotators": 10}
{"sentence_id": 9120, "sentence_text": "卖的时候,我们往箱子里装章鱼小丸子、给客人。", "article_id": 7610, "article_name": "《环保》。", "total_annotators": 10}
{"sentence_id": 9125, "sentence_text": "洗的话,可以再利用呢——但是我们又利用客人扔掉的容器是很大的问题!", "article_id": 7610, "article_name": "《环保》。", "total_annotators": 10}
{"sentence_id": 9128, "sentence_text": "把长椅在章鱼小丸子店的门前,所以有的客人坐在那里吃章鱼小丸子。", "article_id": 7610, "article_name": "《环保》。", "total_annotators": 10}
{"sentence_id": 9129, "sentence_text": "从塑料袋里拿出来章鱼小丸子,吃完后插入那个空箱子和一次性筷子塑料袋里,放在垃圾箱。", "article_id": 7610, "article_name": "《环保》。", "total_annotators": 10}
{"sentence_id": 9133, "sentence_text": "留心垃圾削减的人则带章鱼小丸子回家吃也说:“用手带容器所以不要塑料袋。”", "article_id": 7610, "article_name": "《环保》。", "total_annotators": 10}
{"sentence_id": 9143, "sentence_text": "(我让给某人不太漂亮的东西的话,那行动不太礼貌呢!", "article_id": 7610, "article_name": "《环保》。", "total_annotators": 10}
{"sentence_id": 9152, "sentence_text": "在电影里的客人和我们大概同岁。", "article_id": 7611, "article_name": "BLEACH", "total_annotators": 10}
{"sentence_id": 9156, "sentence_text": "去以前,我告诉他买还是出租DVD怎幺样?", "article_id": 7611, "article_name": "BLEACH", "total_annotators": 10}
{"sentence_id": 9165, "sentence_text": "我看到四卷到二十二卷!", "article_id": 7611, "article_name": "BLEACH", "total_annotators": 10}
{"sentence_id": 9193, "sentence_text": "看电影以前去餐厅喝很多饮料是我失败的地方。", "article_id": 7612, "article_name": "参加徒步会然后看赤壁《2》", "total_annotators": 10}
{"sentence_id": 9268, "sentence_text": "中国餐馆的菜比日本多,日本人没有剩菜的习惯,不知不觉吃很多。", "article_id": 7619, "article_name": "减肥", "total_annotators": 10}
{"sentence_id": 9291, "sentence_text": "现在并不属于通晓,所以一定要坚持下去不可。", "article_id": 7621, "article_name": "乱日子", "total_annotators": 10}
{"sentence_id": 9316, "sentence_text": "可是我还不满意,我的中文还不怎幺样啊,我这两年在上海工作没有感觉我的追平提高了。", "article_id": 7622, "article_name": "你好", "total_annotators": 10}
{"sentence_id": 9333, "sentence_text": "因为做火锅很简单,尽管那样", "article_id": 7623, "article_name": "什锦火锅", "total_annotators": 10}
{"sentence_id": 9363, "sentence_text": "首先,你们请让我告诉你们这件事:", "article_id": 7626, "article_name": "中文:我的道路", "total_annotators": 10}
{"sentence_id": 9378, "sentence_text": "她说“事情结束之前,又发生别的要解决的事,积压的事情越来越多,很麻烦的情况。", "article_id": 7627, "article_name": "“头大”", "total_annotators": 11}
{"sentence_id": 9398, "sentence_text": "你可以寄照片的朋友吗?", "article_id": 7628, "article_name": "Letter to 文汗。", "total_annotators": 11}
{"sentence_id": 9451, "sentence_text": "还有、这种树种上了还只四年左右过去了,还小。", "article_id": 7631, "article_name": "二月的樱花", "total_annotators": 11}
{"sentence_id": 9467, "sentence_text": "以前镜子都是圆形的,被以为是可以映出人的灵魂的神圣", "article_id": 7633, "article_name": "镜饼 kagamimochi", "total_annotators": 11}
{"sentence_id": 9481, "sentence_text": "正确的是AI指只机械人中的电脑。", "article_id": 7634, "article_name": "你知道AI吗-", "total_annotators": 11}
{"sentence_id": 9513, "sentence_text": "关于项羽和刘邦、因为在日本高中的汉文课被教四面楚歌等、没有不知道的人。", "article_id": 7636, "article_name": "神话", "total_annotators": 11}
{"sentence_id": 9526, "sentence_text": "所以我一直以为她虽然刚结婚,但不会那幺早要走。", "article_id": 7637, "article_name": "我的同事突然辞掉了。", "total_annotators": 11}
{"sentence_id": 9541, "sentence_text": "跟后接的人要做个进行确认我们的工作内容。", "article_id": 7637, "article_name": "我的同事突然辞掉了。", "total_annotators": 11}
{"sentence_id": 9616, "sentence_text": "我们在动物园能看和摸很多特别的动物。", "article_id": 7644, "article_name": "澳大利亚旅行", "total_annotators": 10}
{"sentence_id": 9703, "sentence_text": "我觉得中文发音很难,但是我想用中文做中国的朋友。", "article_id": 7652, "article_name": "今天开始写日记", "total_annotators": 9}
{"sentence_id": 9747, "sentence_text": "慢慢开始做对身体好的事。", "article_id": 7655, "article_name": "考虑自己身体", "total_annotators": 9}
{"sentence_id": 9751, "sentence_text": "过去我认为在日本没有龙卷风的现象。", "article_id": 7656, "article_name": "龙卷风", "total_annotators": 9}
{"sentence_id": 9754, "sentence_text": "从窗门瓦和屋顶的碎片冲进,刺穿墙。", "article_id": 7656, "article_name": "龙卷风", "total_annotators": 9}
{"sentence_id": 9772, "sentence_text": "我说话多幺快,每个电话需要花最低一百日元。", "article_id": 7658, "article_name": "手机费", "total_annotators": 9}
{"sentence_id": 9773, "sentence_text": "如果,我的朋友和家人用跟我一样的通信公司,我的通信就是免费。", "article_id": 7658, "article_name": "手机费", "total_annotators": 9}
{"sentence_id": 9821, "sentence_text": "我不买动画片的DVD(宫崎动画片以外),如果有外语的配音和字幕的DVD发售的话,我觉得就买!", "article_id": 7662, "article_name": "我热衷看汉语配音之霍尔的移动城堡。", "total_annotators": 9}
{"sentence_id": 9831, "sentence_text": "虽然我晒干衣服外边、但是在屋檐下的。", "article_id": 7663, "article_name": "洗的衣服湿透了。", "total_annotators": 9}
{"sentence_id": 9841, "sentence_text": "我爱上了北京,真的漂亮的地方,北京人很热情。", "article_id": 7664, "article_name": "写信", "total_annotators": 9}
{"sentence_id": 9887, "sentence_text": "现在发生了震撼全世界的大事件,一时山崩地裂和蔼巨大的水灾害,", "article_id": 7667, "article_name": "有点不安!", "total_annotators": 9}
{"sentence_id": 9915, "sentence_text": "读了信以后,我觉得我们好像.", "article_id": 7669, "article_name": "最近好吗___", "total_annotators": 9}
{"sentence_id": 9965, "sentence_text": "三页打字后,用有声书听力练习。", "article_id": 7674, "article_name": "海底两万里", "total_annotators": 9}
{"sentence_id": 9973, "sentence_text": "1991年我访问的时候,在广西北海市的一个镇,海上生活的人数比陆上生活的人还要多。", "article_id": 7675, "article_name": "海上生活:广西 北海市", "total_annotators": 9}
{"sentence_id": 10005, "sentence_text": "我听老公说今天他下班的时间比较早,所以我觉得我们一起吃晚饭,晚上7点半做好了。", "article_id": 7677, "article_name": "哪个好", "total_annotators": 9}
{"sentence_id": 10016, "sentence_text": "那家的按摩师很奇怪的人。", "article_id": 7678, "article_name": "你最近最生气的事是什幺", "total_annotators": 9}
{"sentence_id": 10113, "sentence_text": "在超市卖世界各国的几百几千种的花苗。", "article_id": 7686, "article_name": "养花", "total_annotators": 9}
{"sentence_id": 10147, "sentence_text": "夏天的时候很多客人去哪里。", "article_id": 7688, "article_name": "一个简单的电子邮件", "total_annotators": 9}
{"sentence_id": 10156, "sentence_text": "如今迎面着离别之日,我的心情其实蛮写意的。", "article_id": 7689, "article_name": "一起在享受最后几天-也许明年依然这时节", "total_annotators": 9}
{"sentence_id": 10204, "sentence_text": "据说,她一直到去年夏天虽说难听健康地生活。", "article_id": 7693, "article_name": "104岁", "total_annotators": 11}
{"sentence_id": 10240, "sentence_text": "但是技术发展真棒,最近iphone的声音输入可能确认发音。", "article_id": 7695, "article_name": "iphone的声音输入", "total_annotators": 11}
{"sentence_id": 10243, "sentence_text": "不发现的时候,到发现正确的文章继续改变发音。", "article_id": 7695, "article_name": "iphone的声音输入", "total_annotators": 11}
{"sentence_id": 10261, "sentence_text": "到不能打开信件的久远不会回到古堂的事、太悲哀啊。", "article_id": 7697, "article_name": "代答 友人帐第四话", "total_annotators": 11}
{"sentence_id": 10278, "sentence_text": "大概让想这个一会儿早。", "article_id": 7699, "article_name": "结婚。", "total_annotators": 11}
{"sentence_id": 10287, "sentence_text": "听我的同事说、昨天入梅了。", "article_id": 7700, "article_name": "今天在台北下雨。", "total_annotators": 11}
{"sentence_id": 10361, "sentence_text": "今天我决定,我的中文水平停了进步。", "article_id": 7707, "article_name": "日记: 第一天", "total_annotators": 11}
{"sentence_id": 10405, "sentence_text": "实际工作时间五个四十分钟。", "article_id": 7710, "article_name": "五个小时的圈套。", "total_annotators": 11}
{"sentence_id": 10733, "sentence_text": "我用信用卡、如果在高速公路的话我可能选ETC(电子收费系统)门。", "article_id": 7739, "article_name": "ETC 电子收费系统", "total_annotators": 10}
{"sentence_id": 10754, "sentence_text": "但总也言之,做运动是身体健康和精神的既最简单又最辛苦的方法。", "article_id": 7741, "article_name": "保持健康的方法", "total_annotators": 10}
{"sentence_id": 10763, "sentence_text": "我们的一个同事比较麻烦的性格,为很小事马上就生气。", "article_id": 7742, "article_name": "不打不相识", "total_annotators": 10}
{"sentence_id": 10776, "sentence_text": "以后博物馆我和朋友们去‘长城’书店。", "article_id": 7743, "article_name": "布鲁塞尔", "total_annotators": 10}
{"sentence_id": 10782, "sentence_text": "所以我买到特别的纸,我买了很多纸但是纸很贵。", "article_id": 7743, "article_name": "布鲁塞尔", "total_annotators": 10}
{"sentence_id": 10897, "sentence_text": "但是为什幺卖如死太辣的菜的事不是犯罪吗?", "article_id": 7750, "article_name": "辣的东西", "total_annotators": 10}
{"sentence_id": 10926, "sentence_text": "他们说'那幺如果你要换工作的话,请来我们的公司。'", "article_id": 7753, "article_name": "上月我搬家了。", "total_annotators": 10}
{"sentence_id": 10959, "sentence_text": "(啊,但是,尽管我有6000点数,不会看3D的。", "article_id": 7755, "article_name": "我们看了《我的男朋友是外国人》。", "total_annotators": 10}
{"sentence_id": 10967, "sentence_text": "她也告诉我,她坐的飞机时间去美国一共有33小时,非常很累。", "article_id": 7756, "article_name": "雪丽去美国", "total_annotators": 10}
{"sentence_id": 10973, "sentence_text": "今天我带一本汉语课本上班了。", "article_id": 7757, "article_name": "一个小时", "total_annotators": 10}
{"sentence_id": 10994, "sentence_text": "对我的工作,我开始学汉语把。", "article_id": 7759, "article_name": "这是个我的第一次的中文日记!", "total_annotators": 10}
{"sentence_id": 11042, "sentence_text": "同事说“啊,工作摇晃不摇晃?”", "article_id": 7762, "article_name": "地震", "total_annotators": 11}
{"sentence_id": 11049, "sentence_text": "在东京电车不通车,在方便商店和超级市场食品全部售完了。", "article_id": 7762, "article_name": "地震", "total_annotators": 11}
{"sentence_id": 11069, "sentence_text": "那套菜有两种类、“汉堡肉饼和油腻虾”和“汉堡肉饼和油炸鸡块”。", "article_id": 7764, "article_name": "今天的我,比较微妙的情况・・・・・・", "total_annotators": 11}
{"sentence_id": 11072, "sentence_text": "可是,看了那上桌来的菜肴的时候,我觉得“太小了!", "article_id": 7764, "article_name": "今天的我,比较微妙的情况・・・・・・", "total_annotators": 11}
{"sentence_id": 11073, "sentence_text": "那是很小大概觉得这是不是樱花虾・・・・・・哈哈,说得有点儿过分了“樱花虾”,嗯——是北方长额虾?", "article_id": 7764, "article_name": "今天的我,比较微妙的情况・・・・・・", "total_annotators": 11}
{"sentence_id": 11078, "sentence_text": "(明天,我打算写下文吧!", "article_id": 7764, "article_name": "今天的我,比较微妙的情况・・・・・・", "total_annotators": 11}
{"sentence_id": 11122, "sentence_text": "在日本《中国式离婚》的DVD就开始出售了,因此昨天在六本木举行了出售纪念特别试映会。", "article_id": 7769, "article_name": "我看了《中国式离婚》的第一集。", "total_annotators": 11}
{"sentence_id": 11130, "sentence_text": "为什幺她有那幺多的不满哦。", "article_id": 7769, "article_name": "我看了《中国式离婚》的第一集。", "total_annotators": 11}
{"sentence_id": 11141, "sentence_text": "我从小时候,到现在跟祖父母一起生活,所以我已经习惯了不但恭敬老人而且很有礼貌。", "article_id": 7770, "article_name": "我来介绍一下", "total_annotators": 11}
{"sentence_id": 11181, "sentence_text": "因为很多很多的日本的没有真的努力地学习汉语。", "article_id": 7772, "article_name": "学了中文大概一年了。", "total_annotators": 11}
{"sentence_id": 11198, "sentence_text": "因为上这样的封面有哪个你可以说英语只有一个星期!", "article_id": 7772, "article_name": "学了中文大概一年了。", "total_annotators": 11}
{"sentence_id": 11225, "sentence_text": "每一天好像做同样的事:早上起床之后,去大学上几个课,然后回家睡几个小时。", "article_id": 7775, "article_name": "这个星期的生活", "total_annotators": 11}
{"sentence_id": 11273, "sentence_text": "你创造三句话什幺你看(视觉体验),然后你跟他们自己。", "article_id": 7778, "article_name": "hypnosis Induction", "total_annotators": 10}
{"sentence_id": 11277, "sentence_text": "你创造三句话什幺你听(听觉经验),然后你跟他们自己。", "article_id": 7778, "article_name": "hypnosis Induction", "total_annotators": 10}
{"sentence_id": 11319, "sentence_text": "对了,你恐怕最重要的味道是什幺?", "article_id": 7781, "article_name": "古代米", "total_annotators": 10}
{"sentence_id": 11349, "sentence_text": "他帮我的忙学汉语,可是她不知道我跟不聪明。", "article_id": 7784, "article_name": "没事儿。。。", "total_annotators": 10}
{"sentence_id": 11405, "sentence_text": "给我的巧克力不是面糊,还是有整个甘栗。", "article_id": 7788, "article_name": "天津甘栗的 纯栗巧克力", "total_annotators": 10}
{"sentence_id": 11415, "sentence_text": "那个意思是你想住下,还想明天去什幺好的地方吗?", "article_id": 7789, "article_name": "我爸爸和阿绣罗展", "total_annotators": 10}
{"sentence_id": 11425, "sentence_text": "我们买票的时候也等很多时间,然后也得等非常多时间!", "article_id": 7789, "article_name": "我爸爸和阿绣罗展", "total_annotators": 10}
{"sentence_id": 11526, "sentence_text": "想起来有个学习汉语会都天气不好。", "article_id": 7797, "article_name": "“雨女”", "total_annotators": 10}
{"sentence_id": 11579, "sentence_text": "但是最近发现了地震的土壤液化瞬时破坏堤防。", "article_id": 7802, "article_name": "海拔零米地带", "total_annotators": 10}
{"sentence_id": 11647, "sentence_text": "1960年,一家糖果公司叫森永制菓带头儿制菓公司用报纸广告积极的宣传了情人节送给巧克力。", "article_id": 7807, "article_name": "日本的情人节", "total_annotators": 10}
{"sentence_id": 11656, "sentence_text": "大概两、三百日元,最贵五百日元左右,便宜的。", "article_id": 7807, "article_name": "日本的情人节", "total_annotators": 10}
{"sentence_id": 11665, "sentence_text": "但是,最近我们送给“意中人以外的人”,区别“那些的巧克力”和“意中人巧克力”,作了各种各样的名字呢。", "article_id": 7807, "article_name": "日本的情人节", "total_annotators": 10}
{"sentence_id": 11707, "sentence_text": "大概日英双语版,但是也有日汉双语版啊。", "article_id": 7811, "article_name": "我的日语水平。", "total_annotators": 10}
{"sentence_id": 11709, "sentence_text": "问题难是难,但是我可以都明白,正确了。", "article_id": 7811, "article_name": "我的日语水平。", "total_annotators": 10}
{"sentence_id": 11710, "sentence_text": "哈哈,我放心了我的日语理解不错。", "article_id": 7811, "article_name": "我的日语水平。", "total_annotators": 10}
{"sentence_id": 11749, "sentence_text": "我满了那个空瓶子里乌龙茶,然后在厨房里放着。", "article_id": 7815, "article_name": "愚人节", "total_annotators": 10}
{"sentence_id": 11761, "sentence_text": "可是,两三天以前我听到不吉祥的消息。", "article_id": 7816, "article_name": "枝雀师傅的开场白(1)", "total_annotators": 10}
{"sentence_id": 11774, "sentence_text": "在电视里,有时我看过那的样子。", "article_id": 7817, "article_name": "志愿者活动", "total_annotators": 10}
{"sentence_id": 11793, "sentence_text": "比如说,你早上没有满满地吃的时间。", "article_id": 7819, "article_name": "パクパク、ガッツリ、ささっと、せかせか的意思。", "total_annotators": 11}
{"sentence_id": 11798, "sentence_text": "你吃米饭(还没吞下),就吸吮酱汤,然后就吃咸菜・・・・・・", "article_id": 7819, "article_name": "パクパク、ガッツリ、ささっと、せかせか的意思。", "total_annotators": 11}
{"sentence_id": 11815, "sentence_text": "别说没有时间做作业和抄写日记,没有时间会写新的日记!", "article_id": 7821, "article_name": "不妙哦~。", "total_annotators": 11}
{"sentence_id": 11855, "sentence_text": "不管心境原本有多稳定,经过又长又磕磕绊绊的路估计谁迟早都受到影响。", "article_id": 7825, "article_name": "来来往往的国外旅客", "total_annotators": 11}
{"sentence_id": 11858, "sentence_text": "这年经常会反问自己这次踏上异国土壤值不值得,到目前为止答案依然为“是”,因这段时间对自己的成长与世界观的确有一定的绽放和拓展,只要保持痛并快乐着的心态最终没什幺熬不出来的吧。", "article_id": 7825, "article_name": "来来往往的国外旅客", "total_annotators": 11}
{"sentence_id": 11928, "sentence_text": "她们喜欢了动画片和电视游戏里的角色,然后读原着或者历史书,最后她们变成了关于历史熟悉极了。", "article_id": 7828, "article_name": "历女(前一半)", "total_annotators": 11}
{"sentence_id": 11930, "sentence_text": "你读日本的漫画的时候,也看很多拟声词!", "article_id": 7829, "article_name": "拟声词", "total_annotators": 11}
{"sentence_id": 11965, "sentence_text": "把得不到收入的家族作为“被抚养者”而免得付费。", "article_id": 7831, "article_name": "日本的医疗保险制度", "total_annotators": 11}
{"sentence_id": 12029, "sentence_text": "每个星期,我做我的先生工作。", "article_id": 7837, "article_name": "昨天、今天和明天", "total_annotators": 11}
{"sentence_id": 12038, "sentence_text": "比电视剧电台是更有益、原因是比电视剧更少沉默时间。", "article_id": 7838, "article_name": "NPR", "total_annotators": 9}
{"sentence_id": 12049, "sentence_text": "而且经验叶子比赛的人就是几乎没有。", "article_id": 7839, "article_name": "ちはやふる", "total_annotators": 9}
{"sentence_id": 12052, "sentence_text": "听读手的声音后立即对应的快速的运动力。", "article_id": 7839, "article_name": "ちはやふる", "total_annotators": 9}
{"sentence_id": 12061, "sentence_text": "我一有什幺事去那商店到各处看了一遍。", "article_id": 7840, "article_name": "百元商店", "total_annotators": 9}
{"sentence_id": 12135, "sentence_text": "下个月我也要去两次中国。", "article_id": 7847, "article_name": "今天不去上班", "total_annotators": 9}
{"sentence_id": 12182, "sentence_text": "喂,背子,别像一个小孩子怕不可怕的东西。", "article_id": 7850, "article_name": "没题目", "total_annotators": 9}
{"sentence_id": 12195, "sentence_text": "费用是一个人4,500日元、比较贵,味道倒不太好吃、一般般。", "article_id": 7852, "article_name": "年终联欢会", "total_annotators": 9}
{"sentence_id": 12218, "sentence_text": "希望从饭店看见烧山,我门几个月也以前订了那幺房间。", "article_id": 7854, "article_name": "烧山", "total_annotators": 9}
{"sentence_id": 12220, "sentence_text": "马上就关灯,从很暗的房间里看见山了。", "article_id": 7854, "article_name": "烧山", "total_annotators": 9}
{"sentence_id": 12223, "sentence_text": "最后火势还在全部蔓延了。", "article_id": 7854, "article_name": "烧山", "total_annotators": 9}
{"sentence_id": 12224, "sentence_text": "真可惜几天以前一直下雨了,而且当天下雪了,", "article_id": 7854, "article_name": "烧山", "total_annotators": 9}
{"sentence_id": 12226, "sentence_text": "不过漆黑的天空里看得见火苗非常很美啊。", "article_id": 7854, "article_name": "烧山", "total_annotators": 9}
{"sentence_id": 12240, "sentence_text": "所以,到最近没有时间写日记。", "article_id": 7856, "article_name": "我回日本过三个月了。", "total_annotators": 9}
{"sentence_id": 12252, "sentence_text": "到那时候要在电脑写中文日记,所以还是写得很少。", "article_id": 7856, "article_name": "我回日本过三个月了。", "total_annotators": 9}
{"sentence_id": 12281, "sentence_text": "这部电视节目描述怎幺我的大脑从出生发育。", "article_id": 7860, "article_name": "一点点羡慕", "total_annotators": 9}
{"sentence_id": 12300, "sentence_text": "因为,讲中文,自己自然会用肚子呼吸,所以要从肚子的底层要出声音.", "article_id": 7862, "article_name": "中国语", "total_annotators": 9}
{"sentence_id": 12340, "sentence_text": "客人不知道这个事件,所以他也不知道他买很幸运的价格!", "article_id": 7863, "article_name": "“学生时代的打工经验。”", "total_annotators": 9}
{"sentence_id": 12412, "sentence_text": "已经三,四个月我没有写用这个网站,我差一点要忘了我的日记。", "article_id": 7871, "article_name": "好久没见", "total_annotators": 9}
{"sentence_id": 12466, "sentence_text": "照片的粉色的小动物的名字是bakukichi。", "article_id": 7874, "article_name": "美仕唐纳滋", "total_annotators": 9}
{"sentence_id": 12492, "sentence_text": "点菜水饺子和炒饭后、出来的水饺子是...包皮很薄和不柔。", "article_id": 7876, "article_name": "水饺子", "total_annotators": 9}
{"sentence_id": 12518, "sentence_text": "是人人常常错想我是韩国人。", "article_id": 7879, "article_name": "我不是韩国人。", "total_annotators": 9}
{"sentence_id": 12540, "sentence_text": "并且、想去哪里听西藏音乐。", "article_id": 7880, "article_name": "我想去西藏。", "total_annotators": 9}
{"sentence_id": 12545, "sentence_text": "我要工作在GLOBALCROSSROAD夏天学校。", "article_id": 7881, "article_name": "新的信息!", "total_annotators": 9}
{"sentence_id": 12553, "sentence_text": "我今个夏天以后学繁体字。", "article_id": 7881, "article_name": "新的信息!", "total_annotators": 9}
{"sentence_id": 12554, "sentence_text": "大家年末年初怎幺度过了吗?", "article_id": 7882, "article_name": "新年好!", "total_annotators": 9}
{"sentence_id": 12577, "sentence_text": "通常在高中任教的语言是西班牙语,德语和法语的浪漫语言。", "article_id": 7883, "article_name": "中文", "total_annotators": 9}
{"sentence_id": 12608, "sentence_text": "交谈过了一会儿,服务员理解了某个男人说什幺话。", "article_id": 7885, "article_name": "“我是中国人”", "total_annotators": 11}
{"sentence_id": 12612, "sentence_text": "而我想应该努力学习汉语吧。", "article_id": 7885, "article_name": "“我是中国人”", "total_annotators": 11}
{"sentence_id": 12626, "sentence_text": "所以我们早上买午饭去工作或做弁当拿去工作。", "article_id": 7887, "article_name": "弁当", "total_annotators": 11}
{"sentence_id": 12628, "sentence_text": "差不多每天我都拿昨晚饭的菜。", "article_id": 7887, "article_name": "弁当", "total_annotators": 11}
{"sentence_id": 12643, "sentence_text": "我们说,该不该说别人我们的中奖。", "article_id": 7888, "article_name": "彩票", "total_annotators": 11}
{"sentence_id": 12683, "sentence_text": "我的第一汉语/中文日记!", "article_id": 7892, "article_name": "今天是我妹妹生日。", "total_annotators": 11}
{"sentence_id": 12721, "sentence_text": "我发现油箱里的那张明信片的时候,我觉得从银行定期存款的满期日的通知。", "article_id": 7895, "article_name": "没有时间!!", "total_annotators": 11}
{"sentence_id": 12767, "sentence_text": "对了,介绍一下我这个外国小伙子吧 汉语正式的学了三个学期,说具体就是一年在美国德州州立大学加上一个学期在南大海外学院的留学课程。", "article_id": 7898, "article_name": "说个自我介绍吧", "total_annotators": 11}
{"sentence_id": 12769, "sentence_text": "过来以前已把一份位于深圳福田区的工作安排好了,但到了之后没做两个月已经忍不下去,那份工作说简单就是外教,不是我的菜,最后怀着十分烦躁的情绪就不可终日的辞职。", "article_id": 7898, "article_name": "说个自我介绍吧", "total_annotators": 11}
{"sentence_id": 12866, "sentence_text": "把馕带来在我们坐的餐桌是看得很大,大吃一惊。", "article_id": 7907, "article_name": "印度・尼泊尔菜的餐厅 其之三", "total_annotators": 11}
{"sentence_id": 13347, "sentence_text": "两个公司是同一的亚马孙,不是吗?", "article_id": 7943, "article_name": "电子书", "total_annotators": 10}
{"sentence_id": 13358, "sentence_text": "星期一再来了,我一定要去学校学习。", "article_id": 7945, "article_name": "很忙的学习(在大学)", "total_annotators": 10}
{"sentence_id": 13391, "sentence_text": "很早以前汽水饮料还咖啡是主流、最近的主流是茶、而且日本绿茶。", "article_id": 7948, "article_name": "绿茶", "total_annotators": 10}
{"sentence_id": 13413, "sentence_text": "我相信外表特别眼睛直接和内心有关系,也构成人的个性。", "article_id": 7949, "article_name": "描述外表", "total_annotators": 10}
{"sentence_id": 13490, "sentence_text": "我很想会我的老师之间中文话。", "article_id": 7956, "article_name": "我想努力", "total_annotators": 10}
{"sentence_id": 13493, "sentence_text": "当我过学习日文时候,在常常早上睡醒的学生。", "article_id": 7956, "article_name": "我想努力", "total_annotators": 10}
{"sentence_id": 13514, "sentence_text": "我家族每天愉快的兴趣是感到生活价值我越老越精神了。", "article_id": 7958, "article_name": "兴趣,", "total_annotators": 10}
{"sentence_id": 13520, "sentence_text": "并且今年是室兰市开港口140年和市制度90年因为纪念事业很多,志愿活动可是大部分是在室外的", "article_id": 7959, "article_name": "炎热的夏天到来。", "total_annotators": 10}
{"sentence_id": 13563, "sentence_text": "通过他们的身体语言和幽默的态度我们开始发现这些动物迷人、脆弱。", "article_id": 7963, "article_name": "Tim Flach 拍的马", "total_annotators": 11}
{"sentence_id": 13596, "sentence_text": "明年夏天我一定会去他的家因为我很像他们。", "article_id": 7965, "article_name": "大家好,我再回来", "total_annotators": 11}
{"sentence_id": 13604, "sentence_text": "比利时的特色,可能巧克力。", "article_id": 7965, "article_name": "大家好,我再回来", "total_annotators": 11}
{"sentence_id": 13622, "sentence_text": "不但感动而且使我不得不考虑。", "article_id": 7966, "article_name": "感动减少.", "total_annotators": 11}
{"sentence_id": 13668, "sentence_text": "我不知道对吸血鬼适合这个《死》的句。", "article_id": 7969, "article_name": "金发的吸血鬼", "total_annotators": 11}
{"sentence_id": 13684, "sentence_text": "从金田镇到金田村的四公里没有交通手段不得不走路去了。", "article_id": 7970, "article_name": "金田村太平天国起义古迹", "total_annotators": 11}
{"sentence_id": 13703, "sentence_text": "命运的意思就是你后来还不发生的未来情况。", "article_id": 7972, "article_name": "命运", "total_annotators": 11}
{"sentence_id": 13708, "sentence_text": "这句话表示第二想法那种的人。", "article_id": 7972, "article_name": "命运", "total_annotators": 11}
{"sentence_id": 13809, "sentence_text": "很多人得分了一百七十以上。", "article_id": 7981, "article_name": "保龄球比赛", "total_annotators": 10}
{"sentence_id": 13819, "sentence_text": "到这个月底为止我也许能产生出“特别忙”的情况。", "article_id": 7982, "article_name": "笔译考试", "total_annotators": 10}
{"sentence_id": 13834, "sentence_text": "-让我考虑考虑…这些天家家户户有电脑。", "article_id": 7984, "article_name": "对话:爱好", "total_annotators": 10}
{"sentence_id": 13859, "sentence_text": "我在中国的时候,我每次觉得我的汉语不太好。", "article_id": 7985, "article_name": "广州。", "total_annotators": 10}
{"sentence_id": 13940, "sentence_text": "也许写完后可以睡觉:)", "article_id": 7992, "article_name": "你们为什么学习外文", "total_annotators": 10}
{"sentence_id": 14055, "sentence_text": "然后,他就打电话确认在不在担当医生后去急救医院。", "article_id": 8002, "article_name": "不必担心了。", "total_annotators": 10}
{"sentence_id": 14057, "sentence_text": "手术后的情况良好,第二天已经搬普通病房楼,第三天已经可以自己坐起身体,第四天不用给她打点滴。", "article_id": 8002, "article_name": "不必担心了。", "total_annotators": 10}
{"sentence_id": 14148, "sentence_text": "但是我希望看到你更经常明年比今年。", "article_id": 8008, "article_name": "贺年的信", "total_annotators": 10}
{"sentence_id": 14159, "sentence_text": "这就是说不仅失去自己的工作,而应该白手起家了。", "article_id": 8010, "article_name": "满怀", "total_annotators": 10}
{"sentence_id": 14205, "sentence_text": "我早上那麼時候諗住今天種花,然後打掃。", "article_id": 8013, "article_name": "我要早些睡觉。", "total_annotators": 10}
{"sentence_id": 14207, "sentence_text": "明天我去「honham」在廣東話老師的家要上堂。", "article_id": 8013, "article_name": "我要早些睡觉。", "total_annotators": 10}
{"sentence_id": 14264, "sentence_text": "可是我们从我们周围的人不但可能找到一个失败的榜样,也可能找到一个成功的榜样。", "article_id": 8017, "article_name": "一片读后感", "total_annotators": 10}
{"sentence_id": 14270, "sentence_text": "可是这不说,乌鸦的人生必要常常比老鹰不好。", "article_id": 8017, "article_name": "一片读后感", "total_annotators": 10}
{"sentence_id": 14272, "sentence_text": "重要的是找对自己适应的目标,向这个目标热情地,认真地追求。", "article_id": 8017, "article_name": "一片读后感", "total_annotators": 10}
{"sentence_id": 14472, "sentence_text": "为了弥补我的中国知识开始视听而已。", "article_id": 8030, "article_name": "三国志", "total_annotators": 11}
{"sentence_id": 14495, "sentence_text": "很高兴知道你在名古屋跟你妈妈过得好时间!", "article_id": 8031, "article_name": "送给朋友的短信.", "total_annotators": 11}
{"sentence_id": 14554, "sentence_text": "除了印尼语,英语,西班牙语,直到现在我学习了法语,德育,汉语,日本语,意大利语.", "article_id": 8035, "article_name": "自我介绍", "total_annotators": 11}
{"sentence_id": 14568, "sentence_text": "她的母亲的名字是玛莎和她的弟弟的名字是比利和萨姆。", "article_id": 8036, "article_name": "My best friend Molly!", "total_annotators": 10}
{"sentence_id": 14580, "sentence_text": "她吃午餐约1.00和她回家,约3.00", "article_id": 8036, "article_name": "My best friend Molly!", "total_annotators": 10}
{"sentence_id": 14587, "sentence_text": "我在日本的日本人没影响过可是,今年除夕我去年终联欢会我的汉语学校。", "article_id": 8037, "article_name": "春节中国人做什么-", "total_annotators": 10}
{"sentence_id": 14590, "sentence_text": "日本人是新年吃年糕再相互给贺年片还是穿和服和见家人和亲戚。", "article_id": 8037, "article_name": "春节中国人做什么-", "total_annotators": 10}
{"sentence_id": 14591, "sentence_text": "或,写开笔今年的抱负。", "article_id": 8037, "article_name": "春节中国人做什么-", "total_annotators": 10}
{"sentence_id": 14592, "sentence_text": "我的今年抱负是“我会说汉语!”", "article_id": 8037, "article_name": "春节中国人做什么-", "total_annotators": 10}
{"sentence_id": 14609, "sentence_text": "收到礼节性巧克力的中年男性拜托他的老婆卖对礼节性巧克力的还给答谢礼品。", "article_id": 8039, "article_name": "怀特节", "total_annotators": 9}
{"sentence_id": 14634, "sentence_text": "惩罚对象是打决斗的双方和见证人。", "article_id": 8041, "article_name": "决斗罪-修订-", "total_annotators": 9}
{"sentence_id": 14692, "sentence_text": "小李见异思迁,一美女前边过了,就嬉皮笑脸笑。", "article_id": 8045, "article_name": "气", "total_annotators": 9}
{"sentence_id": 14748, "sentence_text": "在上讲座时,讲座老师让我们用一个纸写个今年的最终目标和每一周,每天的的计划。", "article_id": 8049, "article_name": "听一个讲座", "total_annotators": 9}
{"sentence_id": 14783, "sentence_text": "但是除了这个被stephaniemayer(《暮光之城》小说的作家)引起的吸血鬼热现在有很多,很多关于吸血鬼的小说,电影,电视剧,俱乐部,音乐对等等。", "article_id": 8051, "article_name": "吸血鬼", "total_annotators": 9}
{"sentence_id": 14786, "sentence_text": "(人们特别喜欢巴菲和那个帅哥的复杂关系)但是因为那时候这有它,只有这一个关于吸血鬼的电视剧,大家就不觉得有什么奇怪。", "article_id": 8051, "article_name": "吸血鬼", "total_annotators": 9}
{"sentence_id": 14788, "sentence_text": "我个人不太喜欢看这些东西,但是我妹妹就崇拜它们", "article_id": 8051, "article_name": "吸血鬼", "total_annotators": 9}
{"sentence_id": 14805, "sentence_text": "我自己的职业观是如下。", "article_id": 8053, "article_name": "8 我人生的职业观越来越清楚", "total_annotators": 10}
{"sentence_id": 15085, "sentence_text": "世界好大,但大部分的人们只有活动自己的母国。", "article_id": 8072, "article_name": "大家好,", "total_annotators": 11}
{"sentence_id": 15101, "sentence_text": "大部分有一个人来参加演讲,小部分有两个~8个人来参加演讲。", "article_id": 8074, "article_name": "关于留学生汉语演讲比赛", "total_annotators": 11}
{"sentence_id": 15114, "sentence_text": "和一家韩国人、留学生的等6个人一起走去一家叫做‘长白山’的做专门韩国菜的餐厅,吃石锅拌饭、烤五花肉,喝韩国的白酒‘烧酒’,过得乐融融的。", "article_id": 8074, "article_name": "关于留学生汉语演讲比赛", "total_annotators": 11}
{"sentence_id": 15168, "sentence_text": "她的大儿子已经是16岁了,能自理。", "article_id": 8079, "article_name": "六个孩子的妈妈", "total_annotators": 11}
{"sentence_id": 15214, "sentence_text": "因为在日本银行常常合并了,所以现在那张存折上写的银行没有。", "article_id": 8084, "article_name": "银行存折", "total_annotators": 11}
{"sentence_id": 15234, "sentence_text": "从两个月开始,我家阳台的小桌子上一直有栀子。", "article_id": 8086, "article_name": "栀子", "total_annotators": 11}
{"sentence_id": 15241, "sentence_text": "但是,作为专业主妇,她在外国生活上作得不让人感到人生地不熟。", "article_id": 8086, "article_name": "栀子", "total_annotators": 11}
{"sentence_id": 15245, "sentence_text": "我妻子和几位韩国太太经常在喜欢去爬山,这座上位于我们住的公寓附近。", "article_id": 8086, "article_name": "栀子", "total_annotators": 11}
{"sentence_id": 15290, "sentence_text": "为了买窗帘等的东西我要去\"MODERNHOUSE\"", "article_id": 8088, "article_name": "装修", "total_annotators": 11}
{"sentence_id": 15291, "sentence_text": "可我朋友说今天本想早退公司,不过她的上司不让她走。", "article_id": 8088, "article_name": "装修", "total_annotators": 11}
{"sentence_id": 15299, "sentence_text": "由于玩儿一个星期电子游戏,韩国人死了。", "article_id": 8089, "article_name": "昨天,今天,和明天", "total_annotators": 11}
{"sentence_id": 15322, "sentence_text": "求求你,安全第一的原则。", "article_id": 8091, "article_name": "1:29:300的法则", "total_annotators": 10}
{"sentence_id": 15325, "sentence_text": "她附属85岁以上人的班,但是因为除了她以外一个人也没有选手,所以她常常参加75岁以上人的班。", "article_id": 8092, "article_name": "88岁的女性", "total_annotators": 10}
{"sentence_id": 15343, "sentence_text": "我听见的时候突然想起来最有名的蒙古人:temujin(怎么写?)", "article_id": 8093, "article_name": "Sainkho", "total_annotators": 10}
{"sentence_id": 15360, "sentence_text": "可是发生了不得已的情况没成功你准备的事情。", "article_id": 8096, "article_name": "到时候。。。", "total_annotators": 10}
{"sentence_id": 15390, "sentence_text": "相反中国的高铁路又快又准时。", "article_id": 8098, "article_name": "几个句子", "total_annotators": 10}
{"sentence_id": 15402, "sentence_text": "你现在可以看到我的电脑也可以些汉语。", "article_id": 8100, "article_name": "今天", "total_annotators": 10}
{"sentence_id": 15428, "sentence_text": "现在我也经常喝茶喝常常骑自行车生活。", "article_id": 8101, "article_name": "今天我又失败了减肥", "total_annotators": 10}
{"sentence_id": 15436, "sentence_text": "要是很长时间不说就汉语不多都忘光了要用的时候好多词都想不起来了。", "article_id": 8102, "article_name": "你一定抽出来时间", "total_annotators": 10}
{"sentence_id": 15439, "sentence_text": "我同意所以我打算学越来越努力。", "article_id": 8102, "article_name": "你一定抽出来时间", "total_annotators": 10}
{"sentence_id": 15446, "sentence_text": "可是今天我自拍的结果真让我感到“年龄不饶人”这句话。", "article_id": 8103, "article_name": "年龄不饶人", "total_annotators": 10}
{"sentence_id": 15448, "sentence_text": "那儿的师傅把我的照片修改后才能值得看。", "article_id": 8103, "article_name": "年龄不饶人", "total_annotators": 10}
{"sentence_id": 15451, "sentence_text": "「射雕英雄传」里面的黄药师门下们都有「风」。", "article_id": 8104, "article_name": "日本和中国的起名法则差异", "total_annotators": 10}
{"sentence_id": 15452, "sentence_text": "「笑傲江湖」里面也有同样的被起名人们。", "article_id": 8104, "article_name": "日本和中国的起名法则差异", "total_annotators": 10}
{"sentence_id": 15476, "sentence_text": "那些传单记戴我常常买东西的组合的广告。", "article_id": 8106, "article_name": "身体很累", "total_annotators": 10}
{"sentence_id": 15489, "sentence_text": "好像大多数女孩就在那里跳舞与他们的朋友。", "article_id": 8107, "article_name": "我不喜欢夜点", "total_annotators": 10}
{"sentence_id": 15519, "sentence_text": "因此我能获得了高材生的奖学金。", "article_id": 8109, "article_name": "我是可爱的宠爱狗。", "total_annotators": 10}
{"sentence_id": 15520, "sentence_text": "其实,如果我能说“由于我的中文水平有点低,我难以想起来文章话题”,那会更方便的。", "article_id": 8110, "article_name": "写文章的困难", "total_annotators": 10}
{"sentence_id": 15548, "sentence_text": "他刚从马来西亚回国了,听他的话又好像有意思。", "article_id": 8111, "article_name": "一起去吃午饭把!", "total_annotators": 10}
{"sentence_id": 15562, "sentence_text": "他从2岁一直相当手表修理人。", "article_id": 8113, "article_name": "昨天我看了一个电视节目", "total_annotators": 10}
{"sentence_id": 15563, "sentence_text": "他说“因为手表修理很精密和很累,但是我很喜欢那个工作,所以当手表修理人不胜愉快”。", "article_id": 8113, "article_name": "昨天我看了一个电视节目", "total_annotators": 10}
{"sentence_id": 15580, "sentence_text": "新闻表示跟他们感谢,和希望以后不发现这样的不好情况。", "article_id": 8114, "article_name": "5.12", "total_annotators": 10}
{"sentence_id": 15619, "sentence_text": "最初我孩子热中用积木玩儿,不过马上没有常性。", "article_id": 8117, "article_name": "宝宝的淘气", "total_annotators": 10}
{"sentence_id": 15652, "sentence_text": "第二个解释经济的危机和人民币生殖影响出口行业。", "article_id": 8121, "article_name": "对话", "total_annotators": 10}
{"sentence_id": 15685, "sentence_text": "四月是新节目的季节,所以我得录下来新节目很多。", "article_id": 8125, "article_name": "录象机", "total_annotators": 10}
{"sentence_id": 15693, "sentence_text": "我想要一份文件夹为了挪动印刷的纸,变容易复习汉语。", "article_id": 8126, "article_name": "去了100日元店", "total_annotators": 10}
{"sentence_id": 15697, "sentence_text": "我拿着用方便的文件夹去了商城中心里的一家100日元店(100yenshop)。", "article_id": 8126, "article_name": "去了100日元店", "total_annotators": 10}
{"sentence_id": 15700, "sentence_text": "昨天终于没有了发烧,有了笑容,使我们放心了.", "article_id": 8127, "article_name": "她病好了.", "total_annotators": 10}
{"sentence_id": 15707, "sentence_text": "用了冰水,帖在身上保冷板,给她很多水.", "article_id": 8127, "article_name": "她病好了.", "total_annotators": 10}
{"sentence_id": 15759, "sentence_text": "但是今晚因该需要泡澡了,为了明天的工作应该要掉了今天的疲劳。", "article_id": 8131, "article_name": "我要把今天的疲劳恢复过来。", "total_annotators": 10}
{"sentence_id": 15767, "sentence_text": "虽然这个长假4天到6,7天(有些人可以取得请假)也很多人想去国外,还有想做有些需要时间的事情。", "article_id": 8132, "article_name": "五月病", "total_annotators": 10}
{"sentence_id": 15785, "sentence_text": "真的吃腻了(╯﹏╰)昨天吃的面包里有了一点点的霉.可是很少部分的所以就吃光了.", "article_id": 8133, "article_name": "喜欢的东西", "total_annotators": 10}
{"sentence_id": 15800, "sentence_text": "竟然有了一点儿空儿,网上写日子呢。", "article_id": 8134, "article_name": "下雨", "total_annotators": 10}
{"sentence_id": 15815, "sentence_text": "表面上各自创造将来的工作,梦等等,可是这位教授以为将来是我们一人做的东西。", "article_id": 8135, "article_name": "要不是朋友们的帮助和建议, 说不定现在的我不会是这样", "total_annotators": 10}
{"sentence_id": 15824, "sentence_text": "今天的入学式能樱花满开飞中举行吧。", "article_id": 8136, "article_name": "樱花满开飞", "total_annotators": 10}
{"sentence_id": 15834, "sentence_text": "我还有吃了色拉以后甜食。", "article_id": 8137, "article_name": "愉快的一天!", "total_annotators": 10}
{"sentence_id": 15890, "sentence_text": "在山顶我们沉醉了一阵与满意,过了一会儿开始下山。", "article_id": 8142, "article_name": "高尾山", "total_annotators": 11}
{"sentence_id": 15895, "sentence_text": "其实这次是第三次的高尾山,我希望无论如何去登再次那山。", "article_id": 8142, "article_name": "高尾山", "total_annotators": 11}
{"sentence_id": 15908, "sentence_text": "看过那个电影以后我找找周接论的歌多听了。", "article_id": 8144, "article_name": "关于中文 4月 17号 晴天", "total_annotators": 11}
{"sentence_id": 15919, "sentence_text": "我希望不久会说一口流利的汉语跟中国人一样的。", "article_id": 8144, "article_name": "关于中文 4月 17号 晴天", "total_annotators": 11}
{"sentence_id": 15957, "sentence_text": "现代的作者没有比上述作者喜欢的。", "article_id": 8147, "article_name": "日本之本", "total_annotators": 11}
{"sentence_id": 15984, "sentence_text": "为老外方便的三国演义。", "article_id": 8150, "article_name": "为老外方便的三国演义。", "total_annotators": 11}
{"sentence_id": 16017, "sentence_text": "更说,旅行费很便宜,还有从日本到台湾,只要两个小时左右,就到了。", "article_id": 8151, "article_name": "我的暑假快到结束了,,,", "total_annotators": 11}
{"sentence_id": 16051, "sentence_text": "也许掉了在垃圾箱里,然后和其他垃圾一起垃。", "article_id": 8153, "article_name": "我今天丢失了眼镜。", "total_annotators": 11}
{"sentence_id": 16058, "sentence_text": "我妹妹和妹夫正住在我父母住的附近。", "article_id": 8154, "article_name": "我妈妈", "total_annotators": 11}
{"sentence_id": 16065, "sentence_text": "超过4年的时间让我费心的事——写辞呈-——我终于下了决心。", "article_id": 8155, "article_name": "我要挑战。", "total_annotators": 11}
{"sentence_id": 16128, "sentence_text": "不那样的话,因为我已经太吃过多了,不能就这样值之不理。", "article_id": 8160, "article_name": "吃饱了", "total_annotators": 10}
{"sentence_id": 16137, "sentence_text": "所以我为了表示感谢就怀我的心思给老师致信。", "article_id": 8161, "article_name": "感谢,", "total_annotators": 10}
{"sentence_id": 16141, "sentence_text": "虽然如今我的势力不足,可为达到目标而积极努力。", "article_id": 8161, "article_name": "感谢,", "total_annotators": 10}
{"sentence_id": 16152, "sentence_text": "晚饭是在体育东路川国演义的。", "article_id": 8162, "article_name": "广州旅游的计划!", "total_annotators": 10}
{"sentence_id": 16163, "sentence_text": "在“嘉禾望岗站“下车后,换乘2号县去到“海珠广场站“。", "article_id": 8163, "article_name": "广州旅游的计划(2)", "total_annotators": 10}
{"sentence_id": 16192, "sentence_text": "她眉毛很粗重,总是学生制服装束出。", "article_id": 8165, "article_name": "井本绚子", "total_annotators": 10}
{"sentence_id": 16333, "sentence_text": "除了「樱桃小丸子」「我们这一家」等等以外常看", "article_id": 8177, "article_name": "PPLive", "total_annotators": 10}
{"sentence_id": 16338, "sentence_text": "因为有意思现在也继续看有字幕然而演员说得非常快", "article_id": 8177, "article_name": "PPLive", "total_annotators": 10}
{"sentence_id": 16377, "sentence_text": "有些地方有陡坡和石头台阶有一百磴以上。", "article_id": 8180, "article_name": "过了很愉快的一天", "total_annotators": 10}
{"sentence_id": 16418, "sentence_text": "昨天傍晚为了我朋友需要检查头部,我服侍他去医院。", "article_id": 8184, "article_name": "我服侍朋友去医院", "total_annotators": 10}
{"sentence_id": 16436, "sentence_text": "周边的人都很担心:夏天怎么过去才能好呢。", "article_id": 8186, "article_name": "夏天来到了", "total_annotators": 10}
{"sentence_id": 16456, "sentence_text": "我希望很快适用于一个体面的人。", "article_id": 8187, "article_name": "运气不好", "total_annotators": 10}
{"sentence_id": 16482, "sentence_text": "在出版社打工的我的同屋,她给我们介绍这次活动,所以我们很高兴地参与现场录音。", "article_id": 8189, "article_name": "张信哲歌迷(2)", "total_annotators": 10}
{"sentence_id": 16506, "sentence_text": "他这个人带有幽默性质的人,我们都觉得放松,不紧张了。", "article_id": 8190, "article_name": "张信哲歌迷(3)", "total_annotators": 10}
{"sentence_id": 16530, "sentence_text": "只有60分钟的时间,可是我们感到1天呢。", "article_id": 8190, "article_name": "张信哲歌迷(3)", "total_annotators": 10}
{"sentence_id": 16553, "sentence_text": "听说在日本60岁以上的人中100分之50的人为了健康留心运动。", "article_id": 8192, "article_name": "走路的人很多", "total_annotators": 10}
{"sentence_id": 16562, "sentence_text": "最近 我找到了一个好办法。", "article_id": 8193, "article_name": "最近我的生活是。。", "total_annotators": 10}
{"sentence_id": 16563, "sentence_text": "这就是对我的汉语水平提高的帮助办法之一。", "article_id": 8193, "article_name": "最近我的生活是。。", "total_annotators": 10}
{"sentence_id": 16848, "sentence_text": "当然我已经知道,这种不是对身体好的东西。", "article_id": 8214, "article_name": "10(星期五)真可怕", "total_annotators": 9}
{"sentence_id": 16860, "sentence_text": "渐渐地来烤白薯的季节。", "article_id": 8215, "article_name": "白薯", "total_annotators": 9}
{"sentence_id": 16874, "sentence_text": "他学习十年寒窗,然后成了大学的教师。", "article_id": 8216, "article_name": "成语的例句2", "total_annotators": 9}
{"sentence_id": 16885, "sentence_text": "我觉得得奖的电影,比如《黑天鹅》、《王者之聲:宣戰時刻》等,都是有长处,应得赢,但是典礼有点无聊,表演员也有点虚荣。", "article_id": 8218, "article_name": "电影", "total_annotators": 9}
{"sentence_id": 16887, "sentence_text": "大概来说,中国的电影给人对中国留的印象是:中国的女人很美丽,中国的男人的武术很厉害。", "article_id": 8218, "article_name": "电影", "total_annotators": 9}
{"sentence_id": 16889, "sentence_text": "我也看过李安的另外两片电影,就是《色,戒》那个间谍片和《喜宴》那个剧情片。", "article_id": 8218, "article_name": "电影", "total_annotators": 9}
{"sentence_id": 16919, "sentence_text": "昨天的她的步行比上周好。", "article_id": 8221, "article_name": "观樱", "total_annotators": 9}
{"sentence_id": 16924, "sentence_text": "我希望她花落以前出院,而且和我一起去观樱。", "article_id": 8221, "article_name": "观樱", "total_annotators": 9}
{"sentence_id": 16930, "sentence_text": "对于日本的歌手她知道得太多,所以我常常听她的话和学习日本的歌手.", "article_id": 8222, "article_name": "今天我打算见我的好朋友!", "total_annotators": 9}
{"sentence_id": 16944, "sentence_text": "所以我觉得第一对策是最好。", "article_id": 8223, "article_name": "金环食", "total_annotators": 9}
{"sentence_id": 17037, "sentence_text": "每天他们白天去学校,下课的时间他们也有叫庭教师的担子。", "article_id": 8231, "article_name": "我总算回来了! 而且我后来对大家给我见面的朋友的介绍。", "total_annotators": 9}
{"sentence_id": 17038, "sentence_text": "就拿我去서울대학교的表哥来说,因为他每天忙得很,所以他从早晨盗半夜要做工作。", "article_id": 8231, "article_name": "我总算回来了! 而且我后来对大家给我见面的朋友的介绍。", "total_annotators": 9}
{"sentence_id": 17043, "sentence_text": "此外我学到了为什么我也要尽可能。", "article_id": 8231, "article_name": "我总算回来了! 而且我后来对大家给我见面的朋友的介绍。", "total_annotators": 9}
{"sentence_id": 17044, "sentence_text": "我要尽可能不是因为我的父母告诉我“要是你现在尽可能,你后来有容易的生活。”", "article_id": 8231, "article_name": "我总算回来了! 而且我后来对大家给我见面的朋友的介绍。", "total_annotators": 9}
{"sentence_id": 17046, "sentence_text": "我该尽可能是因为我想成为一个比往日的我好的人。", "article_id": 8231, "article_name": "我总算回来了! 而且我后来对大家给我见面的朋友的介绍。", "total_annotators": 9}
{"sentence_id": 17049, "sentence_text": "我猜我从见面的时开始。", "article_id": 8231, "article_name": "我总算回来了! 而且我后来对大家给我见面的朋友的介绍。", "total_annotators": 9}
{"sentence_id": 17057, "sentence_text": "一个星期以后,我在走廊居然看她。", "article_id": 8231, "article_name": "我总算回来了! 而且我后来对大家给我见面的朋友的介绍。", "total_annotators": 9}
{"sentence_id": 17062, "sentence_text": "她对我说“要是你在日文需要帮助,你就要问我。”", "article_id": 8231, "article_name": "我总算回来了! 而且我后来对大家给我见面的朋友的介绍。", "total_annotators": 9}
{"sentence_id": 17072, "sentence_text": "屋久岛是多么美丽的充满了自然的地方啊。", "article_id": 8232, "article_name": "谢谢屋久岛", "total_annotators": 9}
{"sentence_id": 17077, "sentence_text": "不少的中国听到了英国人的收入以后,判断对方的生活水平如此高。", "article_id": 8233, "article_name": "英国人的收入", "total_annotators": 9}
{"sentence_id": 17081, "sentence_text": "他们不了解英国的税这么多,比如,房子税,石油税等等。", "article_id": 8233, "article_name": "英国人的收入", "total_annotators": 9}
{"sentence_id": 17082, "sentence_text": "因为英国的公交车不是肯靠谱,所以很多人不得不买车然后每个周买石油。", "article_id": 8233, "article_name": "英国人的收入", "total_annotators": 9}
{"sentence_id": 17244, "sentence_text": "我想在中国工作,认为一定对练习汉语有很多好处。", "article_id": 8246, "article_name": "我应该好好休息好好学习", "total_annotators": 9}
{"sentence_id": 17266, "sentence_text": "可是最近我还上瘾电脑游戏啊!", "article_id": 8248, "article_name": "再一个天 (another day)", "total_annotators": 9}
{"sentence_id": 17278, "sentence_text": "跟着韩中两国外交部门的协议,两年一次韩国外交部门在中央部门和地方政府当中选拔几十名公务员去几座中国城市视察。", "article_id": 8249, "article_name": "在人生的不同阶段上", "total_annotators": 9}
{"sentence_id": 17333, "sentence_text": "每个年五月的初始在柏林三百五十人以上多语言说者聚集交流着互换和语言学习相关的经历。", "article_id": 8252, "article_name": "多语言说者大会", "total_annotators": 11}
{"sentence_id": 17478, "sentence_text": "吃午饭的时间晚点了,上了的菜很好吃。", "article_id": 8262, "article_name": "在广州的2天1夜(3)", "total_annotators": 11}
{"sentence_id": 17492, "sentence_text": "可是,我们打的来到了的地方后,我妻子说这里为什么看不见服装商店啊!", "article_id": 8263, "article_name": "在广州的2天1夜(4)", "total_annotators": 11}
{"sentence_id": 17526, "sentence_text": "真的遗憾的是我们没带着两个孩子的事情。", "article_id": 8264, "article_name": "在广州的2天1夜(5)", "total_annotators": 11}
{"sentence_id": 17537, "sentence_text": "首先,至少用12月这个时间,我们可以回顾年初自己决心。", "article_id": 8265, "article_name": "6 12月是黄金时期", "total_annotators": 10}
{"sentence_id": 17538, "sentence_text": "比如说自己今年得到的收获是什么,有没有自己没有信守的决心等等。", "article_id": 8265, "article_name": "6 12月是黄金时期", "total_annotators": 10}
{"sentence_id": 17539, "sentence_text": "如果有从来没有试过的决心的话,我们心底轻松的可以做试一试到12月31日。", "article_id": 8265, "article_name": "6 12月是黄金时期", "total_annotators": 10}
{"sentence_id": 17552, "sentence_text": "跟着全球的基本生活情形提高,也跟着中产阶级的崛起,越来越多人能买得起以前买不到的东西。", "article_id": 8266, "article_name": "比石油枯竭更可怕", "total_annotators": 10}
{"sentence_id": 17584, "sentence_text": "北京离天津很近,坐了30分钟就到,开心的时间就结束了。", "article_id": 8268, "article_name": "高铁上跟有一个中国姑娘认识了。", "total_annotators": 10}
{"sentence_id": 17591, "sentence_text": "我想一想了,就发现也许她托她同事给我茶。", "article_id": 8268, "article_name": "高铁上跟有一个中国姑娘认识了。", "total_annotators": 10}
{"sentence_id": 17614, "sentence_text": "所以,马只被人跑赛,我想下次的生命上当竞赛马。", "article_id": 8270, "article_name": "竞赛马", "total_annotators": 10}
{"sentence_id": 17638, "sentence_text": "我在广州生活的时候,我听说到有些刚文科类研究生院毕业的人愿意作为经理(managers)开始工作。", "article_id": 8272, "article_name": "日本人对大学研究生院的看法", "total_annotators": 10}
{"sentence_id": 17641, "sentence_text": "在日本,无论有什么硕士学位,刚研究生院毕业后就愿意作为经理开始工作登木求鱼。", "article_id": 8272, "article_name": "日本人对大学研究生院的看法", "total_annotators": 10}
{"sentence_id": 17647, "sentence_text": "从1/6我要去学校,开始专题课。", "article_id": 8273, "article_name": "我不喜欢放假", "total_annotators": 10}
{"sentence_id": 17673, "sentence_text": "我希望明年去那里跟我希望不下雨。", "article_id": 8275, "article_name": "我见中国人了", "total_annotators": 10}
{"sentence_id": 17680, "sentence_text": "那个拉面的尺码有大,中,小。", "article_id": 8276, "article_name": "一家拉面店", "total_annotators": 10}
{"sentence_id": 17687, "sentence_text": "我是作为交换留学生从去年8月来北京的某某大学,", "article_id": 8277, "article_name": "雨后春笋", "total_annotators": 10}
{"sentence_id": 17725, "sentence_text": "我坐在教室的后边,同桌一咯咯的笑,然后低声对我说,“他很高,太倒霉他不帅。", "article_id": 8279, "article_name": "种种纯洁的事情 #1", "total_annotators": 10}
{"sentence_id": 17803, "sentence_text": "我觉得没有...可是在我的爸爸的办公楼的旁边的楼房有这么多的欧洲的饭馆儿。", "article_id": 8285, "article_name": "你去过法国的饭馆吗", "total_annotators": 10}
{"sentence_id": 17844, "sentence_text": "请看一下这张照片,那里的这孩子们是属于种姓制度的最底阶层,", "article_id": 8287, "article_name": "世界上最善良的卡包", "total_annotators": 10}
{"sentence_id": 17846, "sentence_text": "为了救孩子们,美国的一个公司,叫holstee和印度的非政府组织相互合作,美国公司花钱把印度的垃圾进口到美国,然后他们用可回收的垃圾制作这卡包。", "article_id": 8287, "article_name": "世界上最善良的卡包", "total_annotators": 10}
{"sentence_id": 17861, "sentence_text": "她说\"如果真的爱人和她想像的爱人不一样的时候,我就一定想离婚。\"", "article_id": 8288, "article_name": "同学的婚礼", "total_annotators": 10}
{"sentence_id": 17866, "sentence_text": "她说什么也,好像幸福。", "article_id": 8288, "article_name": "同学的婚礼", "total_annotators": 10}
{"sentence_id": 17891, "sentence_text": "为了保证房地产价格在合理的价格范围内决定,国家和人们都必须合力。", "article_id": 8290, "article_name": "为什么房价居高不下呢(六)", "total_annotators": 10}
{"sentence_id": 17892, "sentence_text": "如果以投机的视觉(/观念)为主看房地产的人们不改变观念的话,如果人们通过投机房地产得到一获千金这种思考不改变的话,国家与规制房地产投机的相关政策再多出台,也无法保证政策效应。", "article_id": 8290, "article_name": "为什么房价居高不下呢(六)", "total_annotators": 10}
{"sentence_id": 17897, "sentence_text": "我认为,考虑十年以内的将来韩国人口会下降,还考虑老年层包括大部分的财富以资产形态拥有的人们急剧增加的现实情况,如果不严格施行上述的政策的话,韩国也肯定会面临很严重的社会问题。", "article_id": 8290, "article_name": "为什么房价居高不下呢(六)", "total_annotators": 10}
{"sentence_id": 17907, "sentence_text": "如果人们以为未来房价可能会上升的话,那幺越来越多的人想买房子,相反人们以为房价可能会下降的话,要买房子的人越来越减少。", "article_id": 8291, "article_name": "为什么房价居高不下呢(三)", "total_annotators": 10}
{"sentence_id": 17923, "sentence_text": "人们在生活当中经常看到房地产价格的不断上升后,他们觉得投资房地产是既安全又有很高的回报率,从而人们偏爱购入房地产这投资方法。", "article_id": 8293, "article_name": "为什么房价居高不下呢(五)", "total_annotators": 10}
{"sentence_id": 17942, "sentence_text": "尽管好贵可我觉得有值得去!", "article_id": 8294, "article_name": "24h营业的温泉宿", "total_annotators": 11}
{"sentence_id": 17952, "sentence_text": "如果你知道会说汉语的人住东京的话,请介绍我那人。", "article_id": 8295, "article_name": "practicing.", "total_annotators": 11}
{"sentence_id": 17965, "sentence_text": "但是没有办法让天气还凉快。", "article_id": 8296, "article_name": "大家好。我是XXX", "total_annotators": 11}
{"sentence_id": 17976, "sentence_text": "从那,先我们租车,然后坐车去威尔士。", "article_id": 8297, "article_name": "丰富多彩的婚礼", "total_annotators": 11}
{"sentence_id": 17999, "sentence_text": "普通\"鯛焼き\"大小大概是和掌一样的。", "article_id": 8299, "article_name": "好可爱的条鱼", "total_annotators": 11}
{"sentence_id": 18003, "sentence_text": "从头吃开始,还是从尾吃开始、有时候讨论吃的办法那个鱼。", "article_id": 8299, "article_name": "好可爱的条鱼", "total_annotators": 11}
{"sentence_id": 18006, "sentence_text": "大概大部分的人也会想我一样。", "article_id": 8299, "article_name": "好可爱的条鱼", "total_annotators": 11}
{"sentence_id": 18012, "sentence_text": "这星期,我也是唯一的人那里。", "article_id": 8300, "article_name": "会话组(第2部分)", "total_annotators": 11}
{"sentence_id": 18016, "sentence_text": "我应该承认,在此之前,我所知道的生肖是,大多因为漫画《水果篮子》。", "article_id": 8300, "article_name": "会话组(第2部分)", "total_annotators": 11}
{"sentence_id": 18052, "sentence_text": "我认为,我们不必要从小到大拥有着同一个梦想,是因为我们小时,自己的世界没有长大以后这么大。", "article_id": 8304, "article_name": "梦想,你还好吗-", "total_annotators": 11}
{"sentence_id": 18060, "sentence_text": "我不知道人家用了怎么办法,不过,那里一全年什么季节都蔷薇开着。", "article_id": 8305, "article_name": "蔷薇", "total_annotators": 11}
{"sentence_id": 18182, "sentence_text": "很多人爱用自行车,对很深刻的交通难很有帮助。", "article_id": 8314, "article_name": "作文", "total_annotators": 11}
{"sentence_id": 18208, "sentence_text": "几天后学生还没道歉所以校长决定如果学生不能道歉学生不得不停课(suspension)。", "article_id": 8316, "article_name": "场事件", "total_annotators": 11}
{"sentence_id": 18216, "sentence_text": "分钟转了后才认识到自己的错误,柔软剂已经流出来。", "article_id": 8317, "article_name": "吃亏", "total_annotators": 11}
{"sentence_id": 18221, "sentence_text": "在路上很多车因下很多雪常常抛锚了。", "article_id": 8318, "article_name": "动力雪橇", "total_annotators": 11}
{"sentence_id": 18273, "sentence_text": "即使日本人由于基督教那么不知道,也圣诞节是很大的祭祀。", "article_id": 8322, "article_name": "圣诞节在日本!", "total_annotators": 11}
{"sentence_id": 18372, "sentence_text": "他喜欢让我念小人儿书,可是她常常吧书投等等", "article_id": 8328, "article_name": "我有两个孩子,4岁儿子和1岁女儿", "total_annotators": 11}
{"sentence_id": 18406, "sentence_text": "札幌在日本最大的城市之一,可是生活比较安静,", "article_id": 8330, "article_name": " 三月9号", "total_annotators": 11}
{"sentence_id": 18425, "sentence_text": "全德国的冬天的气候很不舒服:气温在五度之下,有风有雨或者雪,并且很潮湿。", "article_id": 8332, "article_name": "德国的冬天", "total_annotators": 11}
{"sentence_id": 18445, "sentence_text": "我见过的中国朋友,他们有关心的不是我,而是韩国明星或者韩据。", "article_id": 8333, "article_name": "跟中国朋友交流", "total_annotators": 11}
{"sentence_id": 18477, "sentence_text": "我们一边喝酒一边聊天过去了。", "article_id": 8335, "article_name": "你好", "total_annotators": 11}
{"sentence_id": 18484, "sentence_text": "结束聚会的时我看了桌子上,只有我座位没有菜.", "article_id": 8335, "article_name": "你好", "total_annotators": 11}
{"sentence_id": 18498, "sentence_text": "有一天,在现实世界我和老师约定看见。", "article_id": 8337, "article_name": "奇怪的梦", "total_annotators": 11}
{"sentence_id": 18508, "sentence_text": "因为你给我打个电话说你大概迟到,所以我说没关系,今天有空。", "article_id": 8337, "article_name": "奇怪的梦", "total_annotators": 11}
{"sentence_id": 18511, "sentence_text": "我初次发生这样的现象了。", "article_id": 8337, "article_name": "奇怪的梦", "total_annotators": 11}
{"sentence_id": 18528, "sentence_text": "突然弟弟的目光充满了喜悦说“是的是的,我们向圣诞老人可以请求要它”。", "article_id": 8339, "article_name": "生日礼物", "total_annotators": 11}
{"sentence_id": 18564, "sentence_text": "我去中国的时候,我希望我要认识很多中国人。", "article_id": 8343, "article_name": "中国", "total_annotators": 11}
{"sentence_id": 18599, "sentence_text": "因我喜欢外语,将来我想当一个国际机遇的机构的职员。", "article_id": 8345, "article_name": "自我介绍", "total_annotators": 11}
{"sentence_id": 18677, "sentence_text": "这是打工所以我另外都学生,二十几岁或者十八岁。", "article_id": 8352, "article_name": "好像二十四岁", "total_annotators": 11}
{"sentence_id": 18707, "sentence_text": "朋友找不到,那么吃甜的东西,或者去买衣服,解散我心理的疙瘩。", "article_id": 8353, "article_name": "很轻松但是寂寞", "total_annotators": 11}
{"sentence_id": 18751, "sentence_text": "最近在日本陆陆续续公开很宝贵的佛像等传统文化艺术作品。", "article_id": 8357, "article_name": "青不动", "total_annotators": 11}
{"sentence_id": 18782, "sentence_text": "而且周围的人们里有完全不共同节电的人。", "article_id": 8360, "article_name": "为节电而共同努力", "total_annotators": 11}
{"sentence_id": 18814, "sentence_text": "我想一想原因,第一汉语的声音很好听,听中国的歌我感觉很舒服;第二通过学汉语我会认识了很多好朋友。", "article_id": 8362, "article_name": "我的小传", "total_annotators": 11}
{"sentence_id": 18822, "sentence_text": "因为他没有车,他和女朋友一起去开车玩游。", "article_id": 8363, "article_name": "我朋友拒绝赔偿", "total_annotators": 11}
{"sentence_id": 18830, "sentence_text": "她请求虽然很麻烦,但她们很期待什么的,我不能谢绝。", "article_id": 8363, "article_name": "我朋友拒绝赔偿", "total_annotators": 11}
{"sentence_id": 18852, "sentence_text": "我们的汉语老师是北方人,所以她孩子的时候,跟妈妈一起包吃饺子。", "article_id": 8364, "article_name": "除夕之夜", "total_annotators": 10}
{"sentence_id": 18876, "sentence_text": "不过我的词汇不大,是因为我最近自己学习汉语,不上课!", "article_id": 8366, "article_name": "第二次", "total_annotators": 10}
{"sentence_id": 18886, "sentence_text": "虽然我已经4年纪了,但是打扮得还是像小学生一样。", "article_id": 8368, "article_name": "开学了", "total_annotators": 10}
{"sentence_id": 18933, "sentence_text": "结果,我决定了另外一个方法的首先去虹桥2号航站楼站,然后换乘2号线的,坐5站就到了中上公园站。", "article_id": 8370, "article_name": "上海地铁换乘有问题(1)", "total_annotators": 10}
{"sentence_id": 18940, "sentence_text": "特别我学了Durkheim,Weber和Marx.", "article_id": 8371, "article_name": "社会学.", "total_annotators": 10}
{"sentence_id": 18952, "sentence_text": "为了理解自己,你一定要任务。", "article_id": 8371, "article_name": "社会学.", "total_annotators": 10}
{"sentence_id": 18971, "sentence_text": "以前那个动漫我看了很多的动漫,可是我不太喜欢那么动漫,所以我觉得我最初的动漫是我在中学的时候的动漫。", "article_id": 8372, "article_name": "我非常喜欢动漫!", "total_annotators": 10}
{"sentence_id": 19013, "sentence_text": "书名是“成打退龙的骑士的方法”。", "article_id": 8375, "article_name": "向现在可以做的事看 目の前の今できる事に目を向ける", "total_annotators": 10}
{"sentence_id": 19014, "sentence_text": "那本书里写:一个年轻人问打退龙的骑士说“我想成打退龙的骑士,怎么做?”", "article_id": 8375, "article_name": "向现在可以做的事看 目の前の今できる事に目を向ける", "total_annotators": 10}
{"sentence_id": 19017, "sentence_text": "不仅你自己用的鞋,而且在那里所有的鞋摆在一起。", "article_id": 8375, "article_name": "向现在可以做的事看 目の前の今できる事に目を向ける", "total_annotators": 10}
{"sentence_id": 19027, "sentence_text": "那,可以发现下次课题。", "article_id": 8375, "article_name": "向现在可以做的事看 目の前の今できる事に目を向ける", "total_annotators": 10}
{"sentence_id": 19047, "sentence_text": "我孩子最近越了越体重增加了,而且孩子喜欢一边抱着一边睡觉。", "article_id": 8377, "article_name": "腰痛!!", "total_annotators": 10}
{"sentence_id": 19060, "sentence_text": "我就马上出去外面去别的地方做有事。", "article_id": 8378, "article_name": "这次也写关于‘害羞的事情’的课题", "total_annotators": 10}
{"sentence_id": 19064, "sentence_text": "我不买东西去别的地方买东西啊。", "article_id": 8378, "article_name": "这次也写关于‘害羞的事情’的课题", "total_annotators": 10}
{"sentence_id": 19069, "sentence_text": "我不想遇见她,所以,我每次利用有3台电梯的地方但这次去了有2台电梯的地方。", "article_id": 8378, "article_name": "这次也写关于‘害羞的事情’的课题", "total_annotators": 10}
{"sentence_id": 19111, "sentence_text": "最近我脑海里有一个越来越确定的想法,就是现在的我是一个我所有过去的结果了。", "article_id": 8381, "article_name": "17 在我脑海里走来走去的几个想法", "total_annotators": 10}
{"sentence_id": 19132, "sentence_text": "不年轻人应该别做过分的事。", "article_id": 8383, "article_name": "不知不觉午睡了", "total_annotators": 10}
{"sentence_id": 19144, "sentence_text": "我觉得春天什么开始好的季节。", "article_id": 8384, "article_name": "春分节", "total_annotators": 10}
{"sentence_id": 19202, "sentence_text": "我想说的是:每个野菜,芋等有自己的最好时期吃.", "article_id": 8389, "article_name": "日本的饮食文化", "total_annotators": 10}
{"sentence_id": 19228, "sentence_text": "先日天和一个朋友会见了。", "article_id": 8392, "article_name": "一杯咖啡 (一杯のコーヒー)", "total_annotators": 10}
{"sentence_id": 19326, "sentence_text": "接着他介绍自己时说它是一所大学物理系4年级的学生!", "article_id": 8398, "article_name": "13 街道上吉他演奏着", "total_annotators": 11}
{"sentence_id": 19342, "sentence_text": "好久写的日记,我有点儿难得怎么开始写第一次的开头。", "article_id": 8400, "article_name": "2011年第一次日记。", "total_annotators": 11}
{"sentence_id": 19435, "sentence_text": "但是早饭,中午饭,晚饭都是很好吃!", "article_id": 8409, "article_name": "胖了", "total_annotators": 11}
{"sentence_id": 19503, "sentence_text": "因为我加两个新的电脑,共计五个电脑,如果一个电脑失灵了的话,我不要在意。", "article_id": 8416, "article_name": "原因是我的电脑坏了", "total_annotators": 11}
{"sentence_id": 19569, "sentence_text": "我来这的理由是以前常常跟我玩儿的朋友们都走了", "article_id": 8420, "article_name": "大家好我是新来的", "total_annotators": 10}
{"sentence_id": 19571, "sentence_text": "所以我在网上逛逛,原来我想找个中国的网站电台", "article_id": 8420, "article_name": "大家好我是新来的", "total_annotators": 10}
{"sentence_id": 19575, "sentence_text": "给我说一声.我希望能够交的朋友多.", "article_id": 8420, "article_name": "大家好我是新来的", "total_annotators": 10}
{"sentence_id": 19576, "sentence_text": "那么,我写到这儿了 大家晚胺 88", "article_id": 8420, "article_name": "大家好我是新来的", "total_annotators": 10}
{"sentence_id": 19584, "sentence_text": "啊,,你们想不想着我妈妈爸爸做的事情是不好?", "article_id": 8421, "article_name": "第二次日记", "total_annotators": 10}
{"sentence_id": 19590, "sentence_text": "我从来没去过轻井泽,我们在丰富的自然过了很放松的时间,", "article_id": 8422, "article_name": "第一次的轻井泽", "total_annotators": 10}
{"sentence_id": 19591, "sentence_text": "我可心轻井泽,森,湖,河,吃食,温泉,等等,", "article_id": 8422, "article_name": "第一次的轻井泽", "total_annotators": 10}
{"sentence_id": 19594, "sentence_text": "我叫《arare》,这是《小块油炸糕》的意思。", "article_id": 8423, "article_name": "第一篇日记", "total_annotators": 10}
{"sentence_id": 19625, "sentence_text": "因为和我会话的时候,用中文和韩语就很方便。", "article_id": 8426, "article_name": "关于机器人的课题", "total_annotators": 10}
{"sentence_id": 19626, "sentence_text": "现在智能机的机能的之一有我们问题的话,就回答。", "article_id": 8426, "article_name": "关于机器人的课题", "total_annotators": 10}
{"sentence_id": 19642, "sentence_text": "我希望我们都可以一起相帮进步的块我们的汉语水平。", "article_id": 8428, "article_name": "欢迎新来的学生", "total_annotators": 10}
{"sentence_id": 19658, "sentence_text": "在日历,到八月七号的立秋就是夏天。", "article_id": 8429, "article_name": "庙会(四万六千日参拜节)", "total_annotators": 10}
{"sentence_id": 19674, "sentence_text": "几年红色玉蜀黍收成不好,替红色玉蜀黍使用酸浆了。", "article_id": 8429, "article_name": "庙会(四万六千日参拜节)", "total_annotators": 10}
{"sentence_id": 19725, "sentence_text": ",总之是好像欧洲的气氛很好哇。", "article_id": 8433, "article_name": "映画", "total_annotators": 10}
{"sentence_id": 19738, "sentence_text": "不过,我想那部电影导演的音信是什么呀?", "article_id": 8433, "article_name": "映画", "total_annotators": 10}
{"sentence_id": 19753, "sentence_text": "比好看的食物起来,对身体好的食物自己开始喜欢吃。", "article_id": 8434, "article_name": "有效的减肥办法(二)", "total_annotators": 10}
{"sentence_id": 19776, "sentence_text": "最近在西方国家很受欢迎的减肥办法就是短期绝食,这前几年医学界已经认定了它的效应。", "article_id": 8435, "article_name": "有效的减肥办法(一)", "total_annotators": 10}
{"sentence_id": 19787, "sentence_text": "尽管昨天晚上我请哥哥早上让我醒,不过他叫我的时候,我就发脾气。", "article_id": 8436, "article_name": "早上起床", "total_annotators": 10}
{"sentence_id": 21816, "sentence_text": "我不知道自己从什么时候开始做起来,反正那个已经习惯了好久。", "article_id": 8593, "article_name": "7 Life of Pi (少年Pi的奇幻漂流)", "total_annotators": 10}
{"sentence_id": 21825, "sentence_text": "在茫茫大海里跟一只老虎漂流的他,最终连一个食量没有剩的时候,他真觉得他自己马上要死掉,无法生存下来。", "article_id": 8593, "article_name": "7 Life of Pi (少年Pi的奇幻漂流)", "total_annotators": 10}
{"sentence_id": 21842, "sentence_text": "所以最近我朋友里很受欢迎。", "article_id": 8594, "article_name": "WBC的棒球比赛", "total_annotators": 10}
{"sentence_id": 21856, "sentence_text": "结果5月以后,我在这个网站上连一次也没有投稿文章了。", "article_id": 8596, "article_name": "给女儿写信", "total_annotators": 10}
{"sentence_id": 21890, "sentence_text": "看这样的场面的时候,大家都觉得还是谁都喜欢很可爱猫。", "article_id": 8598, "article_name": "很可爱猫和很瘦猫", "total_annotators": 10}
{"sentence_id": 21975, "sentence_text": "今年的寒假和暑假都我在学校读书了。", "article_id": 8604, "article_name": "我要说关于勇敢的一个故事。", "total_annotators": 10}
{"sentence_id": 21990, "sentence_text": "今天他跟我follow后,跟他讲的时候,他问我:“也许您是《XXXXX》的作者吗?”", "article_id": 8605, "article_name": "以前的熟人", "total_annotators": 10}
{"sentence_id": 21992, "sentence_text": "因为没想到他背下来我弱小的博客。", "article_id": 8605, "article_name": "以前的熟人", "total_annotators": 10}
{"sentence_id": 22008, "sentence_text": "为什么在邮局火影忍者?", "article_id": 8607, "article_name": "邮票", "total_annotators": 10}
{"sentence_id": 22016, "sentence_text": "夏天的非常热的一天的傍晚,在路上很多人洒水了。", "article_id": 8608, "article_name": "在路上洒水", "total_annotators": 10}
{"sentence_id": 22019, "sentence_text": "我觉得在路上很多人一起洒水的话,也许顺路温度相当下降。", "article_id": 8608, "article_name": "在路上洒水", "total_annotators": 10}
{"sentence_id": 21603, "sentence_text": "达到完成的时候,也许从更远的地方可以看到skytree塔。", "article_id": 8577, "article_name": "SKY TREE 塔", "total_annotators": 11}
{"sentence_id": 21639, "sentence_text": "通过社会交流,我了解到很多以前不认识的东西。", "article_id": 8579, "article_name": "跟同事聚餐后的想法", "total_annotators": 11}
{"sentence_id": 21665, "sentence_text": "好在这个夏天我每天上中文课四个小时,要不然一定不能进步。", "article_id": 8582, "article_name": "考完了", "total_annotators": 11}
{"sentence_id": 21689, "sentence_text": "以下能提供更好了⇒担当越开朗越好!", "article_id": 8583, "article_name": "客服支持转客服服务", "total_annotators": 11}
{"sentence_id": 21707, "sentence_text": "虽然打了以前我非常困,但是完了以后我感觉非常舒服.", "article_id": 8585, "article_name": "你的爱好是什么", "total_annotators": 11}
{"sentence_id": 21765, "sentence_text": "因为我恐怕我请不了一位女人,所以我不去那个舞会。", "article_id": 8589, "article_name": "我高中学校的舞会", "total_annotators": 11}
{"sentence_id": 21807, "sentence_text": "达到厦门的时候是腊月三十,大部分的餐厅关门了。", "article_id": 8592, "article_name": "在中国初次的春节", "total_annotators": 11}
{"sentence_id": 21809, "sentence_text": "然后观光了市内观光地点,但是我已经旅游过了中国的著名观光城市,看到了很多的名胜古时,厦门的观光地点不如以前看过的,所以感觉一般,没那么感动。", "article_id": 8592, "article_name": "在中国初次的春节", "total_annotators": 11}
{"sentence_id": 21461, "sentence_text": "很可笑,每年都是气象厅宣布入梅后,几天继续青天.", "article_id": 8564, "article_name": "入梅", "total_annotators": 10}
{"sentence_id": 21564, "sentence_text": "如果这么很多漂亮的女人走起来,街道的气氛一定变的好。", "article_id": 8573, "article_name": "中原淳一先生画的设计画", "total_annotators": 10}
{"sentence_id": 21165, "sentence_text": "只有把自己的一生投入到在自己做的事上,而且用忍耐、热情以及热诚来尽了最大的努力,这样的人才能享受到在做事里的乐趣。", "article_id": 8536, "article_name": "《请你做真正想做的事》(二)", "total_annotators": 10}
{"sentence_id": 21184, "sentence_text": "最近有一些浇薄(/寡情)且鬼机灵的工作人员。", "article_id": 8537, "article_name": "《请你做真正想做的事》(三)", "total_annotators": 10}
{"sentence_id": 21199, "sentence_text": "既然在市场上不会卖木耙那样的东西,但是如果花钱买它用的话,肯定不会享受亲手做时的乐趣。", "article_id": 8538, "article_name": "《请你做真正想做的事》(一)", "total_annotators": 10}
{"sentence_id": 21226, "sentence_text": "昨天我在购物中心买心雨伞。", "article_id": 8541, "article_name": "买雨伞", "total_annotators": 11}
{"sentence_id": 21239, "sentence_text": "我看黑的,边沿分红色。", "article_id": 8541, "article_name": "买雨伞", "total_annotators": 11}
{"sentence_id": 21260, "sentence_text": "今天从早上起我因太可体的牛仔裤而感觉很郁闷起来。", "article_id": 8543, "article_name": "太可体的牛仔裤!", "total_annotators": 10}
{"sentence_id": 21292, "sentence_text": "还有我多么情愿的现在的展览公司,我从公司人事部的人听到了我被应聘的消息之后面临着第一天上班的那个晚上,我的心乱跳得似乎不在这个世界似的,我的心情惊喜交集,我瞪了眼睛过了一个晚上。", "article_id": 8547, "article_name": "喜不自胜的今天", "total_annotators": 10}
{"sentence_id": 21308, "sentence_text": "她现在想旅游计划,在网路上找好玩,好吃的东西。", "article_id": 8548, "article_name": "现在方便多了", "total_annotators": 10}
{"sentence_id": 20963, "sentence_text": "但是,到现在山区的传统单独房屋里还是对木柴的需要在进行中。", "article_id": 8522, "article_name": "《请你做真正想做的事》中《看一下木柴堆》(一)", "total_annotators": 10}
{"sentence_id": 21004, "sentence_text": "从七点二十分到二点五分我有学校。", "article_id": 8525, "article_name": "大家好!", "total_annotators": 10}
{"sentence_id": 21062, "sentence_text": "报纸上说;有的女性赠送八音盒给盲学校毕业生。", "article_id": 8530, "article_name": "惊人啊!", "total_annotators": 10}
{"sentence_id": 21126, "sentence_text": "中国有很多奇怪的吃的东西,我觉得中国很有意思的国家。", "article_id": 8533, "article_name": "映画", "total_annotators": 10}
{"sentence_id": 20657, "sentence_text": "我的学期结束了;星期五我们的班一起吃了圣诞节饭在我的大学。", "article_id": 8501, "article_name": "爱尔兰", "total_annotators": 9}
{"sentence_id": 20712, "sentence_text": "老人们的肛门没劲儿,而小孩子们和年轻人们像到了体温表无法转进肛门的地步似的肛门的劲儿很强。", "article_id": 8503, "article_name": "保持健康的十二个诀窍", "total_annotators": 10}
{"sentence_id": 20740, "sentence_text": "每个周末我要让辅导讲课。", "article_id": 8505, "article_name": "感谢我的朋友。", "total_annotators": 9}
{"sentence_id": 20743, "sentence_text": "我一位老师出了关于睡觉。", "article_id": 8506, "article_name": "关于睡觉的课题", "total_annotators": 10}
{"sentence_id": 20751, "sentence_text": "因为只有记住开始的时候的内容的很多。", "article_id": 8506, "article_name": "关于睡觉的课题", "total_annotators": 10}
{"sentence_id": 20760, "sentence_text": "所以看动画的话,中级和我的水平合适(但我的水平更低)。", "article_id": 8506, "article_name": "关于睡觉的课题", "total_annotators": 9}
{"sentence_id": 20832, "sentence_text": "在日本过去时成了正式职员等于生活越来越好,但是现在不同。", "article_id": 8513, "article_name": "日本の良いところ 日本的好处", "total_annotators": 9}
{"sentence_id": 20118, "sentence_text": "我今天关于有点复杂的题目写一篇文章。", "article_id": 8463, "article_name": "关于丹麦经济和各种的问题", "total_annotators": 11}
{"sentence_id": 20132, "sentence_text": "例子包括25%的消费税和63%所得税边际税率。", "article_id": 8463, "article_name": "关于丹麦经济和各种的问题", "total_annotators": 11}
{"sentence_id": 20176, "sentence_text": "我不知道他们家,但是我想起来她说的事情,他们家是我家附近,而且他们家有酒店和超市的中点。", "article_id": 8464, "article_name": "加拿大旅行的伙伴", "total_annotators": 11}
{"sentence_id": 20206, "sentence_text": "对不起,我写开始的时候我打算告诉我自己的近况,可是现在这是归总自己的看法的entry!", "article_id": 8465, "article_name": "你好", "total_annotators": 11}
{"sentence_id": 20254, "sentence_text": "我想这个大概是那个是的谢礼吧。", "article_id": 8469, "article_name": "我得到两台电脑了", "total_annotators": 11}
{"sentence_id": 20264, "sentence_text": "对朋友在学校能说非常快乐。", "article_id": 8470, "article_name": "我的暑假", "total_annotators": 11}
{"sentence_id": 20352, "sentence_text": "可是到达一般水平后,我很忙碌地学中文,所以练习时间没有了!", "article_id": 8475, "article_name": "一起演奏吧!", "total_annotators": 11}
{"sentence_id": 19867, "sentence_text": "三十天以后就可以明白一部电视剧,那是不可以信心的大业。", "article_id": 8445, "article_name": " part 1", "total_annotators": 9}
{"sentence_id": 19868, "sentence_text": "但是有价钱:三十天以后一部电视剧可以明白,别的电视剧会给你麻烦,要谈话念书的话,那还并不可以。", "article_id": 8445, "article_name": " part 1", "total_annotators": 9}
{"sentence_id": 19876, "sentence_text": "我建议关于现代生活的一部电视剧,不要用关于千年以前的战的电视剧。", "article_id": 8445, "article_name": " part 1", "total_annotators": 9}
{"sentence_id": 19888, "sentence_text": "樱树个子是正二楼的位置,所以里窗子樱花很近。", "article_id": 8446, "article_name": "关于樱花的课题", "total_annotators": 9}
{"sentence_id": 19904, "sentence_text": "随着经济的全球化,国际交流越来越频繁,占染病的传播和扩散也大到国际规模。", "article_id": 8447, "article_name": "汉译练习", "total_annotators": 9}
{"sentence_id": 19915, "sentence_text": "我看着9年前他写的文章,好像有回到那时刻的感觉,而且心酸得不知不觉想起了我喜欢的那个人。", "article_id": 8448, "article_name": "好闷啊……", "total_annotators": 9}
{"sentence_id": 19919, "sentence_text": "我明明知道他不会在那儿,但我的理性和感性是不玩在一起。", "article_id": 8448, "article_name": "好闷啊……", "total_annotators": 9}
{"sentence_id": 19948, "sentence_text": "现在我教她汉语时,我必须要介意准确的普通话发音,我就会复习了。", "article_id": 8450, "article_name": "教学就会学好", "total_annotators": 9}
{"sentence_id": 19957, "sentence_text": "如果在北京一天的话,那个人吸21条抽烟的时候的污染物质。", "article_id": 8451, "article_name": "今天", "total_annotators": 9}
{"sentence_id": 19964, "sentence_text": "其实我的爷爷去过中国满洲参了军,而打过战了.", "article_id": 8452, "article_name": "请修改文章!", "total_annotators": 9}
{"sentence_id": 19965, "sentence_text": "我小时候,爷爷常常给我听他参加战争的故事.", "article_id": 8452, "article_name": "请修改文章!", "total_annotators": 9}
{"sentence_id": 19970, "sentence_text": "虽然我觉得他们的话有道理的部分有,但是感觉比较怕.", "article_id": 8452, "article_name": "请修改文章!", "total_annotators": 9}
{"sentence_id": 19979, "sentence_text": "我特别非常很希望取得好成绩。", "article_id": 8453, "article_name": "热死我了!!", "total_annotators": 9}
{"sentence_id": 19989, "sentence_text": "因为从车站到火车站近,我们不要骑公共汽车。", "article_id": 8454, "article_name": "我写的一些句子", "total_annotators": 9}
{"sentence_id": 20014, "sentence_text": "每次上课时,因为有她,我们班的气氛好一些。", "article_id": 8455, "article_name": "羡慕她们", "total_annotators": 9}
{"sentence_id": 20039, "sentence_text": "酱油碳酸钠是特别奇怪。", "article_id": 8456, "article_name": "一个人旅行", "total_annotators": 9}
{"sentence_id": 20042, "sentence_text": "这个旅游留下了深刻的印像的事是夜里的大海和有点儿缺的月亮的风景。", "article_id": 8456, "article_name": "一个人旅行", "total_annotators": 9}
{"sentence_id": 20044, "sentence_text": "不过,没有云的天空上的月亮,凉快的风把我的疲累解除了。", "article_id": 8456, "article_name": "一个人旅行", "total_annotators": 9}
{"sentence_id": 20051, "sentence_text": "今天在图书馆好好儿功课。", "article_id": 8457, "article_name": "用功。", "total_annotators": 9}
{"sentence_id": 20068, "sentence_text": "所以我们去乐天利(这是卖汉堡包。)", "article_id": 8458, "article_name": "至子的开学典礼。", "total_annotators": 9}
{"sentence_id": 20090, "sentence_text": "我经常在我家的附近看多没有饲主的猫。", "article_id": 8460, "article_name": "作家和我", "total_annotators": 9}
{"sentence_id": 20094, "sentence_text": "那么说来,漱石先生的名字的由来是『晋書』。", "article_id": 8460, "article_name": "作家和我", "total_annotators": 9}
{"sentence_id": 22046, "sentence_text": "但是今天我给男友巧克力之后看着他开心的样子又想到了这个节日会不会有别的意义。", "article_id": 8611, "article_name": "14 情人节的意义", "total_annotators": 10}
{"sentence_id": 22049, "sentence_text": "平时我觉得对这些的日子有不太好的印象,不过今天我觉得我们用不着只看见这些节日的单面。", "article_id": 8611, "article_name": "14 情人节的意义", "total_annotators": 10}
{"sentence_id": 22050, "sentence_text": "假如有一个人的真心以今天这个节日为借口能表达出给另一个人。", "article_id": 8611, "article_name": "14 情人节的意义", "total_annotators": 10}
{"sentence_id": 22091, "sentence_text": "春天开始开花,新绿叶都出来。", "article_id": 8615, "article_name": "季节的花", "total_annotators": 10}
{"sentence_id": 22106, "sentence_text": "梅天7月底结束了,以后真正的夏天,每天早上蝉生骚然", "article_id": 8615, "article_name": "季节的花", "total_annotators": 10}
{"sentence_id": 22209, "sentence_text": "我去上海的话,每次去玩她的地方玩.", "article_id": 8622, "article_name": "我的同事", "total_annotators": 10}
{"sentence_id": 22214, "sentence_text": "才能找到的是交给宣传单的工作(日文说\"ビラ配り\").", "article_id": 8622, "article_name": "我的同事", "total_annotators": 10}
{"sentence_id": 22215, "sentence_text": "在冬天很冷大街上,她每天每天一直给路人交宣传单.", "article_id": 8622, "article_name": "我的同事", "total_annotators": 10}
{"sentence_id": 22221, "sentence_text": "还有小王的辛苦很厉害,我很尊敬她.", "article_id": 8622, "article_name": "我的同事", "total_annotators": 10}
{"sentence_id": 22222, "sentence_text": "每冬天来的话,我想起来这个话.", "article_id": 8622, "article_name": "我的同事", "total_annotators": 10}
{"sentence_id": 22254, "sentence_text": "好像是个关于健康那种节目,我不能确信,北京的老人们给主持人打电话,关于自己的健康管理方法来讲。", "article_id": 8625, "article_name": "我在听北京故事广播", "total_annotators": 10}
{"sentence_id": 22299, "sentence_text": "你一边说,一边进出你的家。", "article_id": 8628, "article_name": "种种纯洁的事情#3", "total_annotators": 10}
{"sentence_id": 22318, "sentence_text": "特别是,在人参节现场跟好多的人相处的我妈妈,对我来说她的微笑是让我最难忘的场面了。", "article_id": 8630, "article_name": "23 参观PAJU(坡州)人参节", "total_annotators": 11}
{"sentence_id": 22332, "sentence_text": "我们的政府现在鼓励所有的人再生东西节省世界的原原料。", "article_id": 8631, "article_name": "保护环境", "total_annotators": 11}
{"sentence_id": 22333, "sentence_text": "我平常再生玻璃,塑胶和纸。", "article_id": 8631, "article_name": "保护环境", "total_annotators": 11}
{"sentence_id": 22343, "sentence_text": "那个冰箱里多长时间可能冷呢?", "article_id": 8632, "article_name": "冰箱", "total_annotators": 11}
{"sentence_id": 22350, "sentence_text": "最近有我和中国朋友一起聊天的机会,但是我一点儿也不会说汉语。", "article_id": 8633, "article_name": "初雪", "total_annotators": 11}
{"sentence_id": 22381, "sentence_text": "上个月开始我在线学校学起来。", "article_id": 8636, "article_name": "近况", "total_annotators": 11}
{"sentence_id": 22386, "sentence_text": "人生只有一次,所以自己最想做的事应该做的,对不对?", "article_id": 8636, "article_name": "近况", "total_annotators": 11}
{"sentence_id": 22469, "sentence_text": "不仅我觉得歌手唱歌晿得非常好,而且演员的二胡弹", "article_id": 8644, "article_name": "音乐会", "total_annotators": 11}
{"sentence_id": 22471, "sentence_text": "我是在面前第一次听那样演的。", "article_id": 8644, "article_name": "音乐会", "total_annotators": 11}
{"sentence_id": 22495, "sentence_text": "从2011年抵达上海读了国际汉语教育硕士,两年时间的流逝过得非常快。", "article_id": 8647, "article_name": "致谢书~", "total_annotators": 11}
{"sentence_id": 22534, "sentence_text": "她跟我以前说过了到明年1月底她需要减肥。", "article_id": 8650, "article_name": "[随笔]减肥是超级简单的。", "total_annotators": 11}
{"sentence_id": 22537, "sentence_text": "我真的不太明白为什么她不停这种不好的习惯。", "article_id": 8650, "article_name": "[随笔]减肥是超级简单的。", "total_annotators": 11}
{"sentence_id": 22608, "sentence_text": "我要用书面语,而且用课本上的语法.", "article_id": 8655, "article_name": "请帮助我的作业...", "total_annotators": 11}
{"sentence_id": 22617, "sentence_text": "所以,我们日本人被视为学习汉语比较容易.", "article_id": 8655, "article_name": "请帮助我的作业...", "total_annotators": 11}
{"sentence_id": 22619, "sentence_text": "日本人比较客气,内向,日语中有很多客气的说法,而且日本人常用委婉的说话.", "article_id": 8655, "article_name": "请帮助我的作业...", "total_annotators": 11}
{"sentence_id": 22640, "sentence_text": "上述,日本人重视规定,所以有点儿坚定.", "article_id": 8655, "article_name": "请帮助我的作业...", "total_annotators": 11}
{"sentence_id": 22644, "sentence_text": "可是我觉得这些差异并不是只与中国人的差异,这么说,日本人去国外的时候,感到象一样的问题.", "article_id": 8655, "article_name": "请帮助我的作业...", "total_annotators": 11}
{"sentence_id": 22645, "sentence_text": "日本文化是在世界上希奇的文化,日本是岛屿国家,于是组成独自的文化.", "article_id": 8655, "article_name": "请帮助我的作业...", "total_annotators": 11}
{"sentence_id": 22658, "sentence_text": "2)为了我吃到广州时候的晚饭,我想去川国演义。", "article_id": 8656, "article_name": "请告诉我广州的事呀!", "total_annotators": 11}
{"sentence_id": 22666, "sentence_text": "已经沿江路的餐厅没有吗?", "article_id": 8656, "article_name": "请告诉我广州的事呀!", "total_annotators": 11}
{"sentence_id": 22682, "sentence_text": "中田所长也通过去洗手间来自己要改变环境,让自己,积极地别出心裁。", "article_id": 8657, "article_name": "三上的故事", "total_annotators": 11}
{"sentence_id": 22711, "sentence_text": "讲座笔记「腰痛」「身体走形」等的烦恼的解决办法是现在「调整姿势」很趋势。", "article_id": 8660, "article_name": "四十来岁世代的身体美人", "total_annotators": 11}
{"sentence_id": 22719, "sentence_text": "我在学习着俄语没有太努力可是很认真", "article_id": 8661, "article_name": "我很好", "total_annotators": 11}
{"sentence_id": 22752, "sentence_text": "走路的时候容易累,我的脚有的时候疼起来。", "article_id": 8664, "article_name": "这不是减肥,为了食的习惯我瘦了。", "total_annotators": 11}
{"sentence_id": 22811, "sentence_text": "那个叔叔要让卖书的赔偿他的电脑,不过他说什么也卖书的不要认真得理睬他。", "article_id": 8667, "article_name": "《有话好好说》", "total_annotators": 10}
{"sentence_id": 22825, "sentence_text": "我们不要不轻易发火,不管有什么惹人生气的事。", "article_id": 8667, "article_name": "《有话好好说》", "total_annotators": 10}
{"sentence_id": 22839, "sentence_text": "现在有朋友来了北京,我过敏了所以我经常打喷嚏也下个周末有一个重要的考试。", "article_id": 8669, "article_name": "表演和韩国", "total_annotators": 10}
{"sentence_id": 22844, "sentence_text": "我集中了学习汉语所以我的韩语比以前的不好。", "article_id": 8669, "article_name": "表演和韩国", "total_annotators": 10}
{"sentence_id": 22856, "sentence_text": "我调查了一下,这三十日之中,我写了二十五件日记。", "article_id": 8671, "article_name": "过了一个月", "total_annotators": 10}
{"sentence_id": 22901, "sentence_text": "现在偶然周末为了家族做寿司。", "article_id": 8674, "article_name": "鳗鱼料理", "total_annotators": 10}
{"sentence_id": 22966, "sentence_text": "所以,你们能想像我脸上的表情吗-当我起初看人摘摘茴香给我说“我们用它入菜,试一下吧”!", "article_id": 8679, "article_name": "新西兰的茴香和中国的茴香", "total_annotators": 10}
{"sentence_id": 22985, "sentence_text": "这样的话我往全没办法成功减肥吧。", "article_id": 8680, "article_name": "运动", "total_annotators": 10}
{"sentence_id": 23217, "sentence_text": "现在,已经在美国自己一个人生活八年,我还是觉得独立的生活是最重要的。", "article_id": 8699, "article_name": "选择专业的时候最重要的是什么_", "total_annotators": 10}
{"sentence_id": 23244, "sentence_text": "我想在在这里两个月了。", "article_id": 8700, "article_name": "学习一点点。", "total_annotators": 10}
{"sentence_id": 23252, "sentence_text": "正当能预料很多人去上海看世博会的时候,抓住别人弱点,抬高飞机和饭店费。", "article_id": 8701, "article_name": "抓住别人的弱点", "total_annotators": 10}
{"sentence_id": 23270, "sentence_text": "因此,有很多的外国人由发音上的问题经常被老师和中国同学受到指责。", "article_id": 8703, "article_name": "关于汉语发音", "total_annotators": 9}
{"sentence_id": 23273, "sentence_text": "舌头的位置是在运用标准的发音上非常重要的。", "article_id": 8703, "article_name": "关于汉语发音", "total_annotators": 9}
{"sentence_id": 23315, "sentence_text": "他们可能实现外国人觉得选择异乎寻常的名字是一个奇怪的现象。", "article_id": 8707, "article_name": "几个句子", "total_annotators": 9}
{"sentence_id": 23320, "sentence_text": "每次访客搬出去我们不得不装修我们的房子。", "article_id": 8707, "article_name": "几个句子", "total_annotators": 9}
{"sentence_id": 23349, "sentence_text": "这篇故事告诉我们:懂得放弃才能有了更多的得到好东西的机会。", "article_id": 8709, "article_name": "请修改一下!~", "total_annotators": 9}
{"sentence_id": 23357, "sentence_text": "她告诉我小心因为夏天的时候森林里有很多舍躺在地上。", "article_id": 8710, "article_name": "森林的散步", "total_annotators": 9}
{"sentence_id": 23395, "sentence_text": "我看电试和玩哟戏耗我的时间,但我也知道我除了学校学生的生活,也需要另外一个生活", "article_id": 8714, "article_name": "我看电试和玩哟戏耗我的时间, 但我也知道我除了学校学生的生活, 也需要另外一个生活", "total_annotators": 9}
{"sentence_id": 23405, "sentence_text": "我是这所大学的学生是因为某一个人珍重我自己的才能。", "article_id": 8714, "article_name": "我看电试和玩哟戏耗我的时间, 但我也知道我除了学校学生的生活, 也需要另外一个生活", "total_annotators": 9}
{"sentence_id": 23427, "sentence_text": "虽然我被摇动吃惊了,但没受到很大的损害。", "article_id": 8716, "article_name": "我在日本的现在情况", "total_annotators": 9}
{"sentence_id": 23480, "sentence_text": "对我来说,觉得纸巾不是买,而是在路上收到的东西。", "article_id": 8720, "article_name": "最高级纸巾", "total_annotators": 9}
{"sentence_id": 23491, "sentence_text": "8我跟法国的学生住一样。", "article_id": 8721, "article_name": "作业", "total_annotators": 9}
{"sentence_id": 23935, "sentence_text": "他们在广州得2~5年。", "article_id": 8759, "article_name": "“飞”的字", "total_annotators": 9}
{"sentence_id": 23936, "sentence_text": "我们谈话出差的时候,那个之内一个人用日语在白板上开始写“飞机”的字。", "article_id": 8759, "article_name": "“飞”的字", "total_annotators": 9}
{"sentence_id": 23938, "sentence_text": "但是他不能写日语的飞的字。", "article_id": 8759, "article_name": "“飞”的字", "total_annotators": 9}
{"sentence_id": 23985, "sentence_text": "去年房间里为遮太阳,把帘子挂上。", "article_id": 8763, "article_name": "错过机会没买", "total_annotators": 9}
{"sentence_id": 24008, "sentence_text": "窄这次的考试的范围窄.", "article_id": 8765, "article_name": "反义词!", "total_annotators": 9}
{"sentence_id": 24009, "sentence_text": "胖免得成胖,我常常运动.", "article_id": 8765, "article_name": "反义词!", "total_annotators": 9}
{"sentence_id": 24018, "sentence_text": "我表达怒气因为别人有什么我也想。", "article_id": 8766, "article_name": "忌妒", "total_annotators": 9}
{"sentence_id": 24023, "sentence_text": "忌妒指引一个欲望也指引异议关于这个欲望的需要。", "article_id": 8766, "article_name": "忌妒", "total_annotators": 9}
{"sentence_id": 24034, "sentence_text": "报纸的新闻关于小麦的价格也马上增长。", "article_id": 8767, "article_name": "价格增长", "total_annotators": 9}
{"sentence_id": 24089, "sentence_text": "下面一季期,我有一节中文课和一节英文课。", "article_id": 8770, "article_name": "普通话和日本文", "total_annotators": 9}
{"sentence_id": 24131, "sentence_text": "可是,有的已经想不起来暑假的美好的事情,太糟糕了,对这件事无可奈何。", "article_id": 8774, "article_name": "三天打鱼,两天晒网", "total_annotators": 9}
{"sentence_id": 24135, "sentence_text": "我的这样的性格,长大之后也一直没有变化,可是不知为何,这个网站的日记持续下去,真不可思议呢。", "article_id": 8774, "article_name": "三天打鱼,两天晒网", "total_annotators": 9}
{"sentence_id": 24179, "sentence_text": "但是今天我犯了巨大的错误,则从学校没带我的宝贝儿-电子词典。", "article_id": 8779, "article_name": "因不好的记忆力而发生的故事", "total_annotators": 9}
{"sentence_id": 23681, "sentence_text": "先卸下键盘,然后,,,全螺丝都松了呢,", "article_id": 8739, "article_name": "いじいじ♪", "total_annotators": 10}
{"sentence_id": 23683, "sentence_text": "然后翻电脑的时候刚才卸下的螺丝都掉在地板,(找了30分才找到全螺丝)", "article_id": 8739, "article_name": "いじいじ♪", "total_annotators": 10}
{"sentence_id": 23708, "sentence_text": "他是从上海来的,所以我完全听不懂他的地道会话。", "article_id": 8741, "article_name": "地道中国人的会话", "total_annotators": 10}
{"sentence_id": 23728, "sentence_text": "几年前在体育馆锻炼过,一个人不断得骑自行车,跑跑步.", "article_id": 8743, "article_name": "抖起精神,进攻!", "total_annotators": 10}
{"sentence_id": 23787, "sentence_text": "吃饭后旁边的园林,叫「古猗园」散步。", "article_id": 8746, "article_name": "南翔镇", "total_annotators": 10}
{"sentence_id": 23799, "sentence_text": "你们知道小田原以一座城堡有名的,但是小田原也以梅树很有名。", "article_id": 8748, "article_name": "前天的约会。", "total_annotators": 10}
{"sentence_id": 23836, "sentence_text": "我们先去上海,然后坐读轮船去韩国,日本,台北市和终于北京。", "article_id": 8751, "article_name": "天气已经很热了", "total_annotators": 10}
{"sentence_id": 23889, "sentence_text": "尽管我在这么好环境,还进步太慢了...", "article_id": 8754, "article_name": "我们公司", "total_annotators": 10}
{"sentence_id": 23899, "sentence_text": "在日本矫正牙齿排列不能适用国家医疗保险。", "article_id": 8755, "article_name": "牙齿排列", "total_annotators": 11}
{"sentence_id": 24649, "sentence_text": "阿,学校有homestay节目。", "article_id": 8811, "article_name": "HALLO", "total_annotators": 10}
{"sentence_id": 24654, "sentence_text": "因为明天我跟prospective宾大的学生聊天儿,所以我不会上中文课,所以我在写这篇中文日记呢。", "article_id": 8812, "article_name": "Skipping class tomorrow (shame on me)", "total_annotators": 10}
{"sentence_id": 24757, "sentence_text": "我学一个奇怪的生词了'北鼻'!", "article_id": 8817, "article_name": "加班", "total_annotators": 10}
{"sentence_id": 24774, "sentence_text": "但是我好朋友在飞机场待我,所以我没有问题.", "article_id": 8819, "article_name": "旅行!", "total_annotators": 10}
{"sentence_id": 24798, "sentence_text": "她说,她给丈夫和两个孩子通知:虽然离婚了也你们随时可以见面来会联络感情。", "article_id": 8820, "article_name": "请帮我修改下面的文章一下,谢谢!", "total_annotators": 10}
{"sentence_id": 24820, "sentence_text": "我刚打算用英语写日记,但为什么写起来难哦?", "article_id": 8822, "article_name": "写起来很难哦。", "total_annotators": 10}
{"sentence_id": 24829, "sentence_text": "我因自己的事情而不得不入学申请表交得有点儿慢。", "article_id": 8823, "article_name": "修改吧", "total_annotators": 10}
{"sentence_id": 24831, "sentence_text": "那么我首先到3月31日申请奖学金,然后可能又交给您一份入学申请表吗?", "article_id": 8823, "article_name": "修改吧", "total_annotators": 10}
{"sentence_id": 24832, "sentence_text": "申请奖学金了之后,外国研究生全都收到奖学金吗?或着按照成绩等级受的人员限制吗?", "article_id": 8823, "article_name": "修改吧", "total_annotators": 10}
{"sentence_id": 24914, "sentence_text": "我要是看starwars,我用汉语写作文,我在那个作文写汉语的句子。", "article_id": 8830, "article_name": "汉语的句子", "total_annotators": 11}
{"sentence_id": 24915, "sentence_text": "我试试用汉语说明电影的对话/", "article_id": 8830, "article_name": "汉语的句子", "total_annotators": 11}
{"sentence_id": 24917, "sentence_text": "我很哀愁因为我想跟别的学汉语的人一起聊天儿,和跟他们交流意见.", "article_id": 8830, "article_name": "汉语的句子", "total_annotators": 11}
{"sentence_id": 24923, "sentence_text": "那个节目募捐,24个小时中收集金额2亿日元以上。", "article_id": 8831, "article_name": "很大勇气", "total_annotators": 11}
{"sentence_id": 24928, "sentence_text": "谢谢她给我们很大勇气和感动。", "article_id": 8831, "article_name": "很大勇气", "total_annotators": 11}
{"sentence_id": 24929, "sentence_text": "今天我跟我的朋友一起去咯你个电影。", "article_id": 8832, "article_name": "花牌情缘", "total_annotators": 11}
{"sentence_id": 24941, "sentence_text": "今天下午我要给我的私人教师的小孩儿一门英语课。", "article_id": 8833, "article_name": "今天 II", "total_annotators": 11}
{"sentence_id": 24946, "sentence_text": "我记回忆一位加拿大人说“美国人没买酒圈。”", "article_id": 8833, "article_name": "今天 II", "total_annotators": 11}
{"sentence_id": 24947, "sentence_text": "下次我看望我的海外关系(在纽芬兰)我表弟请我喝啤酒。", "article_id": 8833, "article_name": "今天 II", "total_annotators": 11}
{"sentence_id": 24958, "sentence_text": "但是因为牛奶有很多营养,所以每早上我做喝加咖啡的牛奶。", "article_id": 8835, "article_name": "牛奶和乳奶", "total_annotators": 11}
{"sentence_id": 25059, "sentence_text": "我会横滨的照片给你把。", "article_id": 8843, "article_name": "我给中国的孩子写信", "total_annotators": 11}
{"sentence_id": 25075, "sentence_text": "因此我很努力地打工后,挣得够的话,一定去中国。", "article_id": 8844, "article_name": "我很担心", "total_annotators": 11}
{"sentence_id": 25099, "sentence_text": "我吸引了这句话,马上买了这本书。", "article_id": 8847, "article_name": "谢绝的能力", "total_annotators": 11}
{"sentence_id": 25101, "sentence_text": "她一直说,“虽然在工作上谢绝别人,尤其是上司的要求是很难的,可是干脆谢绝,主张自己的要求,然后为了提高自己,投入到自己的时间和费力,这是特别重要”。", "article_id": 8847, "article_name": "谢绝的能力", "total_annotators": 11}
{"sentence_id": 25121, "sentence_text": "男人「我们吃肉菜吧。」", "article_id": 8849, "article_name": "饮食习惯", "total_annotators": 11}
{"sentence_id": 25126, "sentence_text": "男人「哎呀,我以为吃牛肉菜。」", "article_id": 8849, "article_name": "饮食习惯", "total_annotators": 11}
{"sentence_id": 25133, "sentence_text": "所以,这个是里所当然的结果。", "article_id": 8849, "article_name": "饮食习惯", "total_annotators": 11}
{"sentence_id": 25160, "sentence_text": "参拜时、先告诉关帝我的名字、地址和出生年月日、再祈祷。", "article_id": 8852, "article_name": "中秋节快乐!!!", "total_annotators": 11}
{"sentence_id": 25171, "sentence_text": "这样抒情歌儿看起来只唱风景,其实包含了无常观,諦観(?)", "article_id": 8854, "article_name": "3", "total_annotators": 11}
{"sentence_id": 25178, "sentence_text": "我不禁衷心祝愿感觉到在和平中活的快乐性。", "article_id": 8854, "article_name": "3", "total_annotators": 11}
{"sentence_id": 25230, "sentence_text": "除了发订单以外,还要进口的手续,进口后的处理,送钱的准备,不良品的对策,向厂家查询技术上的问题什么等。", "article_id": 8857, "article_name": "比较数值", "total_annotators": 11}
{"sentence_id": 25360, "sentence_text": "我希望在中国能做新经验,会回意大利的时候还能有好记忆。", "article_id": 8866, "article_name": "谈谈你心中的中国", "total_annotators": 11}
{"sentence_id": 25430, "sentence_text": "由5位评价委员组成的评价团对留学生的表演一一评价了。", "article_id": 8871, "article_name": "参加汉语比赛", "total_annotators": 10}
{"sentence_id": 25432, "sentence_text": "评价后,对表演的个人看法讲述了。", "article_id": 8871, "article_name": "参加汉语比赛", "total_annotators": 10}
{"sentence_id": 25441, "sentence_text": "我两天待了他们给我的考试及格的电话。", "article_id": 8872, "article_name": "打工", "total_annotators": 10}
{"sentence_id": 25473, "sentence_text": "(日本的情报不常说把中国,可是他们常把美国和英国说多。)", "article_id": 8874, "article_name": "第二次世界大战", "total_annotators": 10}
{"sentence_id": 25487, "sentence_text": "韩大夫说我很累,血液循环不好,身体肿得好。", "article_id": 8876, "article_name": "很累", "total_annotators": 10}
{"sentence_id": 25520, "sentence_text": "我喜欢马特达蒙,因为我看到了她的电影叫谍影重重。", "article_id": 8879, "article_name": "可怕的电影", "total_annotators": 10}
{"sentence_id": 25560, "sentence_text": "突然我们大学附近开始融化的瀑布又冻病了。", "article_id": 8883, "article_name": "瀑布都又冻冰起来了", "total_annotators": 10}
{"sentence_id": 25567, "sentence_text": "也许这种思想都出来是因为我太悲观。", "article_id": 8883, "article_name": "瀑布都又冻冰起来了", "total_annotators": 10}
{"sentence_id": 25586, "sentence_text": "温度上升、可能就开空调。", "article_id": 8884, "article_name": "省电的夏天", "total_annotators": 10}
{"sentence_id": 25854, "sentence_text": "这是不是地球生气我们的日常的举止?", "article_id": 8906, "article_name": "作为地球的居民", "total_annotators": 10}
{"sentence_id": 25859, "sentence_text": "今天我想写个博客可是想不起什么值得写。", "article_id": 8907, "article_name": "澳洲坚果。。。昆士兰果", "total_annotators": 9}
{"sentence_id": 25864, "sentence_text": "原来我对我祖国有这么小的知识,在一方面很尴尬,另一方面却很高兴,原来我祖国还有这么多东西。", "article_id": 8907, "article_name": "澳洲坚果。。。昆士兰果", "total_annotators": 9}
{"sentence_id": 25865, "sentence_text": "呵呵,不过我本人不太喜欢昆士兰果觉得味道怪怪的。", "article_id": 8907, "article_name": "澳洲坚果。。。昆士兰果", "total_annotators": 9}
{"sentence_id": 25901, "sentence_text": "但是对我来说,那个菜非常辣,吃不得不来。", "article_id": 8910, "article_name": "第一天", "total_annotators": 9}
{"sentence_id": 25988, "sentence_text": "她现在一个人住,所以对她来说做两种学习的学费破费吧", "article_id": 8916, "article_name": "离别的季节 (别れの季节)", "total_annotators": 9}
{"sentence_id": 25990, "sentence_text": "我愿望是有一天她再回来我们的上课。", "article_id": 8916, "article_name": "离别的季节 (别れの季节)", "total_annotators": 9}
{"sentence_id": 26004, "sentence_text": "菜上来之前,妈妈和我说这些话。", "article_id": 8917, "article_name": "妈妈", "total_annotators": 9}
{"sentence_id": 26017, "sentence_text": "这个软件使用Windows7/Vista/XP(32bit位版)或者MacOSX10.5以上。", "article_id": 8918, "article_name": "免费的谷歌的日文输入法(Google日本语入力)", "total_annotators": 9}
{"sentence_id": 26078, "sentence_text": "为译成只八页习题,花了一整天。", "article_id": 8922, "article_name": "我尽量吧!", "total_annotators": 9}
{"sentence_id": 26095, "sentence_text": "大概8点半,我们在河岸跑的时候,一个孩子一边看自车一边打个电话了。", "article_id": 8924, "article_name": "夜里的英雄", "total_annotators": 9}
{"sentence_id": 26100, "sentence_text": "他说了自行车的锁坏了。", "article_id": 8924, "article_name": "夜里的英雄", "total_annotators": 9}
{"sentence_id": 26111, "sentence_text": "头发有点儿少,所以他好像寒酸的家伙的。", "article_id": 8924, "article_name": "夜里的英雄", "total_annotators": 9}
{"sentence_id": 26358, "sentence_text": "2007年我在学习汉语的时候,老师对我们常常说过,“你们现在想不到,可是你们在中国生活的时间很短很短,比如你们能活着70岁你们呆在中国的时间最长3,4年。", "article_id": 8943, "article_name": "博文;可能在中国最后发的博文", "total_annotators": 11}
{"sentence_id": 26368, "sentence_text": "回国以后也会想起在中国的时光,写下来时时刻刻的感情。", "article_id": 8943, "article_name": "博文;可能在中国最后发的博文", "total_annotators": 11}
{"sentence_id": 26406, "sentence_text": "我每天头努力听着听着汉语,可是到底不想增进。", "article_id": 8946, "article_name": "汉语水平考试(1)", "total_annotators": 11}
{"sentence_id": 26409, "sentence_text": "离写了汉语水平考试(1)的天已经过了三四天。", "article_id": 8947, "article_name": "汉语水平考试(2)", "total_annotators": 11}
{"sentence_id": 26432, "sentence_text": "那个旅游是对我留在回忆上很大的影响", "article_id": 8948, "article_name": "回忆", "total_annotators": 11}
{"sentence_id": 26436, "sentence_text": "我看18种类的演出节目。", "article_id": 8949, "article_name": "看马戏团", "total_annotators": 11}
{"sentence_id": 26563, "sentence_text": "可到周末我每次出去活动。", "article_id": 8958, "article_name": "自我介绍", "total_annotators": 11}
{"sentence_id": 26596, "sentence_text": "今天12点起来就洗澡了以后洗衣服!", "article_id": 8959, "article_name": "huhu", "total_annotators": 9}
{"sentence_id": 26619, "sentence_text": "现在没当80岁的女性们因为想穿新娘礼服,所以很高兴地等待入会。", "article_id": 8962, "article_name": "吃饭会", "total_annotators": 9}
{"sentence_id": 26620, "sentence_text": "她们因为已经变成体形,所以新娘礼服的背面的拉索不拉上。", "article_id": 8962, "article_name": "吃饭会", "total_annotators": 9}
{"sentence_id": 26648, "sentence_text": "我看到在中国卖各种各样鸡肉的部分?", "article_id": 8964, "article_name": "鸡肉", "total_annotators": 9}
{"sentence_id": 26650, "sentence_text": "我也不知道什么鸡肉的部分。", "article_id": 8964, "article_name": "鸡肉", "total_annotators": 9}
{"sentence_id": 26669, "sentence_text": "第一,日本西游记,唐三藏是女性。", "article_id": 8966, "article_name": "日本西游记事情", "total_annotators": 9}
{"sentence_id": 26761, "sentence_text": "一生这样说着让我看看我的眼睛的画图了。", "article_id": 8973, "article_name": "眼睛疼", "total_annotators": 9}
{"sentence_id": 26769, "sentence_text": "即使不学习中国文化,这件事无法获悉由于每天显示出来。", "article_id": 8974, "article_name": "中国人", "total_annotators": 9}
{"sentence_id": 26772, "sentence_text": "我觉得在欧洲我们越来越分开。", "article_id": 8974, "article_name": "中国人", "total_annotators": 9}
{"sentence_id": 26775, "sentence_text": "因为我去了旅游,朋友给我他的照相机,另一个接给我学习书。", "article_id": 8974, "article_name": "中国人", "total_annotators": 9}
{"sentence_id": 26776, "sentence_text": "可是他们也统统地帮你有问题的时。", "article_id": 8974, "article_name": "中国人", "total_annotators": 9}
{"sentence_id": 26777, "sentence_text": "如果你去看警察,去买东西,写论文等等,中国朋友肯定要帮你了!", "article_id": 8974, "article_name": "中国人", "total_annotators": 9}
{"sentence_id": 26801, "sentence_text": "在世界上每个社会不同,思想开明地生活使可能你认识到有趣的东西!", "article_id": 8974, "article_name": "中国人", "total_annotators": 9}
{"sentence_id": 26821, "sentence_text": "去年10月上旬,我去了这家医院在外科请医生看看病我的症状。", "article_id": 8976, "article_name": "做手术", "total_annotators": 9}
{"sentence_id": 26829, "sentence_text": "我很担心,因为我从来没做过手术,但手术是可以当天回家的这么简单的,而且执刀医生是这种病的权威医生,所以我也比较放心。", "article_id": 8976, "article_name": "做手术", "total_annotators": 9}
{"sentence_id": 27091, "sentence_text": "我们元旦的时候也拜访了几个朋友的家送礼物。", "article_id": 8994, "article_name": "春节", "total_annotators": 10}
{"sentence_id": 27099, "sentence_text": "昨天我看的节目谈着有些日本社会的趋势,其中也提到了中国社会的趋势。", "article_id": 8995, "article_name": "富二代,农村留守儿童。。。。。。。。。", "total_annotators": 10}
{"sentence_id": 27108, "sentence_text": "在这场里,住在日本的大概二十个中国女性也过来谈谈着。", "article_id": 8995, "article_name": "富二代,农村留守儿童。。。。。。。。。", "total_annotators": 10}
{"sentence_id": 27162, "sentence_text": "一十五分钟问的广播讲座,广播讲座录音了。", "article_id": 8999, "article_name": "今天练习", "total_annotators": 10}
{"sentence_id": 27173, "sentence_text": "今天我坐地铁来上班的时候,在客车里的人比平时少得很,所以客车里十分悠闲。", "article_id": 9000, "article_name": "今天是劳动节!", "total_annotators": 10}
{"sentence_id": 27183, "sentence_text": "但是,我最近一直节食(每天只吃两顿饭,一般早饭不吃)而且每周一次我不吃24小时的饭,今天就是不吃饭的那个日子,我含着眼泪,只好我一个人在办公室里要看美国甲级棒球联赛。", "article_id": 9000, "article_name": "今天是劳动节!", "total_annotators": 10}
{"sentence_id": 27209, "sentence_text": "这座山也是很有名的火山,特别火山口很大,火山口里养马和牛。", "article_id": 9002, "article_name": "旅行", "total_annotators": 10}
{"sentence_id": 27234, "sentence_text": "但是我在澳大利亚,比较难拿到东西.我应该去亚洲商店.", "article_id": 9004, "article_name": "你会做菜吗_", "total_annotators": 10}
{"sentence_id": 27236, "sentence_text": "只有这些调味料,就你会做日本菜.", "article_id": 9004, "article_name": "你会做菜吗_", "total_annotators": 10}
{"sentence_id": 27262, "sentence_text": "往返的飞机票和交税金也900多块钱!", "article_id": 9007, "article_name": "日本上海的票500人民币!", "total_annotators": 10}
{"sentence_id": 27311, "sentence_text": "节目没有放晚餐的进行,可是散了以后杨晓芸和向南因为他一整晚上跟露露一直说话而争吵。", "article_id": 9012, "article_name": "我有一个问题", "total_annotators": 10}
{"sentence_id": 27323, "sentence_text": "孩子们的形象也性格各异,他们是芊芊、东郎、二孬、阿嚏、杏花、门鼻儿等。", "article_id": 9013, "article_name": "《万卷楼》推荐学习中文的朋友在线看的一部情景剧", "total_annotators": 11}
{"sentence_id": 27330, "sentence_text": "母亲大概打10年以上保龄球了。", "article_id": 9014, "article_name": "保龄球", "total_annotators": 11}
{"sentence_id": 27332, "sentence_text": "所以从开始的以前,我没想胜母亲。", "article_id": 9014, "article_name": "保龄球", "total_annotators": 11}
{"sentence_id": 27359, "sentence_text": "所以为了刺激经济政府决定了这个。", "article_id": 9016, "article_name": "定额给付金", "total_annotators": 11}
{"sentence_id": 27360, "sentence_text": "从18岁到65岁的人得到12000日元。", "article_id": 9016, "article_name": "定额给付金", "total_annotators": 11}
{"sentence_id": 27367, "sentence_text": "33000日元的东西能买30000日元。", "article_id": 9016, "article_name": "定额给付金", "total_annotators": 11}
{"sentence_id": 27379, "sentence_text": "那个东西买了以后,我打算回家,但是他低语了:“要买蔷薇花束。”", "article_id": 9017, "article_name": "很好看", "total_annotators": 11}
{"sentence_id": 27383, "sentence_text": "今天我测试在英语面试;;", "article_id": 9018, "article_name": "困难´ヘ`;", "total_annotators": 11}
{"sentence_id": 27384, "sentence_text": "大概没关系吧…不太、不表达自己的意见…", "article_id": 9018, "article_name": "困难´ヘ`;", "total_annotators": 11}
{"sentence_id": 27390, "sentence_text": "…中文非常困难一点儿也不明白", "article_id": 9018, "article_name": "困难´ヘ`;", "total_annotators": 11}
{"sentence_id": 27391, "sentence_text": "对不起在奇怪的中文今后也固执己见!", "article_id": 9018, "article_name": "困难´ヘ`;", "total_annotators": 11}
{"sentence_id": 27435, "sentence_text": "我觉得春天给人留下清爽的好影响。", "article_id": 9023, "article_name": "甜茶的效力", "total_annotators": 11}
{"sentence_id": 27486, "sentence_text": "因为已经学习中文一点,比较容易。", "article_id": 9026, "article_name": "我参加一次的中文课", "total_annotators": 11}
{"sentence_id": 27648, "sentence_text": "给了别人可以做行事,可以玩保,所以就不会浪费了。", "article_id": 9040, "article_name": "还可以用的的东西不要丢", "total_annotators": 11}
{"sentence_id": 27702, "sentence_text": "每次我看卡通片我平常喜欢看comedy,爱情,等等。", "article_id": 9044, "article_name": "卡通片", "total_annotators": 11}
{"sentence_id": 27724, "sentence_text": "为了第1排看,早就去等好多时间。", "article_id": 9046, "article_name": "明天我去看演唱会", "total_annotators": 11}
{"sentence_id": 27788, "sentence_text": "去出入境时候,有一个管理不允许让我在北京留点儿。", "article_id": 9051, "article_name": "延期签证", "total_annotators": 11}
{"sentence_id": 27812, "sentence_text": "当时买笔记本,我老是在后悔没看一看多次,就马上买到。", "article_id": 9053, "article_name": " 作文", "total_annotators": 11}
{"sentence_id": 27818, "sentence_text": "我不会好地使用这种的网路服务,只好从在有名或者偶然发现的比较多资料的博客搬到我的博客我喜欢的资料。", "article_id": 9053, "article_name": " 作文", "total_annotators": 11}
{"sentence_id": 27822, "sentence_text": "因为从很久以前开始,我就盼望着这个时候而耐心等待,所以我最近感觉感概万千。", "article_id": 9054, "article_name": "12 学会放下", "total_annotators": 11}
{"sentence_id": 27823, "sentence_text": "其实打上个月初以来,在公司里,我一个人担任着公司的差不多所有的项目。", "article_id": 9054, "article_name": "12 学会放下", "total_annotators": 11}
{"sentence_id": 27831, "sentence_text": "但是我认为,未来为了我走远,保持自己现在的激请是机关重要的。", "article_id": 9054, "article_name": "12 学会放下", "total_annotators": 11}
{"sentence_id": 27845, "sentence_text": "1914年第一次世界大战爆发后,它为沙皇政府改名重新命名“彼得格勒”,意思是彼得的城市。", "article_id": 9055, "article_name": "baogao again.", "total_annotators": 11}
{"sentence_id": 27865, "sentence_text": "听说在千叶的有的海岸有时候能看到游泳的大象。", "article_id": 9057, "article_name": "大象", "total_annotators": 11}
{"sentence_id": 27887, "sentence_text": "我每天去tutorial可是我不会清清楚楚地表明我的意见.", "article_id": 9059, "article_name": "会话", "total_annotators": 11}
{"sentence_id": 27895, "sentence_text": "当然今天我们作水饺了。", "article_id": 9060, "article_name": "饺子会", "total_annotators": 11}
{"sentence_id": 27898, "sentence_text": "他们从哈尔滨来的,湖北省的,福建的,等等。", "article_id": 9060, "article_name": "饺子会", "total_annotators": 11}
{"sentence_id": 28050, "sentence_text": "好好儿吃一顿以后,我们走了饭店对面的银河广场散步。", "article_id": 9074, "article_name": "吃了烤鸭还有滑冰。", "total_annotators": 10}
{"sentence_id": 28056, "sentence_text": "但是我好久没滑冰,所以起初我几次摔了。", "article_id": 9074, "article_name": "吃了烤鸭还有滑冰。", "total_annotators": 10}
{"sentence_id": 28059, "sentence_text": "回来以后,哪我知道我的伤有点儿厉害比我想的。", "article_id": 9074, "article_name": "吃了烤鸭还有滑冰。", "total_annotators": 10}
{"sentence_id": 28144, "sentence_text": "福岛第一核电站位于福岛县,不过在这核电站发的电不用在福岛县内,被送到首都圈,换句话说,东电管辖的地区。", "article_id": 9078, "article_name": "东日本大震灾(五,上篇)", "total_annotators": 10}
{"sentence_id": 28188, "sentence_text": "我才意识到没想到的事会发生,才看看一个准备到的背包里有什么东西(很多日本人都准备到一个包,里面有需要的东西。", "article_id": 9080, "article_name": "东日本大震灾(一)", "total_annotators": 10}
{"sentence_id": 28300, "sentence_text": "3月20号去牙课的时候,还没有问题。", "article_id": 9088, "article_name": "关于牙科的课题", "total_annotators": 9}
{"sentence_id": 28314, "sentence_text": "好像韩国的参鸡汤差不多的味道。", "article_id": 9089, "article_name": "好忙的日子", "total_annotators": 9}
{"sentence_id": 28340, "sentence_text": "河的水是碧绿,好像翡翠。", "article_id": 9091, "article_name": "奈良旅游", "total_annotators": 9}
{"sentence_id": 28354, "sentence_text": "外滩和浦东的夜景对我来说又非常漂亮又忘不了。", "article_id": 9092, "article_name": "去上海旅行", "total_annotators": 9}
{"sentence_id": 28369, "sentence_text": "除了政治的自由,中国人在生活中可以享受更多了自由。", "article_id": 9094, "article_name": "社会自由", "total_annotators": 9}
{"sentence_id": 28371, "sentence_text": "除此之外,在英国的路,四处地方有摄像机。", "article_id": 9094, "article_name": "社会自由", "total_annotators": 9}
{"sentence_id": 28387, "sentence_text": "一般来说,意见很好听的话,就会很容易听得进入,反对意见或意见有尖酸味道的话,就会很难倾听,经常就控制不住心中的愤怒等,不等意见说完就开始反驳,听不到最后。", "article_id": 9096, "article_name": "听了Google的那样事我就想的事", "total_annotators": 9}
{"sentence_id": 28403, "sentence_text": "因为今天演奏的乐曲速度都太快,所以练完后真是累了。", "article_id": 9097, "article_name": "为了开心地演奏……", "total_annotators": 9}
{"sentence_id": 28409, "sentence_text": "虽然以前她姓\"高\",(因为在日本结婚后女的姓可以变成老公的姓.)", "article_id": 9098, "article_name": "我的同事③", "total_annotators": 9}
{"sentence_id": 28440, "sentence_text": "今天我要写我的同事的刘先生的事.", "article_id": 9100, "article_name": "我的同事⑤", "total_annotators": 9}
{"sentence_id": 28477, "sentence_text": "乌鸦放在电线杆子的铁丝衣架就有时引起漏电,由于漏电,停电发生。", "article_id": 9102, "article_name": "乌鸦引起停电", "total_annotators": 9}
{"sentence_id": 28722, "sentence_text": "老实说,我好不容易找到朋友,他们觉得我们是好友反之,我还不太自在。", "article_id": 9117, "article_name": "爱是啥意思", "total_annotators": 11}
{"sentence_id": 28836, "sentence_text": "以后几年,三公主的行踪终手又被妙庄王得知道。", "article_id": 9124, "article_name": "千手观音,第二", "total_annotators": 11}
{"sentence_id": 28963, "sentence_text": "我静观着我们周围都充斥着贪污腐败和黑钱(/赃款)的交往的现实,我实感到我们时代造成了的业报。", "article_id": 9134, "article_name": "《凌晨下的雨》(二)", "total_annotators": 10}
{"sentence_id": 28965, "sentence_text": "如果吃不起那样处于贫困的处境的话,我当然了解到,生活得很富裕的人都堕落了在黑钱前,‘苹果箱子’的威力到底是什么程度,都沦为这样子、这模样呢?", "article_id": 9134, "article_name": "《凌晨下的雨》(二)", "total_annotators": 10}
{"sentence_id": 28984, "sentence_text": "他因生活得很放荡导致他脑子里的黄金越来越少了,而且有时候被不好的朋友盗过。", "article_id": 9135, "article_name": "《凌晨下的雨》(三)", "total_annotators": 10}
{"sentence_id": 29001, "sentence_text": "不把从祖先继承下来的农田看做神圣的生命根基(/基地),只利用生产的效用手段而已。", "article_id": 9136, "article_name": "《凌晨下的雨》(一)", "total_annotators": 10}
{"sentence_id": 29019, "sentence_text": "我们问一个中国人哪些公共汽车去王府井,可是我们没听懂他。", "article_id": 9138, "article_name": "taking a bus", "total_annotators": 10}
{"sentence_id": 29036, "sentence_text": "我随便写这编文章,恐怕写得不好。", "article_id": 9139, "article_name": "爱情还是梦想", "total_annotators": 10}
{"sentence_id": 29062, "sentence_text": "孩子们都在被窝了,我今天做吗的工作结束了!", "article_id": 9142, "article_name": "美好的梦", "total_annotators": 10}
{"sentence_id": 29067, "sentence_text": "今年年初他在自己Facebook上发表3月份他来东京开第一次日本演唱会。", "article_id": 9142, "article_name": "美好的梦", "total_annotators": 10}
{"sentence_id": 29075, "sentence_text": "真的好感动的美好回忆。", "article_id": 9142, "article_name": "美好的梦", "total_annotators": 10}
{"sentence_id": 29077, "sentence_text": "我先从我的家到美国NavalAcadeemy.", "article_id": 9143, "article_name": "我的暑假", "total_annotators": 10}
{"sentence_id": 29078, "sentence_text": "虽然美国NavalAcademy难得我受不了,我花六天在这儿。", "article_id": 9143, "article_name": "我的暑假", "total_annotators": 10}
{"sentence_id": 29124, "sentence_text": "我很想理解中国人对日本的航空公司的印象,好点,坏点,和改善法", "article_id": 9146, "article_name": "中国朋友,请帮我一下!", "total_annotators": 10}
{"sentence_id": 29127, "sentence_text": "说实在的,我第一次受到中国的服务的时候,受不了他们的服务,觉得服务速度太快,不太热情,说得太快,只能说汉语,看她们好像一直生气,当然也有很多好点啊,但是跟日本服务完全不一样", "article_id": 9146, "article_name": "中国朋友,请帮我一下!", "total_annotators": 10}
{"sentence_id": 29129, "sentence_text": "我自己也想着,你们中国人的意见会帮助我!", "article_id": 9146, "article_name": "中国朋友,请帮我一下!", "total_annotators": 10}
{"sentence_id": 29138, "sentence_text": "从喜欢唱日本的演歌的朋友见面,我开始唱演歌的。", "article_id": 9147, "article_name": "自我介绍", "total_annotators": 10}
{"sentence_id": 29144, "sentence_text": "我妈妈买一个星期分量的东西,结账后,她每次拿到瓦楞纸放东西。", "article_id": 9148, "article_name": "1", "total_annotators": 10}
{"sentence_id": 29146, "sentence_text": "第一天的晚饭,我们每次一起出去外面吃晚饭。", "article_id": 9148, "article_name": "1", "total_annotators": 10}
{"sentence_id": 29165, "sentence_text": "虽然我常常说汉语说得不好,我还学习很多。", "article_id": 9150, "article_name": "哀愁。生气", "total_annotators": 10}
{"sentence_id": 29171, "sentence_text": "我很哀愁因为我要是想跟别人一起说汉语,我不可以,因为很多美国人不会说汉语。", "article_id": 9150, "article_name": "哀愁。生气", "total_annotators": 10}
{"sentence_id": 29178, "sentence_text": "我现在知道我可以做很多东西,因为我认为我自己。", "article_id": 9150, "article_name": "哀愁。生气", "total_annotators": 10}
{"sentence_id": 29307, "sentence_text": "当然,通过家人一起去旅行的机会,充实到家人之间的关系,还会了解到世界各地的风土人情。", "article_id": 9159, "article_name": "我最想做的事情", "total_annotators": 10}
{"sentence_id": 29315, "sentence_text": "洋洋:必须课2门总共6学分,选修课2门总共4学分吧。", "article_id": 9160, "article_name": "学分", "total_annotators": 10}
{"sentence_id": 29434, "sentence_text": "今天很便宜,我去看了<2012>。", "article_id": 9171, "article_name": "地球临终的天", "total_annotators": 11}
{"sentence_id": 29437, "sentence_text": "不是,RolandEmmerich导演的作品都让我打击了。", "article_id": 9171, "article_name": "地球临终的天", "total_annotators": 11}
{"sentence_id": 29443, "sentence_text": "量增多的时候,可以除少点儿。", "article_id": 9172, "article_name": "很好吃!!", "total_annotators": 11}
{"sentence_id": 29450, "sentence_text": "那菜加入我的得意的菜啊。", "article_id": 9172, "article_name": "很好吃!!", "total_annotators": 11}
{"sentence_id": 29487, "sentence_text": "我从小时候在老家养着狗非常喜欢小的动物", "article_id": 9177, "article_name": "天竺鼠 超可爱的", "total_annotators": 11}
{"sentence_id": 29490, "sentence_text": "今天终于去了到动物园就会非常高兴了!", "article_id": 9177, "article_name": "天竺鼠 超可爱的", "total_annotators": 11}
{"sentence_id": 29502, "sentence_text": "不但电影内的音乐,而且男女之间的难分难舍的爱情让我非常感动。", "article_id": 9178, "article_name": "甜密密", "total_annotators": 11}
{"sentence_id": 29523, "sentence_text": "在星期六的时候,我去上了一个跳舞。", "article_id": 9181, "article_name": "我得到一个女孩的电话号!", "total_annotators": 11}
{"sentence_id": 29525, "sentence_text": "我坐下的以后我看到了一个女生。", "article_id": 9181, "article_name": "我得到一个女孩的电话号!", "total_annotators": 11}
{"sentence_id": 29526, "sentence_text": "我看到她的时候我理会了她是单独的。", "article_id": 9181, "article_name": "我得到一个女孩的电话号!", "total_annotators": 11}
{"sentence_id": 29527, "sentence_text": "因此她是单独的我去向她的旁边坐下了。", "article_id": 9181, "article_name": "我得到一个女孩的电话号!", "total_annotators": 11}
{"sentence_id": 29533, "sentence_text": "同学们不允许帮助可是,我已经给我的老师。", "article_id": 9182, "article_name": "我的论文。。。", "total_annotators": 11}
{"sentence_id": 29541, "sentence_text": "她的圣诞饭那么好好吃,我吃三个盘的食物。", "article_id": 9182, "article_name": "我的论文。。。", "total_annotators": 11}
{"sentence_id": 29564, "sentence_text": "我以为想爱起来的时候,你越来越不管是否他们送给你礼物。", "article_id": 9182, "article_name": "我的论文。。。", "total_annotators": 11}
{"sentence_id": 29587, "sentence_text": "对不起.每天是新的天!我该好好想吧.", "article_id": 9183, "article_name": "我该好好想", "total_annotators": 11}
{"sentence_id": 29614, "sentence_text": "藤吉先生的心不动,对藤吉先生朝田先生决定在路上进行手术。", "article_id": 9185, "article_name": "我看的电视剧的内容", "total_annotators": 11}
{"sentence_id": 29621, "sentence_text": "马上朝田先生说,“明明能够救的却不去求,这样见死不救就是罪!”", "article_id": 9185, "article_name": "我看的电视剧的内容", "total_annotators": 11}
{"sentence_id": 29631, "sentence_text": "那天我回国的日子,我应该去机场。", "article_id": 9186, "article_name": "一件难忘的事", "total_annotators": 11}
{"sentence_id": 29659, "sentence_text": "那天然的甜味,很嫩嫩的玉米粒是不能比市场里卖的蒸玉米。", "article_id": 9188, "article_name": "庄稼的好处", "total_annotators": 11}
{"sentence_id": 29681, "sentence_text": "还有我不参观大三巴牌坊回家。", "article_id": 9190, "article_name": "マカオ", "total_annotators": 11}
{"sentence_id": 29683, "sentence_text": "如果有机会的话,就我绝对很想去澳门。", "article_id": 9190, "article_name": "マカオ", "total_annotators": 11}
{"sentence_id": 29714, "sentence_text": "熬头儿[áotour]孩子已经上大学了,她吃苦还是有个熬头儿。", "article_id": 9192, "article_name": "关于表达自己的意思", "total_annotators": 11}
{"sentence_id": 29721, "sentence_text": "奔头儿孩子长大了,有奔头儿了。", "article_id": 9192, "article_name": "关于表达自己的意思", "total_annotators": 11}
{"sentence_id": 29747, "sentence_text": "第7天的早上,就是要下葬的前一天,他依旧去放在棺材的房间,居然发现棺材里的‘遗体’没有了。", "article_id": 9194, "article_name": "看到一则新闻:“死而复活”的老妇人", "total_annotators": 11}
{"sentence_id": 29770, "sentence_text": "以后,想和我的朋友聚晤。", "article_id": 9195, "article_name": "你好!", "total_annotators": 11}
{"sentence_id": 29806, "sentence_text": "从这儿在你住的地方不太远。", "article_id": 9198, "article_name": "我的弟弟找到了工作。", "total_annotators": 11}
{"sentence_id": 29822, "sentence_text": "目前日本也有很多退休人,可是在日本,比如太太跟女朋友去旅行,学跳舞,去饭店吃豪华菜,什么的。", "article_id": 9200, "article_name": "我的中国旅游3", "total_annotators": 11}
{"sentence_id": 29839, "sentence_text": "但是我学的语言都是在学校学的,不知道怎么自学语言,所以我那时不开时学汉语。", "article_id": 9202, "article_name": "我是怎么学汉语的", "total_annotators": 11}
{"sentence_id": 29875, "sentence_text": "但,我根本没有那种会受欢迎的脸蛋,却只会贴自己画的图标。", "article_id": 9204, "article_name": "想得到大家的批改,该做什么好呢_", "total_annotators": 11}
{"sentence_id": 29927, "sentence_text": "我不擅长的是\"听力理解\",我看汉字就明白,但是听起来真的不懂", "article_id": 9208, "article_name": "HSK 汉语水平考试", "total_annotators": 11}
{"sentence_id": 29983, "sentence_text": "能喝是能喝咖啡,但是不太喜欢了。", "article_id": 9212, "article_name": "喝茶", "total_annotators": 11}
{"sentence_id": 30031, "sentence_text": "过了两个星期后,再开学。", "article_id": 9216, "article_name": "你好", "total_annotators": 11}
{"sentence_id": 30082, "sentence_text": "3月6号今天我还不能查询到快递件的跟踪纪录了。", "article_id": 9218, "article_name": "淘宝的卖家一直骗我", "total_annotators": 11}
{"sentence_id": 30084, "sentence_text": "卖家说“申请退款的了吗”", "article_id": 9218, "article_name": "淘宝的卖家一直骗我", "total_annotators": 11}
{"sentence_id": 30108, "sentence_text": "前二十五年我学了在德国的大学院。", "article_id": 9219, "article_name": "我的爱好是画画儿。", "total_annotators": 11}
{"sentence_id": 30248, "sentence_text": "我一进去书店,就不由自主地买一本书。", "article_id": 9230, "article_name": "购物狂", "total_annotators": 10}
{"sentence_id": 30285, "sentence_text": "有的公司连履历书也没有通过...", "article_id": 9233, "article_name": "好累....", "total_annotators": 9}
{"sentence_id": 30321, "sentence_text": "我向铃十分钟以前,关闭电脑。", "article_id": 9236, "article_name": "今天有了火灾避难训练", "total_annotators": 9}
{"sentence_id": 30342, "sentence_text": "而且在韩国经济不好找不了。", "article_id": 9237, "article_name": "考虑", "total_annotators": 9}
{"sentence_id": 30380, "sentence_text": "然后、我捡到了附近的中心。", "article_id": 9240, "article_name": "如果我的···", "total_annotators": 9}
{"sentence_id": 30399, "sentence_text": "我就给他打电话,根朋友说了一个小时的话.", "article_id": 9242, "article_name": "时间词语", "total_annotators": 9}
{"sentence_id": 30429, "sentence_text": "其实我觉得逐渐在中国的生活厌倦了.", "article_id": 9245, "article_name": "愿望", "total_annotators": 9}
{"sentence_id": 30562, "sentence_text": "反正我每次走往门口的小道,看到树枝上吵闹的鸟们时,内心总会有一种被保护而安慰的感觉流起来。", "article_id": 9255, "article_name": "老家", "total_annotators": 10}
{"sentence_id": 30626, "sentence_text": "当时我们心里非常美滋滋的,所以inordertocelebrate我们去能找到最贵的饭店,那里是一家牛排饭馆。", "article_id": 9259, "article_name": "我的到Atlantic City的旅行", "total_annotators": 10}
{"sentence_id": 30641, "sentence_text": "当时我们俩累极乐,只能想到的办法是求求宾馆把房间还给我们,然后睡一个觉,睡醒以后就再从取款机拿钱。", "article_id": 9259, "article_name": "我的到Atlantic City的旅行", "total_annotators": 10}
{"sentence_id": 30644, "sentence_text": "可是我女友正要按一百块的按钮时她突然停下来转身面对我说“我不会甘心的,反正我今天感觉我运气回来了。", "article_id": 9259, "article_name": "我的到Atlantic City的旅行", "total_annotators": 10}
{"sentence_id": 30645, "sentence_text": "“她转过来按四百块的按钮。", "article_id": 9259, "article_name": "我的到Atlantic City的旅行", "total_annotators": 10}
{"sentence_id": 30651, "sentence_text": "我没带雨伞,不得不很快地跑就到了我的车。", "article_id": 9260, "article_name": "下课以后", "total_annotators": 10}
{"sentence_id": 30780, "sentence_text": "当然卖啤酒,果汁等的饮料,也有游戏店。", "article_id": 9272, "article_name": "临时的夜市", "total_annotators": 11}
{"sentence_id": 31064, "sentence_text": "虽然写广告是我自己提出的主意, 可因为我一直想这个主意看来很搞笑,所以她看我的复印件时,感觉很害羞(为难请).", "article_id": 9293, "article_name": "交了新朋友!", "total_annotators": 11}
{"sentence_id": 31094, "sentence_text": "路上公车司机跟另外一辆公车打架起来。", "article_id": 9295, "article_name": "借口", "total_annotators": 11}
{"sentence_id": 31103, "sentence_text": "在河内工作的朋友能说越南语用日常的一般生活", "article_id": 9296, "article_name": "今年的暑假", "total_annotators": 11}
{"sentence_id": 31198, "sentence_text": "因为有的樱花已经满开,有的樱花还没开。", "article_id": 9306, "article_name": "樱花前线", "total_annotators": 11}
{"sentence_id": 31260, "sentence_text": "会话一点后,把电话挂上,出门了。", "article_id": 9312, "article_name": "哎呀,真糟糕", "total_annotators": 11}
{"sentence_id": 31270, "sentence_text": "大概我有点过分打电话啊。", "article_id": 9312, "article_name": "哎呀,真糟糕", "total_annotators": 11}
{"sentence_id": 31340, "sentence_text": "我孩子的时候,每天在电视里看那本书的动画片。", "article_id": 9319, "article_name": "很小的岛", "total_annotators": 11}
{"sentence_id": 31346, "sentence_text": "我觉得他要结婚,他不想结婚!", "article_id": 9320, "article_name": "今天", "total_annotators": 11}
{"sentence_id": 31369, "sentence_text": "\"那个回答,「为了是完成拼图玩具」。\"", "article_id": 9324, "article_name": "那个3", "total_annotators": 11}
{"sentence_id": 31443, "sentence_text": "因为乌龙茶很有名,所以为了中国旅行的礼物最好。", "article_id": 9330, "article_name": "上海旅行的礼物", "total_annotators": 11}
{"sentence_id": 31545, "sentence_text": "我看看的时候,我不知道什幺写。", "article_id": 9340, "article_name": "祖房子。", "total_annotators": 11}
{"sentence_id": 31576, "sentence_text": "我的一位中文老师出了关于“一次拿给客人的东西,在拿给别的客人的事情”的课题。", "article_id": 9343, "article_name": "关于“一次拿给客人的东西,在拿给别的客人的事情”的课题", "total_annotators": 10}
{"sentence_id": 31592, "sentence_text": "我看过一次、剩下的黄油旁边有烟草。", "article_id": 9343, "article_name": "关于“一次拿给客人的东西,在拿给别的客人的事情”的课题", "total_annotators": 10}
{"sentence_id": 31608, "sentence_text": "第二天虽然星期六,我要上班,开车上班的话需要10分钟,但搭电车和公共汽车,花40分钟,很麻烦。", "article_id": 9344, "article_name": "关于很小气的人的课题", "total_annotators": 10}
{"sentence_id": 31614, "sentence_text": "我觉得有可能遇到事故,他女朋友生伤什么的,所以被放炮的话,有点放心啊。", "article_id": 9344, "article_name": "关于很小气的人的课题", "total_annotators": 10}
{"sentence_id": 31648, "sentence_text": "他们为补充伞,准备6000左右的伞一年。", "article_id": 9347, "article_name": "立伞架", "total_annotators": 10}
{"sentence_id": 31691, "sentence_text": "“为了答应这个疑问,界限来我要介绍一下紫菜饭卷的做法。", "article_id": 9352, "article_name": "我们来一起做紫菜饭卷~~!", "total_annotators": 10}
{"sentence_id": 31727, "sentence_text": "跟我的同学交往也有一段距离,因为是我在留学生公寓。", "article_id": 9353, "article_name": "选择", "total_annotators": 10}
{"sentence_id": 31810, "sentence_text": "今年的最后一天,今年我怎样过的?", "article_id": 9358, "article_name": "除夕", "total_annotators": 11}
{"sentence_id": 31813, "sentence_text": "其实派遣的待遇时,三年时间一直没有奖金。", "article_id": 9358, "article_name": "除夕", "total_annotators": 11}
{"sentence_id": 31823, "sentence_text": "最近他会连续跳20次了,让我高兴。", "article_id": 9358, "article_name": "除夕", "total_annotators": 11}
{"sentence_id": 31832, "sentence_text": "这几天上线不是就马上连接,暂时候才连接因特网。", "article_id": 9359, "article_name": "非常倒霉啊!", "total_annotators": 11}
{"sentence_id": 31854, "sentence_text": "她说“我妈妈说,你每天从头顶到脚下穿粉红色的衣服的话,你的朋友一定觉得近来她的行动有点奇怪。", "article_id": 9360, "article_name": "粉红色", "total_annotators": 11}
{"sentence_id": 31936, "sentence_text": "今天我要喝‘西湖龙茶’!", "article_id": 9367, "article_name": "可怕!!!", "total_annotators": 11}
{"sentence_id": 31939, "sentence_text": "听说口呼吸比鼻呼吸到脑子的氧量100分之20减。", "article_id": 9368, "article_name": "口呼吸", "total_annotators": 11}
{"sentence_id": 31942, "sentence_text": "脑子也一样,如果不足氧量的话,脑子没灵。", "article_id": 9368, "article_name": "口呼吸", "total_annotators": 11}
{"sentence_id": 32078, "sentence_text": "这儿卖咖啡,茶,饮料和简单的菜和.", "article_id": 9379, "article_name": "cafe", "total_annotators": 11}
{"sentence_id": 32087, "sentence_text": "“你”和“好”是汉字我学习第一上课。", "article_id": 9380, "article_name": "chinese character", "total_annotators": 11}
{"sentence_id": 32170, "sentence_text": "数学很难但是,当我懂数学成意思。", "article_id": 9388, "article_name": "你喜欢学校马", "total_annotators": 11}
{"sentence_id": 32195, "sentence_text": "虽然什么事都不发生了,但我真不是个骗子,所以我决定了我跟她因该吹了。", "article_id": 9390, "article_name": "亲密的关系", "total_annotators": 11}
{"sentence_id": 32200, "sentence_text": "于是我现在又是个单人,对这个其她的女孩有好感。", "article_id": 9390, "article_name": "亲密的关系", "total_annotators": 11}
{"sentence_id": 32206, "sentence_text": "她漂亮地笑,告诉我“真对不起,我不想的一样”。", "article_id": 9390, "article_name": "亲密的关系", "total_annotators": 11}
{"sentence_id": 32340, "sentence_text": "今天以后我会有五天就回家。", "article_id": 9401, "article_name": "早上好", "total_annotators": 11}
{"sentence_id": 32342, "sentence_text": "昨天我认识有的新的同学。", "article_id": 9401, "article_name": "早上好", "total_annotators": 11}
{"sentence_id": 32349, "sentence_text": "我要提刚看完的一个.标题就是\"楚留香新传\".", "article_id": 9402, "article_name": " 楚留香新传", "total_annotators": 11}
{"sentence_id": 32352, "sentence_text": "表演水平只不过如此,但人物被表示和变态非常的实际.", "article_id": 9402, "article_name": " 楚留香新传", "total_annotators": 11}
{"sentence_id": 32374, "sentence_text": "苏贤瑞:那要是你要便宜的菜,我们有糖拌西红柿,这盘的比那盘的更便宜,六块钱。", "article_id": 9403, "article_name": "Skit", "total_annotators": 11}
{"sentence_id": 32422, "sentence_text": "在日本,大学生在距大学毕业还有大概一年半时开始找毕业后的工作,一般半个年一直过去有兴趣的很多企业,然后才终于会做出最后的决定。", "article_id": 9405, "article_name": "婚活", "total_annotators": 11}
{"sentence_id": 32425, "sentence_text": "题目是\"婚活\"的电视连续剧被富士电视台快要开始播放了,每星期一从晚上九点到十点播放,我们叫每星期一从晚上九点到十点富士电视台播放的连续剧\"月9\"。", "article_id": 9405, "article_name": "婚活", "total_annotators": 11}
{"sentence_id": 32437, "sentence_text": "随着经济发展,关于儿女的前途,父母感到越大的担心,同时,由于一个孩子政策,父母对一个自己的孩子期望得越高,中国人都非常尊重父母的意见,很孝顺,不想辜负父母的期望,我觉得这样的情况造成了重视买房的社会现象。", "article_id": 9406, "article_name": "看了你们对婚前买房的意见后,我想的事", "total_annotators": 11}
{"sentence_id": 32464, "sentence_text": "其实从我住的这里不是那么远。", "article_id": 9407, "article_name": "看樱花", "total_annotators": 11}
{"sentence_id": 32484, "sentence_text": "到现在为止我受到许多人的帮助,应该不忘记感谢要进步。", "article_id": 9408, "article_name": "前进", "total_annotators": 11}
{"sentence_id": 32522, "sentence_text": "在那里桌子上有电脑,客人好像可以自由地使用的样子。", "article_id": 9412, "article_name": "我想要苹果机", "total_annotators": 11}
{"sentence_id": 32539, "sentence_text": "下次有机会,请韩国朋友给教做法。", "article_id": 9413, "article_name": "我也想试试看。", "total_annotators": 11}
{"sentence_id": 32597, "sentence_text": "因为中国是悠久的国家,所以汉子的历史和相当来历也很长。", "article_id": 9419, "article_name": "汉子", "total_annotators": 10}
{"sentence_id": 32608, "sentence_text": "我想帮助你写英文越来越好。", "article_id": 9420, "article_name": "好久不见。我没写为了很久时间", "total_annotators": 10}
{"sentence_id": 32792, "sentence_text": "在我的家有四家人,我爸爸,妈妈,哥哥和我。", "article_id": 9433, "article_name": "我给你介绍一下", "total_annotators": 10}
{"sentence_id": 32803, "sentence_text": "回家以后,我知道没拿条的鱼。", "article_id": 9434, "article_name": "我做的故事", "total_annotators": 10}
{"sentence_id": 32808, "sentence_text": "明白日文的字不是我的目的,应为我太怕我以后不会认识汉字,会混淆汉字和日文字。", "article_id": 9435, "article_name": "学习日语", "total_annotators": 10}
{"sentence_id": 32820, "sentence_text": "但是我再想一想只有七个星期了就放学了。", "article_id": 9436, "article_name": "又要上学了。", "total_annotators": 10}
{"sentence_id": 32855, "sentence_text": "可是,剧中人把我的兴趣吸引过来。", "article_id": 9439, "article_name": "《暗算》", "total_annotators": 10}
{"sentence_id": 32938, "sentence_text": "第一个是如果她常常模着自己的前发,她想有距离自己从对方。", "article_id": 9447, "article_name": "行动心理学", "total_annotators": 10}
{"sentence_id": 32950, "sentence_text": "因为冬天比往年很冷、所以樱花开得比往年晚三四天。", "article_id": 9448, "article_name": "好看", "total_annotators": 10}
{"sentence_id": 32966, "sentence_text": "但是那件衣服很多,不能放入衣柜里,所以我需要决定今年夏天穿的衣服。", "article_id": 9450, "article_name": "换衣服", "total_annotators": 10}
{"sentence_id": 32981, "sentence_text": "考有三部分,听力,语法,读解。", "article_id": 9452, "article_name": "考式", "total_annotators": 10}
{"sentence_id": 32994, "sentence_text": "在那里我可以学面试方法,英语口试,还有怎么写履历书最好等等很多事情", "article_id": 9453, "article_name": "空姐", "total_annotators": 10}
{"sentence_id": 33036, "sentence_text": "可是呢个人想说的是“铃木先生在吗?”", "article_id": 9456, "article_name": "名古屋人说的日语", "total_annotators": 9}
{"sentence_id": 33047, "sentence_text": "所以我今天给他的一千韩元是对他来说是他上学后拿到的第一次零用钱。", "article_id": 9457, "article_name": "人生第一次的零钱", "total_annotators": 9}
{"sentence_id": 33086, "sentence_text": "她不想努力得到好个结果,而容易得到结果。", "article_id": 9460, "article_name": "我认识的有一个朋友", "total_annotators": 9}
{"sentence_id": 33148, "sentence_text": "看他们时,我想念了小孩时代,我也跟他们一样钓过小龙虾,很好的回忆.", "article_id": 9466, "article_name": "钓小龙虾・日语录音", "total_annotators": 10}
{"sentence_id": 33170, "sentence_text": "我也考过高考而了解高3的心情。", "article_id": 9469, "article_name": "今天终于高考结束了。", "total_annotators": 9}
{"sentence_id": 33175, "sentence_text": "如果一个学生身体不好就他准备的12年没用,只有等1年的结果。", "article_id": 9469, "article_name": "今天终于高考结束了。", "total_annotators": 9}
{"sentence_id": 33310, "sentence_text": "可是,叫还没见问,就看到了。", "article_id": 9479, "article_name": "乌龟上天 part2", "total_annotators": 9}
{"sentence_id": 33407, "sentence_text": "听他们的声音,我又决心了,我一定抓住我所打算的目标。", "article_id": 9486, "article_name": "it's late.", "total_annotators": 11}
{"sentence_id": 33420, "sentence_text": "看到邮件我真可惜,好像不可能跟她见面呢。", "article_id": 9487, "article_name": "比较好吧-", "total_annotators": 11}
{"sentence_id": 33433, "sentence_text": "这样也许我可以记不了我的汉语呢。", "article_id": 9488, "article_name": "第三次", "total_annotators": 11}
{"sentence_id": 33463, "sentence_text": "今天终于太阳出来了,这几天被雨水洗干净的蓝天里摆满了漂亮,丰满的白云。", "article_id": 9491, "article_name": "黄桃来了!", "total_annotators": 11}
{"sentence_id": 33473, "sentence_text": "书有好消息可是一点索然.", "article_id": 9492, "article_name": "惛美国人的第一日志", "total_annotators": 11}
{"sentence_id": 33477, "sentence_text": "据说在第一年内三分之的新生意就放弃了。", "article_id": 9493, "article_name": "几个句子", "total_annotators": 11}
{"sentence_id": 33479, "sentence_text": "对对兄弟姐妹来说这一定不是一个奇葩的事情。", "article_id": 9493, "article_name": "几个句子", "total_annotators": 11}
{"sentence_id": 33670, "sentence_text": "在柏林有数中国饭店,柏林的到处都可以找到中国饭店,可是我还找不到一个做真正的中国菜的。", "article_id": 9507, "article_name": "柏林的饭店", "total_annotators": 11}
{"sentence_id": 33723, "sentence_text": "我看到了的当家庭主妇养两个小孩子算是一个全职。", "article_id": 9510, "article_name": "达到你们的家。", "total_annotators": 11}
{"sentence_id": 33742, "sentence_text": "我离席,不久后到出发的时间,而且为了纪念我想买一罐茶罐。", "article_id": 9511, "article_name": "关于被推销的事情的课题", "total_annotators": 11}
{"sentence_id": 33743, "sentence_text": "我看一看茶,说明文都有日语,但没有价格票。", "article_id": 9511, "article_name": "关于被推销的事情的课题", "total_annotators": 11}
{"sentence_id": 33748, "sentence_text": "“哎呀~,700台湾元是2,500日元左右,非常贵啊!”", "article_id": 9511, "article_name": "关于被推销的事情的课题", "total_annotators": 11}
{"sentence_id": 33760, "sentence_text": "然后,去了旁边大楼看到在一楼有的咖啡厅。", "article_id": 9512, "article_name": "关于找到吃晚饭的地方的课题", "total_annotators": 11}
{"sentence_id": 33771, "sentence_text": "结果我们两次又回有美食街的大楼,进入了一家土佐料理的小酒馆。", "article_id": 9512, "article_name": "关于找到吃晚饭的地方的课题", "total_annotators": 11}
{"sentence_id": 33788, "sentence_text": "正在韩国最受欢迎的电视剧就是流星花园,是韩国制作的。", "article_id": 9514, "article_name": "流星花园", "total_annotators": 11}
{"sentence_id": 33799, "sentence_text": "我买东西后出去商店回家的时候也还跑步的人很多。", "article_id": 9515, "article_name": "马拉松大会", "total_annotators": 11}
{"sentence_id": 33809, "sentence_text": "我想如果一个人对你来说没什幺价值,那他对你做错你可能就会感到一瞬间的生气,反而如果这人对你来说很重要那你大半会很生气。", "article_id": 9516, "article_name": "朋友", "total_annotators": 11}
{"sentence_id": 33844, "sentence_text": "他坐的时候在柜台上放在手机。", "article_id": 9519, "article_name": "唯一幸福的时间 ②", "total_annotators": 11}
{"sentence_id": 33847, "sentence_text": "那天从出卖天过一个星期,可是我还没受到新的手机。", "article_id": 9519, "article_name": "唯一幸福的时间 ②", "total_annotators": 11}
{"sentence_id": 33849, "sentence_text": "从远的地方看的时候谁也不在,不过我过去的话一定别的客人打捞我看。", "article_id": 9519, "article_name": "唯一幸福的时间 ②", "total_annotators": 11}
{"sentence_id": 33853, "sentence_text": "酒保为了做鸡尾酒过去的时候,他好像无聊的模样。", "article_id": 9519, "article_name": "唯一幸福的时间 ②", "total_annotators": 11}
{"sentence_id": 33863, "sentence_text": "我不是那么好的女性,所以我听“追女”的单词吓了一跳。", "article_id": 9519, "article_name": "唯一幸福的时间 ②", "total_annotators": 11}
{"sentence_id": 33879, "sentence_text": "可能有不少原因,现在转移季节的时候,很容易感冒,同时会影响心情,", "article_id": 9521, "article_name": "我还活着呢~~", "total_annotators": 11}
{"sentence_id": 33943, "sentence_text": "其次其外交官拜访罗思柴尔德家,", "article_id": 9525, "article_name": "ー个外交官拜访穷人", "total_annotators": 11}
{"sentence_id": 33944, "sentence_text": "外交官说,有您的大家闺秀的亲事。", "article_id": 9525, "article_name": "ー个外交官拜访穷人", "total_annotators": 11}
{"sentence_id": 33962, "sentence_text": "在跋语上加藤彻先生说:“很遗憾,“杨家将演义”的故事是不那么好,所以从中国没传到日本。", "article_id": 9526, "article_name": "1", "total_annotators": 10}
{"sentence_id": 33992, "sentence_text": "可是因为初期发现,所以打好了。", "article_id": 9528, "article_name": "爸爸", "total_annotators": 10}
{"sentence_id": 34002, "sentence_text": "政府只公开一部分的大的大众传播。", "article_id": 9529, "article_name": "初次「违背了许下的诺言」", "total_annotators": 10}
{"sentence_id": 34006, "sentence_text": "大的大众传播没有正义,只有记得权益。", "article_id": 9529, "article_name": "初次「违背了许下的诺言」", "total_annotators": 10}
{"sentence_id": 34041, "sentence_text": "剧烈地咳嗽了一阵,然后一个职员跟我跑说:“我给您这个!”", "article_id": 9533, "article_name": "今天看病去了!", "total_annotators": 10}
{"sentence_id": 34072, "sentence_text": "去的是一家餐厅,但没想到几位教授、哥哥和朋友们留下只有我一个人都聚在一起(不知道为什么突然有教授)要吃饭。", "article_id": 9536, "article_name": "乱七八糟的梦", "total_annotators": 10}
{"sentence_id": 34197, "sentence_text": "因为它属于大陆性气候,很干燥,还有气温很低,所以没下雨,那里的雪比日本的雪因为不包含水分很轻,滑雪的时候感觉很爽快。", "article_id": 9547, "article_name": "长寿山滑雪旅游", "total_annotators": 10}
{"sentence_id": 34207, "sentence_text": "回到宿舍的公车上,和德国的朋友安迪一直聊天了。", "article_id": 9547, "article_name": "长寿山滑雪旅游", "total_annotators": 10}
{"sentence_id": 34218, "sentence_text": "这个“非白人英雄不可“的注意在好多电影,比如《与狼共舞》,《最后的武士》,《第九区》等等。", "article_id": 9548, "article_name": "阿凡达 (Avatar)", "total_annotators": 11}
{"sentence_id": 34222, "sentence_text": "她发给我非常详细解释了,太谢谢你了!", "article_id": 9549, "article_name": "称呼", "total_annotators": 11}
{"sentence_id": 34229, "sentence_text": "在日本的话,如果你不知道怎么称呼对方好,就在姓的", "article_id": 9549, "article_name": "称呼", "total_annotators": 11}
{"sentence_id": 34244, "sentence_text": "可是突然自右边没传出什么音。", "article_id": 9551, "article_name": "耳机", "total_annotators": 11}