-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.dat
6900 lines (6900 loc) · 654 KB
/
test.dat
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
[dat]
input_words=0:[CLS],PCCW,s,chief,operating,officer,Mike,Butcher,and,Alex,Arena,the,chief,financial,officer,will,report,directly,to,Mr,So,[SEP],Current,Chief,Operating,Officer,Mike,Butcher,and,Group,Chief,Financial,Officer,Alex,Arena,will,report,to,So,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,world,s,two,largest,automakers,said,their,U,S,sales,declined,more,than,predicted,last,month,as,a,late,summer,sales,frenzy,caused,more,of,an,industry,backlash,than,expected,[SEP],Domestic,sales,at,both,GM,and,No,2,Ford,Motor,Co,declined,more,than,predicted,as,a,late,summer,sales,frenzy,prompted,a,larger,than,expected,industry,backlash,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],According,to,the,federal,Centers,for,Disease,Control,and,Prevention,news,web,sites,there,were,19,reported,cases,of,measles,in,the,United,States,in,2002,[SEP],The,Centers,for,Disease,Control,and,Prevention,said,there,were,19,reported,cases,of,measles,in,the,United,States,in,2002,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],A,tropical,storm,rapidly,developed,in,the,Gulf,of,Mexico,Sunday,and,was,expected,to,hit,somewhere,along,the,Texas,or,Louisiana,coasts,by,Monday,night,[SEP],A,tropical,storm,rapidly,developed,in,the,Gulf,of,Mexico,on,Sunday,and,could,have,hurricane,force,winds,when,it,hits,land,somewhere,along,the,Louisiana,coast,Monday,night,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],The,company,didn,t,detail,the,costs,of,the,replacement,and,repairs,[SEP],But,company,officials,expect,the,costs,of,the,replacement,work,to,run,into,the,millions,of,dollars,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],The,settling,companies,would,also,assign,their,possible,claims,against,the,underwriters,to,the,investor,plaintiffs,he,added,[SEP],Under,the,agreement,the,settling,companies,will,also,assign,their,potential,claims,against,the,underwriters,to,the,investors,he,added,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Air,Commodore,Quaife,said,the,Hornets,remained,on,three,minute,alert,throughout,the,operation,[SEP],Air,Commodore,John,Quaife,said,the,security,operation,was,unprecedented,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],A,Washington,County,man,may,have,the,countys,first,human,case,of,West,Nile,virus,the,health,department,said,Friday,[SEP],The,countys,first,and,only,human,case,of,West,Nile,this,year,was,confirmed,by,health,officials,on,Sept,8,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Moseley,and,a,senior,aide,delivered,their,summary,assessments,to,about,300,American,and,allied,military,officers,on,Thursday,[SEP],General,Moseley,and,a,senior,aide,presented,their,assessments,at,an,internal,briefing,for,American,and,allied,military,officers,at,Nellis,Air,Force,Base,in,Nevada,on,Thursday,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,broader,Standard,Poor,s,500,Index,SPX,was,0,46,points,lower,or,0,05,percent,at,997,02,[SEP],The,technology,laced,Nasdaq,Composite,Index,IXIC,was,up,7,42,points,or,0,45,percent,at,1,653,44,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Consumers,would,still,have,to,get,a,descrambling,security,card,from,their,cable,operator,to,plug,into,the,set,[SEP],To,watch,pay,television,consumers,would,insert,into,the,set,a,security,card,provided,by,their,cable,service,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,increase,reflects,lower,credit,losses,and,favorable,interest,rates,[SEP],The,gain,came,as,a,result,of,fewer,credit,losses,and,lower,interest,rates,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,device,plays,Internet,radio,streams,and,comes,with,a,30,day,trial,of,RealNetworks,Rhapsody,music,service,[SEP],The,product,also,streams,Internet,radio,and,comes,with,a,30,day,free,trial,for,RealNetworks,Rhapsody,digital,music,subscription,service,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Hong,Kong,was,flat,Australia,Singapore,and,South,Korea,lost,0,2,0,4,percent,[SEP],Australia,was,flat,Singapore,was,down,0,3,percent,by,midday,and,South,Korea,added,0,2,percent,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Evidence,suggests,two,of,the,victims,were,taken,by,surprise,while,the,other,two,might,have,tried,to,flee,or,to,defend,themselves,or,the,others,police,said,[SEP],Evidence,suggests,two,victims,were,taken,by,surprise,while,the,others,may,have,tried,to,flee,or,perhaps,defend,themselves,or,their,friends,police,said,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Ballmer,has,been,vocal,in,the,past,warning,that,Linux,is,a,threat,to,Microsoft,[SEP],In,the,memo,Ballmer,reiterated,the,open,source,threat,to,Microsoft,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],A,charter,plane,crashed,in,Turkey,on,Monday,killing,all,75,people,aboard,including,62,Spanish,peacekeepers,returning,from,Afghanistan,officials,said,[SEP],A,plane,carrying,75,people,including,62,Spanish,peacekeepers,returning,from,Afghanistan,crashed,in,thick,fog,in,Turkey,early,on,Monday,killing,all,aboard,officials,said,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Moroccan,Interior,Minister,Al,Mustapha,Sahel,said,the,investigation,points,to,a,group,that,has,been,arrested,recently,an,apparent,reference,to,Djihad,Salafist,[SEP],Moroccan,Interior,Minister,Al,Mustapha,Sahel,told,state,run,2M,television,late,Saturday,the,investigation,points,to,a,group,that,has,been,arrested,recently,an,apparent,reference,to,Salafist,Jihad,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],I,m,delighted,that,David,Chase,has,decided,to,give,us,another,chapter,in,the,great,Sopranos,saga,HBO,chairman,and,chief,executive,Chris,Albrecht,said,[SEP],I,m,delighted,that,David,Chase,has,decided,to,give,us,another,chapter,in,the,great,Sopranos,saga,said,HBO,Chairman,Chris,Albrecht,in,a,statement,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,two,had,argued,that,only,a,new,board,would,have,had,the,credibility,to,restore,El,Paso,to,health,[SEP],He,and,Zilkha,believed,that,only,a,new,board,would,have,had,the,credibility,to,restore,El,Paso,to,health,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],There,s,no,reason,for,you,to,keep,your,skills,up,the,judge,told,the,convicted,crack,cocaine,kingpin,[SEP],There,s,no,reason,for,you,to,keep,your,skills,up,U,S,District,Judge,J,Frederick,Motz,told,McGriff,after,he,was,sentenced,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Still,he,said,I,m,absolutely,confident,we,re,going,to,have,a,bill,[SEP],I,m,absolutely,confident,we,re,going,to,have,a,bill,Frist,R,Tenn,said,Thursday,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Senator,Clinton,should,be,ashamed,of,herself,for,playing,politics,with,the,important,issue,of,homeland,security,funding,he,said,[SEP],She,should,be,ashamed,of,herself,for,playing,politics,with,this,important,issue,said,state,budget,division,spokesman,Andrew,Rush,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Federal,agents,said,yesterday,they,are,investigating,the,theft,of,1,200,pounds,of,an,explosive,chemical,from,construction,companies,in,Colorado,and,California,in,the,past,week,[SEP],Federal,investigators,are,looking,for,possible,connections,between,the,theft,of,1,100,pounds,of,an,explosive,chemical,from,construction,companies,in,Colorado,and,California,in,the,past,week,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Last,year,Comcast,signed,1,5,million,new,digital,cable,subscribers,[SEP],Comcast,has,about,21,3,million,cable,subscribers,many,in,the,largest,U,S,cities,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Schofield,got,Toepfer,to,admit,on,cross,examination,that,she,ignored,many,of,O,Donnell,s,suggestions,and,projects,[SEP],But,under,cross,examination,by,O,Donnell,s,attorney,Lorna,Schofield,Toepfer,conceded,she,had,ignored,many,of,O,Donnell,s,suggestions,and,projects,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,man,accused,of,using,fake,grenades,to,commandeer,a,Cuban,plane,that,landed,in,Key,West,in,April,was,sentenced,Friday,to,20,years,in,prison,[SEP],A,Cuban,architect,was,sentenced,to,20,years,in,prison,Friday,for,using,two,fake,grenades,to,hijack,a,passenger,plane,from,Cuba,to,Florida,in,April,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Moroccan,police,have,arrested,33,suspects,including,some,linked,to,the,radical,Djihad,Salafist,group,a,government,official,said,[SEP],In,a,series,of,raids,Moroccan,police,arrested,33,suspects,Saturday,including,some,linked,to,the,radical,Djihad,Salafist,group,a,senior,government,official,said,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,son,of,circus,trapeze,artists,turned,vaudevillians,O,Connor,was,born,on,Aug,28,1925,in,Chicago,and,was,carried,onstage,for,applause,when,he,was,three,days,old,[SEP],The,son,of,circus,trapeze,artists,turned,vaudevillians,O,Connor,was,carried,onstage,for,applause,when,he,was,3,days,old,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Ricky,Clemons,brief,troubled,Missouri,basketball,career,is,over,[SEP],Missouri,kicked,Ricky,Clemons,off,its,team,ending,his,troubled,career,there,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Dynes,will,get,395,000,a,year,up,from,Atkinson,s,current,salary,of,361,400,[SEP],In,his,new,position,Dynes,will,earn,395,000,a,significant,increase,over,Atkinson,s,salary,of,361,400,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,daily,Hurriyet,said,the,raid,aimed,to,foil,a,Turkish,plot,to,kill,an,unnamed,senior,Iraqi,official,in,Kirkuk,[SEP],The,daily,Hurriyet,said,the,raid,aimed,to,foil,a,Turkish,plot,to,kill,an,unnamed,senior,Iraqi,Kurdish,official,in,Kirkuk,but,Gul,has,denied,any,Turkish,plot,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],It,was,a,little,bit,embarrassing,the,way,we,played,in,the,first,two,games,Thomas,said,[SEP],We,re,in,the,Stanley,Cup,finals,and,it,was,a,little,bit,embarrassing,the,way,we,played,in,the,first,two,games,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Against,the,Japanese,currency,the,euro,was,at,135,92,6,04,yen,against,the,late,New,York,level,of,136,03,14,[SEP],The,dollar,was,at,117,85,yen,against,the,Japanese,currency,up,0,1,percent,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Snow,s,remark,has,a,psychological,impact,said,Hans,Redeker,head,of,foreign,exchange,strategy,at,BNP,Paribas,[SEP],Snow,s,remark,on,the,dollar,s,effects,on,exports,has,a,psychological,impact,said,Hans,Redeker,head,of,foreign,exchange,strategy,at,BNP,Paribas,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,women,said,victims,of,rape,who,came,forward,routinely,were,punished,for,minor,infractions,while,their,assailants,escaped,judgment,[SEP],The,women,said,victims,of,rape,who,came,forward,were,routinely,punished,for,minor,infractions,while,their,attackers,escaped,judgment,prompting,most,victims,to,remain,silent,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],The,National,has,no,interest,in,acquiring,AMP,while,AMP,owns,its,UK,business,Cicutto,added,[SEP],The,National,has,no,interest,in,acquiring,AMP,while,AMP,owns,its,U,K,business,NAB,chief,executive,Frank,Cicutto,said,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],In,a,statement,Mr,Rowland,said,As,is,the,case,with,all,appointees,Commissioner,Anson,is,accountable,to,me,[SEP],As,is,the,case,with,all,appointees,Commissioner,Anson,is,accountable,to,me,Rowland,said,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Oracle,s,5,billion,hostile,bid,for,PeopleSoft,is,clearly,not,sitting,well,with,PeopleSoft,s,executives,[SEP],Oracle,on,Friday,launched,a,5,1,billion,hostile,takeover,bid,for,PeopleSoft,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Taha,is,married,to,former,Iraqi,oil,minister,Amir,Muhammed,Rasheed,who,surrendered,to,U,S,forces,on,April,28,[SEP],Taha,s,husband,former,oil,minister,Amer,Mohammed,Rashid,surrendered,to,U,S,forces,on,April,28,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Cisco,pared,spending,during,the,quarter,to,compensate,for,sluggish,sales,[SEP],In,response,to,sluggish,sales,Cisco,pared,spending,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Seven,20,and,21,year,old,cadets,were,ticketed,by,police,for,drinking,alcohol,in,an,off,campus,hotel,room,early,Saturday,with,two,young,women,aged,16,and,18,[SEP],Seven,20,and,21,year,old,male,cadets,were,caught,in,an,off,campus,hotel,room,early,Saturday,with,two,female,teens,16,and,18,years,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Dixon,s,win,moved,him,into,second,place,in,the,points,standings,49,behind,Kanaan,[SEP],It,s,always,fun,to,come,to,Colorado,said,Dixon,who,moved,into,second,in,the,IRL,standings,behind,Kanaan,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Last,year,Congress,passed,similar,though,less,expensive,buyout,legislation,for,peanut,farmers,ending,that,Depression,era,program,[SEP],Last,year,Congress,passed,similar,though,less,expensive,buyout,legislation,for,peanut,farmers,to,end,that,program,that,also,dated,from,the,Depression,years,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],On,July,22,Moore,announced,he,would,appeal,the,case,directly,to,the,U,S,Supreme,Court,[SEP],Moore,of,Alabama,says,he,will,appeal,his,case,to,the,nation,s,highest,court,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,broad,Standard,Poor,s,500,Index,SPX,gained,19,72,points,or,1,98,percent,to,1,015,69,[SEP],The,Dow,Jones,industrial,average,DJI,jumped,2,09,percent,while,the,Standard,Poor,s,500,Index,SPX,leapt,2,23,percent,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Thanks,to,the,euro,s,rise,against,the,Japanese,currency,the,dollar,was,at,117,24,yen,well,above,the,overnight,10,month,low,of,116,yen,[SEP],The,euro,s,rise,against,the,yen,and,speculation,of,Japanese,intervention,helped,the,dollar,firm,to,117,25,yen,well,above,a,10,month,low,of,116,yen,hit,on,Thursday,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Thursday,afternoon,the,Standard,Poor,s,500,stock,index,was,trading,up,just,1,48,points,or,0,1,percent,to,1,049,59,[SEP],Stocks,closed,largely,unchanged,with,the,Standard,Poor,s,500,stock,index,dipping,1,17,points,to,1,046,94,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],They,were,chipping,away,at,the,concrete,to,get,to,the,body,said,Chris,Butler,who,lives,across,the,street,[SEP],Investigators,were,chipping,away,at,the,concrete,to,get,to,the,body,said,Chris,Butler,who,lives,across,the,street,in,the,quiet,city,neighborhood,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Nicholas,is,the,uncle,of,Louima,the,Haitian,immigrant,who,was,sexually,tortured,by,NYPD,cops,in,1997,[SEP],Mr,Nicolas,is,an,uncle,of,Abner,Louima,who,was,tortured,by,New,York,City,police,officers,in,1997,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,procedure,is,generally,performed,in,the,second,or,third,trimester,[SEP],The,technique,is,used,during,the,second,and,occasionally,third,trimester,of,pregnancy,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Just,sitting,around,in,a,big,base,camp,knocking,back,cans,of,beer,I,don,t,particularly,regard,as,mountaineering,he,added,[SEP],Sitting,around,in,base,camp,knocking,back,cans,of,beer,that,I,don,t,particularly,regard,as,mountaineering,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],She,survives,him,as,do,their,four,children,sons,Anthony,and,Kelly,daughters,Linda,Hope,and,Nora,Somers,and,four,grandchildren,[SEP],Hope,is,survived,by,his,wife,sons,Anthony,and,Kelly,daughters,Linda,and,Nora,Somers,and,four,grandchildren,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],It,exploded,in,his,hands,but,the,former,Italian,prime,minister,was,unhurt,[SEP],The,letter,bomb,sent,to,Prodi,exploded,in,his,hands,but,he,was,unhurt,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,British,Foreign,Office,said,Monday,that,coalition,authorities,in,Iraq,were,pleased,that,the,men,were,freed,[SEP],The,British,Foreign,Office,said,it,had,mediated,the,two,men,s,release,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Now,with,the,agency,s,last,three,shuttles,grounded,in,the,wake,of,the,Columbia,disaster,that,wait,could,be,even,longer,[SEP],With,the,remaining,three,shuttles,grounded,in,the,wake,of,the,Columbia,accident,the,rookies,will,have,to,wait,even,longer,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],ISRAELI,soldiers,knocked,down,empty,mobile,homes,and,water,towers,in,10,tiny,West,Bank,settlement,outposts,overnight,as,part,of,a,US,backed,Mideast,peace,plan,[SEP],Israeli,soldiers,began,tearing,down,settlement,outposts,in,the,West,Bank,yesterday,an,Israeli,obligation,under,a,new,Mideast,peace,plan,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],These,documents,are,indecipherable,to,me,and,the,fact,is,that,this,investigation,has,led,nowhere,the,lawyer,said,[SEP],These,documents,are,indecipherable,to,me,the,lawyers,said,and,the,fact,is,that,this,investigation,has,led,nowhere,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,latest,snapshot,of,the,labor,markets,was,slightly,better,than,economists,were,expecting,they,were,forecasting,claims,to,fall,no,lower,than,410,000,for,last,week,[SEP],Despite,problems,in,the,job,market,the,latest,snapshot,of,the,labor,markets,was,slightly,better,than,economists,were,expecting,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Another,body,was,pulled,from,the,water,on,Thursday,and,two,seen,floating,down,the,river,could,not,be,retrieved,due,to,the,strong,currents,local,reporters,said,[SEP],Two,more,bodies,were,seen,floating,down,the,river,on,Thursday,but,could,not,be,retrieved,due,to,the,strong,currents,local,reporters,said,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Those,reports,were,denied,by,the,interior,minister,Prince,Nayef,[SEP],However,the,Saudi,interior,minister,Prince,Nayef,denied,the,reports,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Other,members,of,the,organization,are,believed,to,be,in,Pakistani,cities,and,many,of,the,arrests,of,key,al,Qaida,operatives,have,taken,place,in,those,areas,[SEP],Other,members,of,the,organization,are,believed,to,be,in,Pakistani,cities,where,many,of,the,arrests,of,key,Al,Qaeda,operatives,have,taken,place,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Our,decision,today,is,quite,limited,the,judges,stated,in,their,opinion,[SEP],Our,decision,today,is,quite,limited,they,conclude,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,woman,had,agreed,to,testify,after,receiving,immunity,protecting,her,from,punishment,for,lying,and,other,violations,of,the,academy,s,honor,code,[SEP],The,defense,said,the,woman,testified,under,an,immunity,deal,protecting,her,from,punishment,for,lying,and,other,violations,of,the,academy,s,honor,code,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Under,terms,of,the,deal,Legato,stockholders,will,receive,0,9,of,a,share,of,EMC,common,stock,for,each,share,of,Legato,stock,[SEP],Legato,stockholders,will,get,0,9,of,a,share,of,EMC,stock,for,every,share,of,Legato,they,own,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Our,prognosis,for,a,continued,and,steady,recovery,is,being,realized,and,the,outlook,remains,bright,bureau,CEO,Greg,Stuart,says,[SEP],Our,prognosis,for,a,continued,and,steady,recovery,is,being,realized,and,the,outlook,remains,bright,said,Greg,Stuart,president,and,CEO,of,the,IAB,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Kingston,also,finished,with,67,after,producing,six,birdies,on,the,back,nine,[SEP],South,Africa,s,James,Kingston,is,also,on,five,under,after,blitzing,six,birdies,on,his,back,nine,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],At,least,two,of,them,were,supposed,to,be,in,positions,of,leadership,for,the,younger,boys,[SEP],At,least,two,of,the,suspects,were,supposed,to,be,in,positions,of,leadership,he,said,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Ms,Lafferty,s,lawyer,Thomas,Ezzell,told,a,Kentucky,newspaper,My,understanding,of,this,is,that,there,is,a,lower,percentage,of,successful,impregnations,with,frozen,[SEP],My,understanding,of,this,is,that,there,is,a,lower,percentage,of,successful,impregnations,with,frozen,Ezzell,said,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Its,Canadian,operations,only,buy,beef,from,facilities,that,are,federally,inspected,and,approved,by,the,Canadian,Food,Inspection,Agency,[SEP],McDonald,s,Canada,only,purchases,beef,from,facilities,federally,inspected,and,approved,by,the,Canadian,Food,Inspection,Agency,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Agriculture,ministers,from,more,than,one,hundred,nations,are,expected,to,attend,the,three,day,Ministerial,Conference,and,Expo,on,Agricultural,Science,and,Technology,sponsored,by,the,U,S,Department,of,Agriculture,[SEP],U,S,Agriculture,Secretary,Ann,Veneman,kicks,off,the,three,day,Ministerial,Conference,and,Expo,on,Agricultural,Science,and,Technology,on,Monday,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],While,there,were,about,700,Uruguayan,UN,peacekeepers,in,Bunia,they,were,neither,trained,nor,equipped,to,deal,with,inter,ethnic,violence,Mr,Eckhard,said,[SEP],The,UN,has,approximately,600,troops,in,the,town,but,they,were,neither,trained,nor,equipped,to,deal,with,inter,ethnic,violence,Mr,Eckhard,said,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Shares,of,Coke,were,down,49,cents,or,1,1,percent,at,43,52,in,early,trading,Friday,on,the,New,York,Stock,Exchange,[SEP],In,late,morning,trading,Coke,shares,were,down,2,cents,at,43,99,on,the,New,York,Stock,Exchange,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],NASIRIYA,Iraq—Iraqi,doctors,who,treated,former,prisoner,of,war,Jessica,Lynch,have,angrily,dismissed,claims,made,in,her,biography,that,she,was,raped,by,her,Iraqi,captors,[SEP],Former,prisoner,of,war,Pfc,Jessica,Lynch,is,winning,admiration,in,her,hometown,all,over,again,for,the,courage,to,reveal,she,was,raped,by,her,Iraqi,captors,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],If,people,took,the,pill,daily,they,would,lower,their,risk,of,heart,attack,by,88,percent,and,of,stroke,by,80,percent,the,scientists,claim,[SEP],Taking,the,pill,would,lower,the,risk,of,heart,attack,by,88,percent,and,of,stroke,by,80,percent,the,scientists,said,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Amgen,shares,gained,93,cents,or,1,45,percent,to,65,05,in,afternoon,trading,on,Nasdaq,[SEP],Shares,of,Allergan,were,up,14,cents,at,78,40,in,late,trading,on,the,New,York,Stock,Exchange,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],From,the,start,however,the,United,States,declared,goal,was,not,just,to,topple,Saddam,but,to,stabilize,Iraq,and,install,a,friendly,government,[SEP],But,the,United,States,ultimate,goal,was,not,just,to,topple,Mr,Hussein,but,to,stabilize,the,country,and,install,a,friendly,government,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Customers,that,pay,the,1,219,entrance,fee,get,SMS,2003,with,10,device,client,access,licenses,[SEP],Retail,pricing,for,SMS,2003,with,10,device,client,access,licenses,is,1,219,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],It,was,the,best,advance,since,Oct,1,when,the,index,gained,22,25,[SEP],Standard,Poor,s,500,index,rose,15,66,to,1,046,79,its,best,advance,since,Oct,1,when,it,gained,22,25,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Americans,don,t,cut,and,run,we,have,to,see,this,misadventure,through,she,said,[SEP],She,also,pledged,to,bring,peace,to,Iraq,Americans,don,t,cut,and,run,we,have,to,see,this,misadventure,through,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],MSN,Messenger,6,will,be,available,for,download,starting,at,6,p,m,GMT,on,Wednesday,from,http,messenger,msn,com,download,v6preview,asp,[SEP],The,MSN,Messenger,6,software,will,be,available,from,11,a,m,PST,on,Wednesday,according,to,Microsoft,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],If,Shelley,certifies,enough,are,valid,the,lieutenant,governor,must,call,an,election,within,60,to,80,days,setting,the,state,into,uncharted,political,waters,[SEP],If,the,Democrat,certifies,that,there,are,enough,valid,signatures,the,lieutenant,governor,must,call,an,election,within,60,to,80,days,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],The,most,serious,breach,of,royal,security,in,recent,years,occurred,in,1982,when,30,year,old,Michael,Fagan,broke,into,the,queen,s,bedroom,at,Buckingham,Palace,[SEP],It,was,the,most,serious,breach,of,royal,security,since,1982,when,an,intruder,Michael,Fagan,found,his,way,into,the,Queen,s,bedroom,at,Buckingham,Palace,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Shares,of,LendingTree,rose,22,cents,to,14,69,and,have,risen,14,percent,this,year,[SEP],Shares,of,LendingTree,rose,6,03,or,41,percent,to,close,at,20,72,on,the,Nasdaq,stock,market,yesterday,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],During,a,screaming,match,in,1999,Carolyn,told,John,she,was,still,sleeping,with,Bergin,[SEP],She,in,turn,occasionally,told,John,that,she,was,still,sleeping,with,an,ex,boyfriend,Baywatch,hunk,Michael,Bergin,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],The,vulnerabilities,all,relate,to,a,lack,of,effective,FAA,oversight,that,needs,to,be,improved,the,report,said,[SEP],These,vulnerabilities,all,relate,to,a,lack,of,effective,FAA,oversight,and,if,not,corrected,could,lead,to,an,erosion,of,safety,said,the,report,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],The,network,is,also,dropping,its,Friday,night,Dateline,edition,[SEP],The,network,will,drop,one,edition,of,Dateline,its,newsmagazine,franchise,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],I,m,real,excited,to,be,a,Cleveland,Cavalier,James,said,[SEP],I,m,really,excited,about,going,to,Cleveland,James,told,ESPN,com,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Russ,Britt,is,the,Los,Angeles,Bureau,Chief,for,CBS,MarketWatch,com,[SEP],Emily,Church,is,London,bureau,chief,of,CBS,MarketWatch,com,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],The,others,were,ABN,AMRO,AAH,AS,ING,ING,AS,Goldman,Sachs,GS,N,and,Rabobank,RABN,UL,[SEP],The,five,main,banks,are,ABN,AMRO,AAH,AS,ING,ING,AS,J,P,Morgan,JPM,N,Goldman,Sachs,GS,N,and,Rabobank,RABN,UL,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],WorldCom,s,accounting,problems,came,to,light,early,last,year,and,the,company,filed,for,bankruptcy,in,July,2002,citing,massive,accounting,irregularities,[SEP],WorldCom,s,financial,troubles,came,to,light,last,year,and,the,company,subsequently,filed,for,bankruptcy,in,July,2002,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],They,were,at,Raffles,Hospital,over,the,weekend,for,further,evaluation,[SEP],They,underwent,more,tests,over,the,weekend,and,are,now,warded,at,Raffles,Hospital,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Rich,media,doubled,its,share,increasing,from,3,in,Q2,2002,to,6,in,Q2,2003,[SEP],Rich,Media,interactive,ad,formats,doubled,their,share,from,3,in,second,quarter,of,2002,to,6,in,the,second,quarter,of,2003,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],She,first,went,to,a,specialist,for,initial,tests,last,Monday,feeling,tired,and,unwell,[SEP],The,star,who,plays,schoolgirl,Nina,Tucker,in,Neighbours,went,to,a,specialist,on,June,30,feeling,tired,and,unwell,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Supermarket,chains,facing,a,possible,grocery,clerk,strike,this,week,accused,union,leaders,Monday,of,breaking,off,contract,talks,prematurely,over,the,weekend,[SEP],Supermarket,chains,are,accusing,union,leaders,of,breaking,off,contract,talks,prematurely,over,the,weekend,as,grocery,clerks,gear,up,for,a,possible,strike,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],MGM,NBC,and,Liberty,executives,were,not,immediately,available,for,comment,[SEP],A,Microsoft,spokesman,was,not,immediately,available,to,comment,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],The,ADRs,fell,10,cents,to,28,95,at,10,06,a,m,in,New,York,Stock,Exchange,composite,trading,today,[SEP],Shares,of,Fox,Entertainment,Group,Inc,News,Corp,s,U,S,media,and,entertainment,arm,fell,45,cents,to,26,85,in,New,York,Stock,Exchange,composite,trading,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Don,Asper,called,the,attack,bothersome,before,he,and,his,wife,contacted,the,firm,s,Web,site,provider,to,replace,the,vandalized,page,[SEP],In,a,telephone,interview,Don,Asper,called,the,attack,bothersome,before,he,and,his,wife,contacted,the,firm,s,web,site,provider,to,have,the,vandalised,page,replaced,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Hilsenrath,and,Klarman,each,were,indicted,on,three,counts,of,securities,fraud,[SEP],Klarman,was,charged,with,16,counts,of,wire,fraud,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],York,had,no,problem,with,MTA,s,insisting,the,decision,to,shift,funds,had,been,within,its,legal,rights,[SEP],York,had,no,problem,with,MTA,s,saying,the,decision,to,shift,funds,was,within,its,powers,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Licensing,revenue,slid,21,percent,however,to,107,6,million,[SEP],License,sales,a,key,measure,of,demand,fell,21,percent,to,107,6,million,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],In,his,speech,Cheney,praised,Barbour,s,accomplishments,as,chairman,of,the,Republican,National,Committee,[SEP],Cheney,returned,Barbour,s,favorable,introduction,by,touting,Barbour,s,work,as,chair,of,the,Republican,National,Committee,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],If,the,magazine,lost,more,than,4,2,million,in,a,fiscal,year,O,Donnell,would,be,allowed,to,quit,[SEP],If,Rosie,lost,more,than,4,2,million,in,a,fiscal,year,O,Donnell,by,contract,would,have,been,permitted,to,quit,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,upcoming,second,quarter,earnings,season,will,be,particularly,important,in,offering,investors,guidance,they,say,[SEP],They,say,second,quarter,earnings,reports,will,be,key,in,giving,investors,that,guidance,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],During,her,two,days,of,meetings,Rocca,will,not,meet,the,rebels,since,they,are,banned,by,the,United,States,as,a,terrorist,organisation,[SEP],During,her,two,day,visit,Rocca,will,not,meet,the,rebels,since,the,United,States,has,banned,them,as,a,terrorist,organisation,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Nationally,the,federal,Centers,for,Disease,Control,and,Prevention,recorded,4,156,cases,of,West,Nile,including,284,deaths,[SEP],There,were,293,human,cases,of,West,Nile,in,Indiana,in,2002,including,11,deaths,statewide,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],The,blue,chip,Dow,Jones,industrial,average,DJI,added,38,points,or,0,42,percent,to,9,165,[SEP],The,Dow,Jones,Industrial,Average,INDU,ended,at,session,highs,gaining,64,64,points,or,0,7,percent,to,9,191,09,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],By,the,time,the,two,term,president,left,office,in,1989,the,Navy,had,nearly,600,ships,about,twice,the,ships,it,has,today,[SEP],By,the,time,that,Reagan,left,office,in,1989,the,Navy,had,nearly,600,ships,about,twice,the,number,that,it,has,today,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],We,are,piloting,it,there,to,see,whether,we,roll,it,out,to,other,products,[SEP],Macromedia,is,piloting,this,product,activation,system,in,Contribute,to,test,whether,to,roll,it,out,to,other,products,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],This,issue,is,unlikely,to,be,resolved,until,lawmakers,return,from,their,summer,recess,in,early,September,[SEP],The,issue,is,unlikely,to,be,resolved,until,Congress,reconvenes,in,early,September,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],We,will,clearly,modify,some,features,of,our,plans,as,well,as,their,administration,Mr,Reed,said,in,his,letter,[SEP],We,will,clearly,modify,some,features,of,our,plans,as,well,as,their,administration,Reed,said,in,a,letter,to,the,NYSE,s,1,366,members,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,index,also,did,better,than,the,Standard,Poor,s,500,index,which,increased,3,3,percent,[SEP],The,broader,Standard,Poor,s,500,Index,SPX,was,up,9,05,points,or,0,94,percent,at,972,64,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Scrimshaw,Supervisor,Best,Minister,and,Ten,Most,Wanted,are,expected,to,complete,the,Belmont,field,[SEP],Best,Minister,Scrimshaw,and,Ten,Most,Wanted,all,had,workouts,on,Monday,morning,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Judge,Gerald,W,Heaney,in,dissent,said,the,authorities,should,have,allowed,the,prisoner,to,be,medicated,without,the,consequence,of,execution,[SEP],In,dissent,Judge,Gerald,W,Heaney,said,the,authorities,should,have,allowed,Mr,Singleton,to,be,medicated,without,the,consequence,of,execution,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],That,was,4,cents,higher,than,the,expectations,of,analysts,surveyed,by,Thomson,First,Call,[SEP],The,per,share,earnings,were,also,4,cents,per,share,higher,than,the,expectations,of,analysts,surveyed,by,Thomson,First,Call,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,GPL,violates,the,U,S,Constitution,together,with,copyright,antitrust,and,export,control,laws,and,IBMs,claims,based,thereon,or,related,thereto,are,barred,[SEP],SCO,s,filings,also,assert,that,the,GPL,violates,the,U,S,Constitution,together,with,copyright,antitrust,and,export,control,laws,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],NASA,plans,to,follow,up,the,rovers,missions,with,additional,orbiters,and,landers,before,launching,a,long,awaited,sample,return,flight,[SEP],NASA,plans,to,explore,the,Red,Planet,with,ever,more,sophisticated,robotic,orbiters,and,landers,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],The,broader,Standard,Poor,s,500,Index,SPX,crept,up,4,3,points,or,0,44,percent,to,980,52,[SEP],The,technology,laced,Nasdaq,Composite,Index,IXIC,rose,17,33,points,or,1,07,percent,to,1,640,13,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Garner,said,the,self,proclaimed,mayor,of,Baghdad,Mohammed,Mohsen,al,Zubaidi,was,released,after,two,days,in,coalition,custody,[SEP],Garner,said,self,proclaimed,Baghdad,mayor,Mohammed,Mohsen,Zubaidi,was,released,48,hours,after,his,detention,in,late,April,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],In,a,statement,Microsoft,said,the,dividend,is,payable,Nov,7,to,shareholders,of,record,on,Oct,17,[SEP],The,dividend,the,company,s,second,this,calendar,year,is,payable,on,Nov,7,to,shareholders,of,record,at,the,close,of,business,Oct,17,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],She,asked,to,be,excused,from,last,week,s,Cabinet,session,to,prepare,for,a,meeting,with,the,presidents,of,Rwanda,and,Uganda,[SEP],She,took,the,highly,unusual,step,of,skipping,cabinet,to,attend,a,meeting,with,the,presidents,of,Rwanda,and,Uganda,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],In,a,not,too,subtle,swipe,at,Dean,he,predicted,Americans,would,not,elect,a,Democrat,who,sounds,an,uncertain,trumpet,in,these,dangerous,times,[SEP],They,will,not,elect,as,president,a,Democrat,who,sounds,an,uncertain,trumpet,in,these,dangerous,times,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],The,jury,asked,for,transcripts,of,Quattrone,s,testimony,about,his,role,in,the,IPO,allocation,process,[SEP],The,jury,asked,to,have,Mr,Quattrone,s,testimony,about,his,role,in,the,allocation,of,stock,offerings,read,to,them,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],I,have,no,doubt,whatever,that,the,evidence,of,Iraqi,weapons,of,mass,destruction,will,be,there,[SEP],I,have,said,throughout,I,have,absolutely,no,doubt,about,the,existence,of,weapons,of,mass,destruction,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Albertsons,and,Kroger,s,Ralphs,chain,locked,out,their,workers,in,response,[SEP],Kroger,s,Ralphs,chain,and,Albertsons,immediately,locked,out,their,grocery,workers,in,a,show,of,solidarity,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],It,later,emerged,that,he,had,broken,his,right,thigh,and,bones,in,his,right,wrist,and,elbow,[SEP],Tour,doctors,later,confirmed,that,he,had,broken,his,right,leg,near,the,hip,and,also,sustained,wrist,and,elbow,fractures,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Court,Judge,Robert,Sweet,said,the,plaintiffs,failed,to,draw,an,adequate,casual,connection,between,the,consumption,of,McDonald,s,food,and,their,alleged,injuries,[SEP],The,judge,in,U,S,District,Court,in,Manhattan,said,the,plaintiffs,had,failed,to,draw,an,adequate,casual,connection,between,the,consumption,of,McDonald,s,food,and,their,alleged,injuries,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],A,neighbor,said,a,duffel,bag,containing,a,woman,s,body,was,dug,up,and,the,other,body,was,encased,in,concrete,[SEP],A,neighbor,said,a,woman,s,body,was,dug,up,in,a,duffel,bag,and,the,other,was,encased,in,concrete,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],At,least,five,class,action,lawsuits,have,been,filed,including,one,in,Pennsylvania,[SEP],At,least,five,class,action,lawsuits,have,been,filed,on,behalf,of,hormone,users,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Southwest,said,it,completed,inspections,of,its,entire,fleet,of,385,aircraft,all,737s,and,found,no,additional,items,[SEP],Southwest,said,it,had,already,inspected,its,fleet,of,385,aircraft,and,found,no,additional,suspicious,items,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Semiconductor,giant,Intel,Corp,said,yesterday,that,its,second,quarter,profits,doubled,from,a,year,ago,as,stronger,than,expected,demand,for,computer,microprocessors,offset,the,weakness,of,its,communications,chip,business,[SEP],Intel,Corp,s,second,quarter,profits,doubled,and,revenues,grew,8,percent,from,a,year,ago,as,the,chip,making,giant,reported,stronger,than,expected,demand,for,personal,computer,microprocessors,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],The,South,Korean,Agriculture,and,Forestry,Ministry,also,said,it,would,throw,out,or,send,back,all,Canadian,beef,currently,in,store,[SEP],The,South,Korean,Agriculture,and,Forestry,Ministry,said,it,would,scrap,or,return,all,Canadian,beef,in,store,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],It,appears,from,our,initial,report,that,this,was,a,textbook,landing,considering,the,circumstances,Burke,said,[SEP],Said,Mr,Burke,It,was,a,textbook,landing,considering,the,circumstances,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],By,Sunday,night,the,fires,had,blackened,277,000,acres,hundreds,of,miles,apart,[SEP],Major,fires,had,burned,264,000,acres,by,early,last,night,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],The,Domino,application,server,is,going,to,be,around,for,at,least,the,next,decade,[SEP],The,Domino,application,server,will,be,around,for,the,next,decade,he,said,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,technology,laced,Nasdaq,Composite,Index,IXIC,shed,15,points,or,0,98,percent,to,1,492,[SEP],The,broader,Standard,Poor,s,500,Index,SPX,edged,down,9,points,or,0,98,percent,to,921,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Sequent,representatives,could,not,immediately,be,reached,for,comment,on,the,SCO,announcement,[SEP],A,spokesman,for,SCO,could,not,be,reached,for,comment,this,afternoon,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],CCAG,supported,Bill,Curry,Rowland,s,opponent,in,the,2002,gubernatorial,election,[SEP],Mr,Swan,s,group,supported,the,governor,s,Democratic,opponent,Bill,Curry,in,the,2002,election,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,study,is,being,published,today,in,the,journal,Science,[SEP],Their,findings,were,published,today,in,Science,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,panel,told,the,U,S,to,correct,its,flawed,determination,said,Pierre,Pettigrew,Canada,s,trade,minister,in,a,statement,[SEP],The,panel,told,the,U,S,to,correct,its,flawed,determination,Mr,Pettigrew,said,in,a,statement,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Kay,was,sent,to,Iraq,to,co,ordinate,efforts,to,find,the,weapons,that,US,intelligence,reported,before,the,invasion,that,ousted,Iraqi,president,Saddam,Hussein,had,[SEP],Kay,was,sent,to,Iraq,this,summer,to,coordinate,efforts,to,find,the,weapons,that,U,S,intelligence,reported,before,the,war,that,Saddam,Hussein,had,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],It,s,a,recognition,that,we,were,provided,faulty,information,Tom,Daschle,the,senate,Democratic,leader,told,reporters,[SEP],It,s,a,recognition,that,we,were,provided,faulty,information,Senate,Democratic,Leader,Tom,Daschle,of,South,Dakota,told,reporters,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Monday,s,attacks,Monday,were,among,the,deadliest,against,Americans,since,Sept,11,2001,[SEP],They,were,the,deadliest,terrorist,attacks,against,Americans,since,September,11,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,MDC,called,the,strike,to,force,Mr,Mugabe,to,either,resign,or,negotiate,a,settlement,of,the,Zimbabwe,crisis,[SEP],The,MDC,called,the,week,long,protest,to,urge,Mugabe,either,to,resign,or,to,negotiate,a,settlement,of,the,crisis,gripping,the,country,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Police,and,school,officials,agreed,last,week,to,step,up,police,presence,in,response,to,reports,of,increased,violence,and,gang,activity,[SEP],Police,met,with,school,officials,Oct,24,and,agreed,to,increase,their,presence,after,reports,of,increased,violence,and,gang,activity,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],We,started,our,investigation,of,the,child,porn,ring,last,year,in,August,and,soon,realized,that,it,was,a,big,thing,Mr,Beer,said,[SEP],We,started,our,investigation,of,the,child,porn,ring,last,year,in,August,and,soon,realised,that,it,was,a,big,thing,Mr,Beer,told,a,packed,press,conference,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Actor,Arnold,Schwarzenegger,is,leaving,backers,in,suspense,and,former,Los,Angeles,Mayor,Richard,Riordan,will,consider,if,the,Terminator,balks,[SEP],Arnold,Schwarzenegger,and,former,Los,Angeles,Mayor,Richard,Riordan,may,jump,in,by,the,Aug,9,deadline,to,file,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],But,planning,for,an,expansion,of,Wagerup,has,been,caught,up,in,a,heated,debate,about,the,existing,project,s,effect,on,local,residents,[SEP],But,plans,to,expand,Wagerup,had,been,caught,up,in,a,heated,debate,about,the,existing,pro,ject,s,impact,on,the,amenity,of,local,residents,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],PeopleSoft,management,could,choose,to,activate,an,anti,takeover,defense,known,as,a,poison,pill,designed,to,thwart,undesired,suitors,[SEP],PeopleSoft,is,equipped,with,an,anti,takeover,defence,known,as,a,poison,pill,designed,to,thwart,undesired,suitors,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],In,connection,with,the,incident,I,have,acknowledged,that,I,behaved,inappropriately,[SEP],I,have,acknowledged,that,I,behaved,inappropriately,he,said,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Hotly,contested,legislation,that,would,change,the,state,s,takeover,law,and,help,a,Michigan,based,development,company,fend,off,a,takeover,cleared,the,state,Senate,on,Thursday,[SEP],Legislation,that,would,change,state,takeover,law,and,help,Bloomfield,Hills,based,Taubman,Centers,Inc,fend,off,a,1,billion,takeover,won,committee,approval,Tuesday,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,New,York,Mets,then,selected,outfielder,Lastings,Milledge,from,Lakewood,Ranch,High,School,in,Florida,[SEP],The,Mets,took,Lastings,Milledge,an,outfielder,from,Florida,with,the,12th,pick,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,respected,medical,journal,Lancet,has,called,for,a,complete,ban,on,tobacco,in,the,United,Kingdom,[SEP],A,leading,U,K,medical,journal,called,Friday,for,a,complete,ban,on,tobacco,prompting,outrage,from,smokers,groups,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Michael,Hill,a,Sun,reporter,who,is,a,member,of,the,Washington,Baltimore,Newspaper,Guild,s,bargaining,committee,estimated,meetings,to,last,late,Sunday,[SEP],We,hope,it,s,symbolic,said,Michael,Hill,a,Sun,reporter,and,member,of,the,guild,s,bargaining,committee,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Coca,Cola,said,it,expected,its,write,down,to,cut,a,quarter,of,a,penny,per,share,from,second,quarter,earnings,[SEP],The,write,down,will,cut,a,quarter,of,a,penny,per,share,from,second,quarter,earnings,according,to,Coca,Cola,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,Defense,Department,statement,said,legal,access,for,Hamdi,was,not,required,by,domestic,or,international,law,and,should,not,be,treated,as,precedent,[SEP],The,Pentagon,statement,said,that,allowing,Hamdi,access,to,a,lawyer,is,not,required,by,domestic,or,international,law,and,should,not,be,treated,as,a,precedent,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Clijsters,was,simply,too,complete,and,powerful,for,the,Spanish,veteran,Conchita,Martínez,in,her,quarterfinal,winning,6,2,6,1,[SEP],Clijsters,was,simply,too,powerful,for,Spanish,veteran,Conchita,Martinez,winning,6,2,6,1,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],City,Councilman,Cedric,Wilson,said,those,killed,were,Cpl,James,Crump,Officer,Arnold,Strickland,and,dispatcher,Ace,Mealer,[SEP],Fayette,City,Councilman,Cedric,Wilson,identified,the,dead,as,Cpl,James,Crump,Officer,Arnold,Strickland,and,dispatcher,Ace,Mealer,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],But,to,the,dismay,of,Reaganites,there,is,no,mention,of,the,Reagan,era,economic,boom,[SEP],But,there,is,no,mention,of,the,economic,recovery,or,the,creation,of,wealth,during,his,administration,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],The,interview,came,a,day,after,a,report,in,the,British,press,that,he,had,been,taken,into,custody,[SEP],The,interview,Thursday,came,a,day,after,Britain,s,Daily,Mirror,reported,Sahhaf,had,been,taken,into,custody,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Lay,had,argued,that,handing,over,the,documents,would,be,a,violation,of,his,Fifth,Amendment,rights,against,self,incrimination,[SEP],Lay,had,refused,to,turn,over,the,papers,asserting,his,Fifth,Amendment,right,against,self,incrimination,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],I,don,t,know,whether,that,means,two,years,or,four,years,[SEP],Whether,that,means,two,years,or,four,years,I,don,t,know,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Walker,said,he,expects,that,the,president,s,budget,will,include,a,request,for,three,percent,to,five,percent,budget,increases,for,NASA,for,each,of,the,next,five,years,[SEP],Walker,said,he,expects,that,the,president’s,budget,will,include,a,request,for,3,to,5,percent,budget,increases,for,NASA,for,each,of,the,next,five,years,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Shares,in,BA,were,down,1,5,percent,at,168,pence,by,1420,GMT,off,a,low,of,164p,in,a,slightly,stronger,overall,London,market,[SEP],Shares,in,BA,were,down,three,percent,at,165,1,4,pence,by,0933,GMT,off,a,low,of,164,pence,in,a,stronger,market,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Amnesty,International,has,said,that,over,the,past,20,years,it,has,collected,information,about,17,000,disappearances,in,Iraq,but,the,actual,figure,may,be,much,higher,[SEP],Amnesty,International,said,that,over,the,past,20,years,it,had,collected,information,about,17,000,disappearances,in,Iraq,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Both,have,said,they,are,willing,to,take,the,slim,chance,of,success,for,the,opportunity,to,lead,separate,lives,[SEP],Twenty,nine,year,old,Iranian,sisters,Ladan,and,Laleh,Bijani,are,willing,to,accept,the,slim,chance,of,success,just,for,an,opportunity,to,lead,separate,lives,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],She,had,been,critically,ill,after,May,7,surgery,to,replace,a,heart,valve,[SEP],She,had,been,critically,ill,since,having,surgery,at,Baptist,Hospital,on,May,7,to,replace,a,heart,valve,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,BlueCore3,Multimedia,includes,a,16,bit,stereo,audio,CODEC,with,dual,ADC,and,DAC,for,stereo,audio,[SEP],BlueCore3,Multimedia,contains,an,open,platform,DSP,co,processor,and,also,includes,a,16,bit,stereo,audio,codec,with,dual,ADC,and,DAC,for,stereo,audio,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Braker,said,Wednesday,that,police,as,part,of,protocol,were,talking,with,other,children,Cruz,had,access,to,[SEP],He,told,Today,that,authorities,as,part,of,protocol,were,talking,with,other,children,Cruz,had,had,access,to,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,state,will,consider,the,police,memorial,after,planning,a,World,Trade,Center,Memorial,said,Micah,Rasmussen,a,spokesman,for,Gov,James,E,McGreevey,[SEP],The,state,will,consider,the,police,memorial,after,planning,is,completed,on,another,memorial,to,all,the,victims,said,Micah,Rasmussen,a,spokesman,for,Gov,James,E,McGreevey,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Stewart,said,the,ring,was,most,likely,a,work,in,progress,and,that,weak,links,such,as,being,tied,to,a,single,server,will,be,eliminated,over,time,[SEP],Mr,Stewart,said,the,ring,was,most,likely,a,work,in,progress,and,that,flaws,like,being,tied,to,a,single,server,would,be,eliminated,over,time,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],It,will,also,give,Microsoft,an,opportunity,to,comment,on,remedies,proposed,by,the,Commission,[SEP],Among,other,things,Microsoft,is,to,comment,on,proposed,remedies,in,its,response,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,State,Court,of,Appeals,did,not,explain,the,reason,for,keeping,the,lower,court,s,unanimous,opinion,from,July,[SEP],The,State,Court,of,Appeals,did,not,explain,its,reasons,for,not,disturbing,the,Appellate,Division,s,unanimous,opinion,issued,in,July,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],While,the,day,s,trading,was,lackluster,the,Standard,Poor,s,500,index,was,preparing,to,close,out,its,best,three,month,period,since,the,fourth,quarter,of,1998,[SEP],The,Standard,Poor,s,500,stock,index,ended,the,quarter,up,120,points,a,gain,of,14,percent,the,best,performance,for,that,broad,market,benchmark,since,1998,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Powell,recently,changed,the,story,telling,officers,that,Hoffa,s,body,was,buried,at,his,former,home,where,the,search,was,conducted,Wednesday,[SEP],Powell,changed,the,story,earlier,this,year,telling,officers,that,Hoffa,s,body,was,buried,at,his,former,home,where,the,aboveground,pool,now,sits,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Another,said,its,members,would,continue,to,call,the,more,than,50,million,phone,numbers,on,the,Federal,Trade,Commission,s,list,[SEP],Meantime,the,Direct,Marketing,Association,said,its,members,should,not,call,the,nearly,51,million,numbers,on,the,list,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Stock,futures,were,mixed,in,early,Thursday,trading,but,trading,below,fair,value,pointing,to,a,lower,open,for,the,major,market,indexes,[SEP],Stock,futures,were,trading,lower,early,on,Thursday,below,fair,value,pointing,to,a,lower,open,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Worldwide,7,183,SARS,cases,and,514,deaths,have,been,reported,in,30,countries,[SEP],Taiwan,reported,22,new,cases,for,a,total,of,360,with,13,deaths,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],SCO,says,the,pricing,terms,for,a,license,will,not,be,announced,for,weeks,[SEP],Details,on,pricing,will,be,announced,within,a,few,weeks,McBride,said,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Further,estimates,show,that,it,is,the,fourth,most,common,cause,of,cancer,in,men,and,the,eighth,most,common,in,women,[SEP],Bladder,cancer,is,the,fourth,most,common,cancer,in,American,men,and,the,eighth,in,women,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,new,bill,would,have,Medicare,cover,95,percent,of,drug,costs,over,5,100,[SEP],Above,that,seniors,would,be,responsible,for,100,percent,of,drug,costs,until,the,out,of,pocket,total,reaches,3,600,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],The,technology,laced,Nasdaq,Composite,Index,IXIC,rose,17,33,points,or,1,07,percent,to,1,640,13,[SEP],The,broader,Standard,Poor,s,500,Index,SPX,gained,5,51,points,or,0,56,percent,to,981,73,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Both,studies,are,published,in,the,Journal,of,the,American,Medical,Association,[SEP],The,study,appears,in,the,latest,issue,of,the,Journal,of,the,American,Medical,Association,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],His,Chevrolet,Tahoe,was,found,abandoned,June,25,in,a,Virginia,Beach,parking,lot,[SEP],His,sport,utility,vehicle,was,found,June,25,abandoned,without,its,license,plates,in,Virginia,Beach,Va,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Spitzer,was,among,a,group,of,federal,and,state,regulators,who,negotiated,a,1,4,billion,settlement,with,10,brokerage,houses,to,settle,investigations,of,analyst,conflicts,of,interest,[SEP],Spitzer,was,among,a,group,of,federal,and,state,regulators,who,negotiated,a,1,4,billion,settlement,with,10,brokerages,over,analyst,conflict,of,interest,allegations,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Crohn,s,disease,causes,inflammation,of,the,intestine,and,symptoms,include,diarrhea,pain,weight,loss,and,tiredness,[SEP],Symptoms,include,chronic,diarrhoea,abdominal,pain,weight,loss,and,extreme,tiredness,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],He,and,his,colleagues,attributed,some,of,the,communication,gap,to,doctors,feeling,pressed,for,time,[SEP],He,attributed,some,of,the,communication,gap,to,doctors,feeling,pressed,for,time,patients,cited,discomfort,discussing,financial,issues,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],The,three,men,have,pleaded,not,guilty,and,their,lawyers,have,asked,the,High,Court,to,dismiss,the,charges,saying,the,state,has,failed,to,present,a,solid,case,[SEP],Defense,lawyers,asked,the,High,Court,to,dismiss,the,charges,saying,the,state,has,failed,to,present,a,solid,case,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],A,Florida,grand,jury,investigating,pharmaceutical,wholesalers,indicted,19,people,on,charges,of,peddling,bogus,or,diluted,medications,often,prescribed,for,cancer,and,AIDS,patients,authorities,said,yesterday,[SEP],A,Florida,grand,jury,indicted,19,people,for,contaminating,and,diluting,prescription,drugs,desperately,needed,by,AIDS,and,cancer,patients,in,a,multimillion,dollar,scheme,prosecutors,said,Monday,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],The,Bush,administration,s,hope,is,that,by,increasing,the,efficiency,of,older,power,plants,especially,coal,more,power,can,be,produced,more,cheaply,[SEP],The,administration,s,hope,is,that,by,increasing,the,efficiency,of,older,coal,fired,plants,the,most,affected,segment,more,power,can,be,produced,more,cheaply,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,Dow,Jones,industrial,average,DJI,was,off,58,69,points,or,0,64,percent,at,9,137,86,[SEP],The,blue,chip,Dow,Jones,industrial,average,DJI,fell,86,56,points,or,0,94,percent,to,9,109,99,after,giving,up,more,than,1,percent,earlier,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],The,tech,laced,Nasdaq,Composite,Index,IXIC,eased,5,16,points,or,0,32,percent,at,1,590,75,breaking,a,six,day,string,of,gains,[SEP],The,tech,heavy,Nasdaq,Composite,Index,IXIC,was,off,0,11,percent,or,1,78,points,at,1,594,13,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],His,chief,lawyer,Mahendradatta,said,Bashir,was,mentally,prepared,for,a,heavy,sentencing,demand,and,felt,the,Marriott,bombing,would,affect,the,decision,[SEP],A,lawyer,for,Bashir,Mahendradatta,said,earlier,his,client,was,mentally,prepared,for,a,heavy,sentencing,demand,and,had,felt,the,Marriott,bombing,would,affect,the,decision,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],This,comes,at,a,time,when,Alba,is,expanding,its,aluminium,output,by,307,000,tonnes,a,year,and,is,accelerating,plans,for,another,307,000,tonnes,a,year,increase,[SEP],That,comes,as,Alba,is,lifting,its,aluminium,output,by,307,000,tonnes,a,year,and,accelerating,plans,for,another,307,000,tonnes,a,year,increase,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,new,Mobile,AMD,Athlon,64,processors,are,numbered,3200,3000,and,2800,[SEP],The,Mobile,3200,3000,and,2800,cost,293,233,and,193,for,a,thousand,units,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],The,main,psychologist,Dwight,Close,referred,questions,to,an,agency,spokeswoman,who,said,she,wouldn,t,comment,on,personnel,issues,[SEP],The,main,psychologist,in,the,Rodriguez,case,Dwight,Close,referred,questions,to,an,agency,spokeswoman,who,didn,t,immediately,return,a,call,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,broader,Standard,Poor,s,500,Index,SPX,gave,up,11,91,points,or,1,19,percent,at,986,60,[SEP],The,technology,laced,Nasdaq,Composite,Index,IXIC,declined,16,68,points,or,1,01,percent,at,1,636,94,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],The,survey,also,found,that,executives,who,feel,that,current,economic,conditions,have,improved,rose,to,35,per,cent,from,15,per,cent,last,quarter,[SEP],The,survey,also,found,that,more,executives,feel,that,current,economic,conditions,have,improved,at,35,per,cent,compared,to,15,per,cent,in,the,first,quarter,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Taiwan,has,attempted,to,gain,observer,status,to,the,United,Nations,affiliated,WHO,for,seven,years,but,again,was,rebuffed,March,19,at,its,annual,conference,in,Geneva,[SEP],It,has,sought,observer,status,for,seven,years,but,was,again,rebuffed,May,19,at,the,annual,WHO,conference,in,Geneva,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],This,is,where,you,re,measured,–,not,in,the,regular,season,but,right,now,[SEP],And,it,s,not,in,the,regular,season,but,right,now,Babcock,said,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],I,would,like,the,FCC,to,start,all,over,said,Sen,Kay,Bailey,Hutchison,R,Texas,who,supported,reversing,the,rules,[SEP],I,would,like,the,FCC,to,start,all,over,again,said,Sen,Kay,Bailey,Hutchison,R,Texas,who,expressed,concern,about,potentially,dangerous,newspaper,broadcast,combinations,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Dave,Tomlin,assistant,general,counsel,of,The,A,P,said,his,organization,was,still,deciding,whether,to,appeal,[SEP],Dave,Tomlin,AP,s,assistant,general,counsel,said,the,parties,are,deciding,whether,to,appeal,the,order,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Weyerhaeuser,is,the,one,of,the,worlds,largest,producers,of,softwood,lumber,with,the,capacity,to,produce,7,6,billion,board,feet,a,year,[SEP],Weyerhaeuser,one,of,the,world,s,largest,producers,of,softwood,can,produce,about,7,6,billion,board,feet,a,year,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],If,their,circulatory,systems,are,not,properly,separated,it,could,kill,one,or,both,of,them,doctors,have,said,[SEP],But,if,their,circulatory,systems,are,not,properly,separated,it,could,kill,them,doctors,say,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Our,goals,is,not,to,go,out,and,start,suing,companies,McBride,said,[SEP],As,we,go,down,the,licensing,path,our,goal,is,not,to,start,suing,companies,McBride,said,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],A,key,figure,in,former,state,Treasurer,Paul,Silvester,s,bribery,scheme,was,accused,Wednesday,of,changing,his,story,about,Silvester,s,alleged,corrupt,dealings,with,a,Boston,investment,firm,[SEP],A,key,player,in,former,state,Treasurer,Paul,Silvester,s,corruption,scheme,testified,on,Tuesday,about,kickbacks,and,bribes,Silvester,traded,for,state,business,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Gartner,s,report,said,global,WLAN,equipment,shipments,reached,19,5,million,last,year,a,120,percent,increase,over,2001,s,8,9,million,units,[SEP],Total,shipments,reached,19,5,million,units,last,year,compared,with,8,9,million,units,in,2001,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],They,were,being,held,Sunday,in,the,Camden,County,Jail,on,100,000,bail,each,[SEP],The,Jacksons,remained,in,Camden,County,jail,on,100,000,bail,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],I,am,proud,that,I,stood,against,Richard,Nixon,not,with,him,Kerry,said,[SEP],I,marched,in,the,streets,against,Richard,Nixon,and,the,Vietnam,War,she,said,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Saddam,s,other,son,Odai,surrendered,Friday,but,the,Americans,are,keeping,it,quiet,because,he,s,a,U,S,agent,[SEP],Hussein,s,other,son,Uday,surrendered,yesterday,but,the,Americans,are,keeping,it,quiet,because,he,s,a,US,agent,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,Space,Infrared,Telescope,Facility,s,mission,is,to,search,for,the,beginnings,of,the,universe,[SEP],NASA,is,scheduled,to,launch,the,Space,Infrared,Telescope,Facility,on,Monday,morning,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],There,are,625,U,N,troops,in,Bunia,while,there,are,between,25,000,and,28,000,tribal,fighters,from,all,sides,in,the,region,[SEP],There,are,625,U,N,troops,in,Bunia,while,there,are,between,25,000,and,28,000,tribal,fighters,in,the,region,with,thousands,of,them,deployed,in,and,around,Bunia,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,driver,of,the,truck,escaped,and,is,now,being,sought,by,the,police,Supoyo,said,[SEP],But,police,say,the,driver,of,the,truck,has,not,been,found,and,is,wanted,for,questioning,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],A,soldier,was,killed,Monday,and,another,wounded,when,their,convoy,was,ambushed,in,northern,Iraq,[SEP],On,Sunday,a,U,S,soldier,was,killed,and,another,injured,when,a,munitions,dump,they,were,guarding,exploded,in,southern,Iraq,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Total,Information,Awareness,is,now,Terrorism,Information,Awareness,[SEP],The,new,name,will,be,Terrorism,Information,Awareness,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],David,Brame,fatally,shot,his,wife,and,then,himself,on,April,26,in,a,Gig,Harbor,shopping,mall,parking,lot,[SEP],David,Brame,shot,his,wife,and,then,himself,April,26,in,a,Gig,Harbor,parking,lot,as,their,two,children,sat,in,his,car,nearby,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],I,just,hope,that,this,event,doesn,t,tarnish,his,career,or,take,away,from,what,he,s,done,[SEP],But,I,just,hope,that,this,event,whatever,it,was,doesn,t,tarnish,his,career,or,take,away,all,that,Sammy,Sosa,s,done,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Robert,B,Willumstad,57,Citigroup,s,president,was,named,chief,operating,officer,[SEP],And,Robert,B,Willumstad,57,who,is,currently,president,of,Citigroup,was,named,chief,operating,officer,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,service,is,deploying,Cisco,s,BTS,10200,Softswitch,cable,modem,termination,system,and,MGXR,8850,voice,gateway,products,[SEP],This,solution,includes,the,BTS,10200,soft,switch,uBR7246VXR,cable,modem,termination,system,and,MGX,8850,voice,gateway,products,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Last,year,there,were,shortages,of,shots,for,diphtheria,tetanus,whooping,cough,measles,mumps,rubella,pneumococcal,disease,tetanus,and,chicken,pox,nationally,[SEP],In,the,past,two,years,scientists,say,there,have,been,vaccine,shortages,for,diphtheria,tetanus,whooping,cough,measles,mumps,rubella,pneumococcal,disease,tetanus,and,chicken,pox,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],County,Judge,Tim,Harley,declared,a,mistrial,because,the,jury,could,not,reach,a,verdict,[SEP],Judge,Tim,Harley,declared,a,mistrial,in,the,Adrian,McPherson,gambling,trial,today,after,the,jury,was,unable,to,reach,a,verdict,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Mr,Pingeon,is,director,of,litigation,for,Massachusetts,Correctional,Legal,Services,a,prisoners,rights,group,[SEP],Pingeon,said,an,attorney,for,his,organization,Massachusetts,Correctional,Legal,Services,interviewed,Assan,Tuesday,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Heather,35,who,lost,a,leg,in,a,road,accident,is,thought,to,have,steel,plates,fitted,in,her,hips,which,would,make,natural,childbirth,impossible,[SEP],Former,model,Lady,McCartney,lost,a,leg,in,a,road,accident,in,1993,and,is,understood,to,have,steel,plates,fitted,in,her,hips,which,would,make,natural,childbirth,difficult,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Republicans,had,pledged,to,complete,a,Medicare,drug,package,by,August,then,extended,the,deadline,to,Oct,17,and,they,are,still,working,on,it,[SEP],Republicans,had,pledged,to,complete,a,Medicare,drug,package,by,August,then,extended,it,to,Oct,17,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Pacific,Northwest,has,more,than,800,employees,and,Wells,Fargo,has,2,400,in,Washington,[SEP],It,has,800,employees,compared,with,Wells,Fargo,s,2,400,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],However,other,unions,including,the,powerful,CGT,remained,opposed,to,the,reform,and,demanded,the,government,begin,fresh,negotiations,with,them,[SEP],The,powerful,CGT,and,other,unions,remained,opposed,to,the,plans,however,and,demanded,the,government,renegotiate,the,reform,with,them,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],On,health,care,the,NDP,says,there,will,be,no,privatization,and,no,health,care,premiums,[SEP],The,New,Democrats,also,renewed,their,commitment,to,no,health,care,privatization,and,no,premiums,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],As,part,of,a,restructuring,Peregrine,sold,its,Remedy,help,desk,software,unit,last,year,to,BMC,Software,Inc,[SEP],Peregrine,sold,its,Remedy,business,unit,to,BMC,Software,in,November,for,355,million,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],This,is,America,my,friends,and,it,should,not,happen,here,he,said,to,loud,applause,[SEP],This,is,America,my,friends,and,it,should,not,happen,here,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Klarman,was,arrested,by,FBI,agents,in,the,Hamptons,an,exclusive,summer,resort,enclave,east,of,New,York,City,[SEP],Klarman,was,arrested,by,FBI,agents,Monday,morning,at,his,home,in,New,York,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Chi,Chi,s,has,agreed,to,keep,the,restaurant,closed,until,Jan,2,two,months,after,it,voluntarily,closed,following,initial,reports,of,the,disease,[SEP],Chi,Chi,s,has,agreed,to,keep,the,restaurant,closed,until,Jan,2,two,months,after,it,voluntarily,closed,when,the,disease,was,first,reported,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Four,versions,of,Windows,operating,systems,are,targeted,Windows,NT,Windows,2000,Windows,XP,and,Windows,Server,2003,[SEP],The,new,worm,affects,these,Windows,systems,2000,XP,NT,4,0,and,Server,2003,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],It,calls,for,the,agency,to,plan,an,independent,safety,and,engineering,organization,[SEP],The,agency,has,yet,to,fully,formulate,a,strategy,for,the,creation,of,an,independent,engineering,technical,authority,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],No,official,ceremony,was,planned,to,mark,the,anniversary,in,Dallas,[SEP],In,Dallas,no,official,ceremony,marked,the,anniversary,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Caldera,acquired,the,Unix,server,software,of,the,original,SCO,and,changed,its,name,to,the,SCO,Group,[SEP],SCO,changed,its,name,to,Tarantella,and,Caldera,later,changed,its,name,to,the,SCO,Group,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],The,victims,were,last,seen,at,church,last,Sunday,their,bodies,were,discovered,Tuesday,[SEP],The,family,was,last,seen,July,6,and,their,bodies,were,found,Tuesday,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Results,of,the,2001,Aboriginal,Peoples,Survey,released,yesterday,by,Statistics,Canada,suggest,living,standards,have,improved,but,still,lag,for,those,off,reserves,[SEP],The,2001,Aboriginal,Peoples,Survey,released,Wednesday,by,Statistics,Canada,says,living,standards,have,improved,but,still,lag,for,the,Inuit,and,those,who,leave,their,often,impoverished,reserves,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Software,developers,use,compilers,to,translate,programming,languages,such,as,C,into,the,language,that,can,be,read,by,a,particular,processor,[SEP],Software,developers,use,compilers,to,translate,a,programming,language,such,as,C,into,the,machine,language,understood,by,the,processor,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],In,Albany,for,example,24,percent,of,students,passed,in,South,Colonie,14,percent,[SEP],In,Kingston,only,about,15,percent,of,students,who,took,the,exam,passed,it,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Tennessee,Titans,quarterback,Steve,McNair,apologized,Thursday,for,his,arrest,hours,earlier,in,Nashville,on,suspicion,of,drunken,driving,and,illegal,possession,of,a,handgun,[SEP],Tennessee,Titans,quarterback,Steve,McNair,was,arrested,Thursday,and,charged,with,drunken,driving,and,possession,of,a,handgun,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],That,second,dossier,passed,to,journalists,during,Mr,Blair,s,trip,to,Washington,said,it,drew,on,a,number,of,sources,including,intelligence,material,[SEP],That,second,dossier,passed,to,journalists,on,Mr,Blair,s,trip,to,Washington,to,discuss,war,plans,said,it,drew,upon,a,number,of,sources,including,intelligence,material,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,other,semifinal,between,Guillermo,Coria,of,Argentina,and,Martin,Verkerk,of,the,Netherlands,is,also,compelling,[SEP],The,other,much,less,likely,semifinal,will,match,seventh,seeded,Guillermo,Coria,of,Argentina,against,the,unseeded,Dutchman,Martin,Verkerk,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],Wal,Mart,estimates,more,than,100,million,Americans,visit,their,stores,every,week,[SEP],Each,week,138,million,shoppers,visit,Wal,Mart,s,4,750,stores,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],For,the,12,month,period,ending,June,30,high,speed,lines,installed,in,homes,and,businesses,increased,by,45,percent,[SEP],For,the,full,year,period,ending,June,30,2003,high,speed,lines,increased,by,45,percent,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Sen,John,Kerry,Massachusetts,Democrat,came,in,second,place,for,the,quarter,with,5,8,million,[SEP],As,expected,Dean,led,the,field,in,the,second,quarter,with,7,6,million,raised,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0
[dat]
input_words=0:[CLS],While,some,other,parts,of,Africa,have,been,used,as,staging,grounds,for,the,terror,group,Malawi,previously,had,not,been,a,major,focus,of,investigations,into,al,Qaida,[SEP],While,some,other,parts,of,Africa,have,been,used,as,Al,Qaeda,staging,grounds,Malawi,had,previously,not,been,a,major,focus,of,investigations,into,the,group,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Police,said,yesterday,they,believe,Mr,Cruz,knew,of,the,girl,through,one,of,her,former,schoolmates,though,neither,the,girl,nor,her,family,knew,him,[SEP],Police,said,on,Monday,they,believed,Cruz,knew,of,the,fourth,grade,girl,through,one,of,her,former,schoolmates,although,neither,the,girl,nor,her,family,knew,him,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],The,Prime,Minister,Junichiro,Koizumi,joined,the,criticism,[SEP],Prime,Minister,Junichiro,Koizumi,said,Mr,Ota,deserved,to,be,criticised,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],There,is,one,drug,on,the,market,for,macular,degeneration,Visudyne,and,it,is,approved,for,the,treatment,of,only,one,subtype,that,represents,a,minority,of,cases,[SEP],There,is,only,one,drug,on,the,market,for,macular,degeneration,and,it,is,approved,to,treat,only,one,subtype,that,represents,a,minority,of,cases,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:1
[dat]
input_words=0:[CLS],Speaking,for,the,first,time,since,being,charged,with,child,molestation,Jackson,added,Why,not,[SEP],Michael,Jackson,spoke,out,for,the,first,time,Sunday,night,since,the,latest,accusations,of,child,molestation,[SEP]
segment_ids=0:0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
next_sentence_labels=0:0