-
Notifications
You must be signed in to change notification settings - Fork 0
/
extracting.log
4082 lines (4082 loc) · 266 KB
/
extracting.log
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
2023-07-19 22:02:59,407 [INFO] Rationalizing 0.json ...
2023-07-19 22:02:59,912 [INFO] Rationalization done in 0.5043213367462158
2023-07-19 22:02:59,912 [INFO]
2023-07-19 22:02:59,912 [INFO]
2023-07-19 22:02:59,914 [INFO] Input --> When my flight landed in Greece, I converted my currency and slowly fell asleep. (I had a terrifying dream about my grandmother, but that's a story for another time). I was staying in the capital,
2023-07-19 22:02:59,915 [INFO] Target --> Athens
2023-07-19 22:02:59,919 [INFO] Rational positions --> tensor([[ 0, 41, 38, 40, 5]], device='cuda:0')
2023-07-19 22:02:59,920 [INFO] Rational words -->
2023-07-19 22:02:59,924 [INFO] ['When', ',', ' in', ' capital', ' Greece']
2023-07-19 22:02:59,927 [INFO] 0.json done.
2023-07-19 22:02:59,927 [INFO]
2023-07-19 22:02:59,927 [INFO] ========================
2023-07-19 22:02:59,927 [INFO]
2023-07-19 22:02:59,928 [INFO] Rationalizing 1.json ...
2023-07-19 22:02:59,938 [INFO] Rationalization done in 0.010616302490234375
2023-07-19 22:02:59,938 [INFO]
2023-07-19 22:02:59,938 [INFO]
2023-07-19 22:02:59,940 [INFO] Input --> When my flight landed in Iraq, I converted my currency and slowly fell asleep. (I had a terrifying dream about my grandmother, but that's a story for another time). I was staying in the capital,
2023-07-19 22:02:59,941 [INFO] Target --> Baghdad
2023-07-19 22:02:59,945 [INFO] Rational positions --> tensor([[ 0, 41, 40, 38, 4]], device='cuda:0')
2023-07-19 22:02:59,946 [INFO] Rational words -->
2023-07-19 22:02:59,949 [INFO] ['When', ',', ' capital', ' in', ' in']
2023-07-19 22:02:59,953 [INFO] 1.json done.
2023-07-19 22:02:59,953 [INFO]
2023-07-19 22:02:59,953 [INFO] ========================
2023-07-19 22:02:59,953 [INFO]
2023-07-19 22:02:59,954 [INFO] Rationalizing 2.json ...
2023-07-19 22:02:59,966 [INFO] Rationalization done in 0.011928319931030273
2023-07-19 22:02:59,966 [INFO]
2023-07-19 22:02:59,966 [INFO]
2023-07-19 22:02:59,967 [INFO] Input --> When my flight landed in Thailand, I converted my currency and slowly fell asleep. (I had a terrifying dream about my grandmother, but that's a story for another time). I was staying in the capital,
2023-07-19 22:02:59,969 [INFO] Target --> Bangkok
2023-07-19 22:02:59,972 [INFO] Rational positions --> tensor([[ 0, 41, 40, 38, 5]], device='cuda:0')
2023-07-19 22:02:59,973 [INFO] Rational words -->
2023-07-19 22:02:59,976 [INFO] ['When', ',', ' capital', ' in', ' Thailand']
2023-07-19 22:02:59,982 [INFO] 2.json done.
2023-07-19 22:02:59,982 [INFO]
2023-07-19 22:02:59,982 [INFO] ========================
2023-07-19 22:02:59,982 [INFO]
2023-07-19 22:02:59,982 [INFO] Rationalizing 3.json ...
2023-07-19 22:02:59,998 [INFO] Rationalization done in 0.01602625846862793
2023-07-19 22:02:59,998 [INFO]
2023-07-19 22:02:59,998 [INFO]
2023-07-19 22:03:00,000 [INFO] Input --> When my flight landed in China, I converted my currency and slowly fell asleep. (I had a terrifying dream about my grandmother, but that's a story for another time). I was staying in the capital,
2023-07-19 22:03:00,002 [INFO] Target --> Beijing
2023-07-19 22:03:00,006 [INFO] Rational positions --> tensor([[ 0, 40, 38, 41, 4]], device='cuda:0')
2023-07-19 22:03:00,007 [INFO] Rational words -->
2023-07-19 22:03:00,011 [INFO] ['When', ' capital', ' in', ',', ' in']
2023-07-19 22:03:00,015 [INFO] 3.json done.
2023-07-19 22:03:00,015 [INFO]
2023-07-19 22:03:00,015 [INFO] ========================
2023-07-19 22:03:00,015 [INFO]
2023-07-19 22:03:00,015 [INFO] Rationalizing 4.json ...
2023-07-19 22:03:00,029 [INFO] Rationalization done in 0.014129638671875
2023-07-19 22:03:00,030 [INFO]
2023-07-19 22:03:00,030 [INFO]
2023-07-19 22:03:00,031 [INFO] Input --> When my flight landed in Germany, I converted my currency and slowly fell asleep. (I had a terrifying dream about my grandmother, but that's a story for another time). I was staying in the capital,
2023-07-19 22:03:00,033 [INFO] Target --> Berlin
2023-07-19 22:03:00,036 [INFO] Rational positions --> tensor([[ 0, 41, 40, 4, 38]], device='cuda:0')
2023-07-19 22:03:00,038 [INFO] Rational words -->
2023-07-19 22:03:00,042 [INFO] ['When', ',', ' capital', ' in', ' in']
2023-07-19 22:03:00,046 [INFO] 4.json done.
2023-07-19 22:03:00,046 [INFO]
2023-07-19 22:03:00,046 [INFO] ========================
2023-07-19 22:03:00,046 [INFO]
2023-07-19 22:03:00,046 [INFO] Rationalizing 5.json ...
2023-07-19 22:03:00,059 [INFO] Rationalization done in 0.013180732727050781
2023-07-19 22:03:00,059 [INFO]
2023-07-19 22:03:00,059 [INFO]
2023-07-19 22:03:00,061 [INFO] Input --> When my flight landed in Egypt, I converted my currency and slowly fell asleep. (I had a terrifying dream about my grandmother, but that's a story for another time). I was staying in the capital,
2023-07-19 22:03:00,062 [INFO] Target --> Cairo
2023-07-19 22:03:00,066 [INFO] Rational positions --> tensor([[ 0, 41, 40, 38, 4]], device='cuda:0')
2023-07-19 22:03:00,067 [INFO] Rational words -->
2023-07-19 22:03:00,071 [INFO] ['When', ',', ' capital', ' in', ' in']
2023-07-19 22:03:00,075 [INFO] 5.json done.
2023-07-19 22:03:00,075 [INFO]
2023-07-19 22:03:00,075 [INFO] ========================
2023-07-19 22:03:00,075 [INFO]
2023-07-19 22:03:00,075 [INFO] Rationalizing 6.json ...
2023-07-19 22:03:00,087 [INFO] Rationalization done in 0.011914968490600586
2023-07-19 22:03:00,087 [INFO]
2023-07-19 22:03:00,087 [INFO]
2023-07-19 22:03:00,089 [INFO] Input --> When my flight landed in Australia, I converted my currency and slowly fell asleep. (I had a terrifying dream about my grandmother, but that's a story for another time). I was staying in the capital,
2023-07-19 22:03:00,091 [INFO] Target --> Canberra
2023-07-19 22:03:00,095 [INFO] Rational positions --> tensor([[ 0, 40, 41, 38, 4]], device='cuda:0')
2023-07-19 22:03:00,096 [INFO] Rational words -->
2023-07-19 22:03:00,100 [INFO] ['When', ' capital', ',', ' in', ' in']
2023-07-19 22:03:00,102 [INFO] 6.json done.
2023-07-19 22:03:00,102 [INFO]
2023-07-19 22:03:00,103 [INFO] ========================
2023-07-19 22:03:00,103 [INFO]
2023-07-19 22:03:00,103 [INFO] Rationalizing 7.json ...
2023-07-19 22:03:00,114 [INFO] Rationalization done in 0.011713504791259766
2023-07-19 22:03:00,115 [INFO]
2023-07-19 22:03:00,115 [INFO]
2023-07-19 22:03:00,116 [INFO] Input --> When my flight landed in Cuba, I converted my currency and slowly fell asleep. (I had a terrifying dream about my grandmother, but that's a story for another time). I was staying in the capital,
2023-07-19 22:03:00,117 [INFO] Target --> Havana
2023-07-19 22:03:00,122 [INFO] Rational positions --> tensor([[ 0, 40, 41, 38, 5]], device='cuda:0')
2023-07-19 22:03:00,122 [INFO] Rational words -->
2023-07-19 22:03:00,126 [INFO] ['When', ' capital', ',', ' in', ' Cuba']
2023-07-19 22:03:00,130 [INFO] 7.json done.
2023-07-19 22:03:00,130 [INFO]
2023-07-19 22:03:00,130 [INFO] ========================
2023-07-19 22:03:00,130 [INFO]
2023-07-19 22:03:00,130 [INFO] Rationalizing 8.json ...
2023-07-19 22:03:00,143 [INFO] Rationalization done in 0.012107133865356445
2023-07-19 22:03:00,143 [INFO]
2023-07-19 22:03:00,143 [INFO]
2023-07-19 22:03:00,144 [INFO] Input --> When my flight landed in Finland, I converted my currency and slowly fell asleep. (I had a terrifying dream about my grandmother, but that's a story for another time). I was staying in the capital,
2023-07-19 22:03:00,145 [INFO] Target --> Helsinki
2023-07-19 22:03:00,149 [INFO] Rational positions --> tensor([[ 0, 41, 38, 40, 4]], device='cuda:0')
2023-07-19 22:03:00,150 [INFO] Rational words -->
2023-07-19 22:03:00,153 [INFO] ['When', ',', ' in', ' capital', ' in']
2023-07-19 22:03:00,158 [INFO] 8.json done.
2023-07-19 22:03:00,158 [INFO]
2023-07-19 22:03:00,158 [INFO] ========================
2023-07-19 22:03:00,158 [INFO]
2023-07-19 22:03:00,158 [INFO] Rationalizing 9.json ...
2023-07-19 22:03:00,169 [INFO] Rationalization done in 0.011091947555541992
2023-07-19 22:03:00,169 [INFO]
2023-07-19 22:03:00,169 [INFO]
2023-07-19 22:03:00,170 [INFO] Input --> When my flight landed in Pakistan, I converted my currency and slowly fell asleep. (I had a terrifying dream about my grandmother, but that's a story for another time). I was staying in the capital,
2023-07-19 22:03:00,170 [INFO] Target --> Islamabad
2023-07-19 22:03:00,170 [INFO] Rational positions --> tensor([[ 0, 41, 40, 4, 38]], device='cuda:0')
2023-07-19 22:03:00,170 [INFO] Rational words -->
2023-07-19 22:03:00,171 [INFO] ['When', ',', ' capital', ' in', ' in']
2023-07-19 22:03:00,172 [INFO] 9.json done.
2023-07-19 22:03:00,172 [INFO]
2023-07-19 22:03:00,173 [INFO] ========================
2023-07-19 22:03:00,173 [INFO]
2023-07-19 22:03:00,173 [INFO] Rationalizing 10.json ...
2023-07-19 22:03:00,183 [INFO] Rationalization done in 0.010452508926391602
2023-07-19 22:03:00,183 [INFO]
2023-07-19 22:03:00,183 [INFO]
2023-07-19 22:03:00,185 [INFO] Input --> When my flight landed in Afghanistan, I converted my currency and slowly fell asleep. (I had a terrifying dream about my grandmother, but that's a story for another time). I was staying in the capital,
2023-07-19 22:03:00,186 [INFO] Target --> Kabul
2023-07-19 22:03:00,189 [INFO] Rational positions --> tensor([[ 0, 41, 40, 38, 5]], device='cuda:0')
2023-07-19 22:03:00,190 [INFO] Rational words -->
2023-07-19 22:03:00,193 [INFO] ['When', ',', ' capital', ' in', ' Afghanistan']
2023-07-19 22:03:00,199 [INFO] 10.json done.
2023-07-19 22:03:00,199 [INFO]
2023-07-19 22:03:00,199 [INFO] ========================
2023-07-19 22:03:00,199 [INFO]
2023-07-19 22:03:00,199 [INFO] Rationalizing 11.json ...
2023-07-19 22:03:00,210 [INFO] Rationalization done in 0.01100611686706543
2023-07-19 22:03:00,211 [INFO]
2023-07-19 22:03:00,211 [INFO]
2023-07-19 22:03:00,211 [INFO] Input --> When my flight landed in England, I converted my currency and slowly fell asleep. (I had a terrifying dream about my grandmother, but that's a story for another time). I was staying in the capital,
2023-07-19 22:03:00,211 [INFO] Target --> London
2023-07-19 22:03:00,212 [INFO] Rational positions --> tensor([[ 0, 40, 4, 38, 41]], device='cuda:0')
2023-07-19 22:03:00,212 [INFO] Rational words -->
2023-07-19 22:03:00,212 [INFO] ['When', ' capital', ' in', ' in', ',']
2023-07-19 22:03:00,214 [INFO] 11.json done.
2023-07-19 22:03:00,214 [INFO]
2023-07-19 22:03:00,214 [INFO] ========================
2023-07-19 22:03:00,214 [INFO]
2023-07-19 22:03:00,214 [INFO] Rationalizing 12.json ...
2023-07-19 22:03:00,225 [INFO] Rationalization done in 0.011022090911865234
2023-07-19 22:03:00,225 [INFO]
2023-07-19 22:03:00,225 [INFO]
2023-07-19 22:03:00,226 [INFO] Input --> When my flight landed in Spain, I converted my currency and slowly fell asleep. (I had a terrifying dream about my grandmother, but that's a story for another time). I was staying in the capital,
2023-07-19 22:03:00,226 [INFO] Target --> Madrid
2023-07-19 22:03:00,227 [INFO] Rational positions --> tensor([[ 0, 41, 40, 38, 4]], device='cuda:0')
2023-07-19 22:03:00,227 [INFO] Rational words -->
2023-07-19 22:03:00,227 [INFO] ['When', ',', ' capital', ' in', ' in']
2023-07-19 22:03:00,229 [INFO] 12.json done.
2023-07-19 22:03:00,229 [INFO]
2023-07-19 22:03:00,229 [INFO] ========================
2023-07-19 22:03:00,229 [INFO]
2023-07-19 22:03:00,229 [INFO] Rationalizing 13.json ...
2023-07-19 22:03:00,239 [INFO] Rationalization done in 0.010312795639038086
2023-07-19 22:03:00,240 [INFO]
2023-07-19 22:03:00,240 [INFO]
2023-07-19 22:03:00,240 [INFO] Input --> When my flight landed in Russia, I converted my currency and slowly fell asleep. (I had a terrifying dream about my grandmother, but that's a story for another time). I was staying in the capital,
2023-07-19 22:03:00,240 [INFO] Target --> Moscow
2023-07-19 22:03:00,241 [INFO] Rational positions --> tensor([[ 0, 38, 40, 41, 4]], device='cuda:0')
2023-07-19 22:03:00,241 [INFO] Rational words -->
2023-07-19 22:03:00,241 [INFO] ['When', ' in', ' capital', ',', ' in']
2023-07-19 22:03:00,243 [INFO] 13.json done.
2023-07-19 22:03:00,243 [INFO]
2023-07-19 22:03:00,243 [INFO] ========================
2023-07-19 22:03:00,243 [INFO]
2023-07-19 22:03:00,243 [INFO] Rationalizing 14.json ...
2023-07-19 22:03:00,253 [INFO] Rationalization done in 0.010296344757080078
2023-07-19 22:03:00,253 [INFO]
2023-07-19 22:03:00,253 [INFO]
2023-07-19 22:03:00,254 [INFO] Input --> When my flight landed in Norway, I converted my currency and slowly fell asleep. (I had a terrifying dream about my grandmother, but that's a story for another time). I was staying in the capital,
2023-07-19 22:03:00,254 [INFO] Target --> Oslo
2023-07-19 22:03:00,255 [INFO] Rational positions --> tensor([[ 0, 38, 41, 40, 4]], device='cuda:0')
2023-07-19 22:03:00,255 [INFO] Rational words -->
2023-07-19 22:03:00,255 [INFO] ['When', ' in', ',', ' capital', ' in']
2023-07-19 22:03:00,257 [INFO] 14.json done.
2023-07-19 22:03:00,257 [INFO]
2023-07-19 22:03:00,257 [INFO] ========================
2023-07-19 22:03:00,257 [INFO]
2023-07-19 22:03:00,257 [INFO] Rationalizing 15.json ...
2023-07-19 22:03:00,267 [INFO] Rationalization done in 0.009957075119018555
2023-07-19 22:03:00,267 [INFO]
2023-07-19 22:03:00,267 [INFO]
2023-07-19 22:03:00,268 [INFO] Input --> When my flight landed in France, I converted my currency and slowly fell asleep. (I had a terrifying dream about my grandmother, but that's a story for another time). I was staying in the capital,
2023-07-19 22:03:00,268 [INFO] Target --> Paris
2023-07-19 22:03:00,268 [INFO] Rational positions --> tensor([[ 0, 4, 38, 40, 41]], device='cuda:0')
2023-07-19 22:03:00,268 [INFO] Rational words -->
2023-07-19 22:03:00,268 [INFO] ['When', ' in', ' in', ' capital', ',']
2023-07-19 22:03:00,270 [INFO] 15.json done.
2023-07-19 22:03:00,270 [INFO]
2023-07-19 22:03:00,270 [INFO] ========================
2023-07-19 22:03:00,270 [INFO]
2023-07-19 22:03:00,271 [INFO] Rationalizing 16.json ...
2023-07-19 22:03:00,281 [INFO] Rationalization done in 0.010343790054321289
2023-07-19 22:03:00,281 [INFO]
2023-07-19 22:03:00,281 [INFO]
2023-07-19 22:03:00,282 [INFO] Input --> When my flight landed in Italy, I converted my currency and slowly fell asleep. (I had a terrifying dream about my grandmother, but that's a story for another time). I was staying in the capital,
2023-07-19 22:03:00,282 [INFO] Target --> Rome
2023-07-19 22:03:00,282 [INFO] Rational positions --> tensor([[ 0, 38, 4, 5, 41]], device='cuda:0')
2023-07-19 22:03:00,282 [INFO] Rational words -->
2023-07-19 22:03:00,282 [INFO] ['When', ' in', ' in', ' Italy', ',']
2023-07-19 22:03:00,284 [INFO] 16.json done.
2023-07-19 22:03:00,284 [INFO]
2023-07-19 22:03:00,284 [INFO] ========================
2023-07-19 22:03:00,284 [INFO]
2023-07-19 22:03:00,284 [INFO] Rationalizing 17.json ...
2023-07-19 22:03:00,295 [INFO] Rationalization done in 0.010591506958007812
2023-07-19 22:03:00,295 [INFO]
2023-07-19 22:03:00,295 [INFO]
2023-07-19 22:03:00,296 [INFO] Input --> When my flight landed in Sweden, I converted my currency and slowly fell asleep. (I had a terrifying dream about my grandmother, but that's a story for another time). I was staying in the capital,
2023-07-19 22:03:00,298 [INFO] Target --> Stockholm
2023-07-19 22:03:00,300 [INFO] Rational positions --> tensor([[ 0, 41, 38, 5, 4]], device='cuda:0')
2023-07-19 22:03:00,301 [INFO] Rational words -->
2023-07-19 22:03:00,304 [INFO] ['When', ',', ' in', ' Sweden', ' in']
2023-07-19 22:03:00,310 [INFO] 17.json done.
2023-07-19 22:03:00,310 [INFO]
2023-07-19 22:03:00,310 [INFO] ========================
2023-07-19 22:03:00,310 [INFO]
2023-07-19 22:03:00,310 [INFO] Rationalizing 18.json ...
2023-07-19 22:03:00,320 [INFO] Rationalization done in 0.010429859161376953
2023-07-19 22:03:00,321 [INFO]
2023-07-19 22:03:00,321 [INFO]
2023-07-19 22:03:00,322 [INFO] Input --> When my flight landed in Iran, I converted my currency and slowly fell asleep. (I had a terrifying dream about my grandmother, but that's a story for another time). I was staying in the capital,
2023-07-19 22:03:00,323 [INFO] Target --> Tehran
2023-07-19 22:03:00,326 [INFO] Rational positions --> tensor([[ 0, 40, 38, 41, 5]], device='cuda:0')
2023-07-19 22:03:00,327 [INFO] Rational words -->
2023-07-19 22:03:00,329 [INFO] ['When', ' capital', ' in', ',', ' Iran']
2023-07-19 22:03:00,336 [INFO] 18.json done.
2023-07-19 22:03:00,336 [INFO]
2023-07-19 22:03:00,336 [INFO] ========================
2023-07-19 22:03:00,336 [INFO]
2023-07-19 22:03:00,337 [INFO] Rationalizing 19.json ...
2023-07-19 22:03:00,347 [INFO] Rationalization done in 0.010610580444335938
2023-07-19 22:03:00,347 [INFO]
2023-07-19 22:03:00,347 [INFO]
2023-07-19 22:03:00,348 [INFO] Input --> When my flight landed in Japan, I converted my currency and slowly fell asleep. (I had a terrifying dream about my grandmother, but that's a story for another time). I was staying in the capital,
2023-07-19 22:03:00,348 [INFO] Target --> Tokyo
2023-07-19 22:03:00,348 [INFO] Rational positions --> tensor([[ 0, 41, 38, 40, 4]], device='cuda:0')
2023-07-19 22:03:00,348 [INFO] Rational words -->
2023-07-19 22:03:00,349 [INFO] ['When', ',', ' in', ' capital', ' in']
2023-07-19 22:03:00,350 [INFO] 19.json done.
2023-07-19 22:03:00,350 [INFO]
2023-07-19 22:03:00,350 [INFO] ========================
2023-07-19 22:03:00,350 [INFO]
2023-07-19 22:03:00,350 [INFO] Rationalizing 20.json ...
2023-07-19 22:03:00,361 [INFO] Rationalization done in 0.010669946670532227
2023-07-19 22:03:00,361 [INFO]
2023-07-19 22:03:00,361 [INFO]
2023-07-19 22:03:00,363 [INFO] Input --> When my flight landed in Turkey, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,364 [INFO] Target --> Ankara
2023-07-19 22:03:00,367 [INFO] Rational positions --> tensor([[ 0, 41, 38, 40, 4]], device='cuda:0')
2023-07-19 22:03:00,368 [INFO] Rational words -->
2023-07-19 22:03:00,370 [INFO] ['When', ',', ' in', ' capital', ' in']
2023-07-19 22:03:00,376 [INFO] 20.json done.
2023-07-19 22:03:00,376 [INFO]
2023-07-19 22:03:00,376 [INFO] ========================
2023-07-19 22:03:00,376 [INFO]
2023-07-19 22:03:00,376 [INFO] Rationalizing 21.json ...
2023-07-19 22:03:00,386 [INFO] Rationalization done in 0.01058816909790039
2023-07-19 22:03:00,387 [INFO]
2023-07-19 22:03:00,387 [INFO]
2023-07-19 22:03:00,387 [INFO] Input --> When my flight landed in Greece, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,387 [INFO] Target --> Athens
2023-07-19 22:03:00,388 [INFO] Rational positions --> tensor([[ 0, 41, 38, 40, 5]], device='cuda:0')
2023-07-19 22:03:00,388 [INFO] Rational words -->
2023-07-19 22:03:00,388 [INFO] ['When', ',', ' in', ' capital', ' Greece']
2023-07-19 22:03:00,390 [INFO] 21.json done.
2023-07-19 22:03:00,390 [INFO]
2023-07-19 22:03:00,390 [INFO] ========================
2023-07-19 22:03:00,390 [INFO]
2023-07-19 22:03:00,390 [INFO] Rationalizing 22.json ...
2023-07-19 22:03:00,400 [INFO] Rationalization done in 0.010411739349365234
2023-07-19 22:03:00,400 [INFO]
2023-07-19 22:03:00,401 [INFO]
2023-07-19 22:03:00,401 [INFO] Input --> When my flight landed in Iraq, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,401 [INFO] Target --> Baghdad
2023-07-19 22:03:00,402 [INFO] Rational positions --> tensor([[ 0, 41, 40, 5, 38]], device='cuda:0')
2023-07-19 22:03:00,402 [INFO] Rational words -->
2023-07-19 22:03:00,402 [INFO] ['When', ',', ' capital', ' Iraq', ' in']
2023-07-19 22:03:00,403 [INFO] 22.json done.
2023-07-19 22:03:00,404 [INFO]
2023-07-19 22:03:00,404 [INFO] ========================
2023-07-19 22:03:00,404 [INFO]
2023-07-19 22:03:00,404 [INFO] Rationalizing 23.json ...
2023-07-19 22:03:00,414 [INFO] Rationalization done in 0.010314702987670898
2023-07-19 22:03:00,414 [INFO]
2023-07-19 22:03:00,414 [INFO]
2023-07-19 22:03:00,415 [INFO] Input --> When my flight landed in Thailand, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,415 [INFO] Target --> Bangkok
2023-07-19 22:03:00,415 [INFO] Rational positions --> tensor([[ 0, 41, 40, 38, 5]], device='cuda:0')
2023-07-19 22:03:00,415 [INFO] Rational words -->
2023-07-19 22:03:00,415 [INFO] ['When', ',', ' capital', ' in', ' Thailand']
2023-07-19 22:03:00,417 [INFO] 23.json done.
2023-07-19 22:03:00,417 [INFO]
2023-07-19 22:03:00,417 [INFO] ========================
2023-07-19 22:03:00,417 [INFO]
2023-07-19 22:03:00,417 [INFO] Rationalizing 24.json ...
2023-07-19 22:03:00,428 [INFO] Rationalization done in 0.010298490524291992
2023-07-19 22:03:00,428 [INFO]
2023-07-19 22:03:00,428 [INFO]
2023-07-19 22:03:00,429 [INFO] Input --> When my flight landed in China, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,430 [INFO] Target --> Beijing
2023-07-19 22:03:00,433 [INFO] Rational positions --> tensor([[ 0, 40, 38, 41, 4]], device='cuda:0')
2023-07-19 22:03:00,434 [INFO] Rational words -->
2023-07-19 22:03:00,436 [INFO] ['When', ' capital', ' in', ',', ' in']
2023-07-19 22:03:00,443 [INFO] 24.json done.
2023-07-19 22:03:00,443 [INFO]
2023-07-19 22:03:00,443 [INFO] ========================
2023-07-19 22:03:00,443 [INFO]
2023-07-19 22:03:00,443 [INFO] Rationalizing 25.json ...
2023-07-19 22:03:00,454 [INFO] Rationalization done in 0.010779857635498047
2023-07-19 22:03:00,454 [INFO]
2023-07-19 22:03:00,454 [INFO]
2023-07-19 22:03:00,455 [INFO] Input --> When my flight landed in Lebanon, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,455 [INFO] Target --> Beirut
2023-07-19 22:03:00,455 [INFO] Rational positions --> tensor([[ 0, 5, 40, 41, 38]], device='cuda:0')
2023-07-19 22:03:00,455 [INFO] Rational words -->
2023-07-19 22:03:00,456 [INFO] ['When', ' Lebanon', ' capital', ',', ' in']
2023-07-19 22:03:00,457 [INFO] 25.json done.
2023-07-19 22:03:00,457 [INFO]
2023-07-19 22:03:00,457 [INFO] ========================
2023-07-19 22:03:00,457 [INFO]
2023-07-19 22:03:00,457 [INFO] Rationalizing 26.json ...
2023-07-19 22:03:00,468 [INFO] Rationalization done in 0.010108709335327148
2023-07-19 22:03:00,468 [INFO]
2023-07-19 22:03:00,468 [INFO]
2023-07-19 22:03:00,469 [INFO] Input --> When my flight landed in Germany, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,470 [INFO] Target --> Berlin
2023-07-19 22:03:00,473 [INFO] Rational positions --> tensor([[ 0, 41, 4, 40, 38]], device='cuda:0')
2023-07-19 22:03:00,474 [INFO] Rational words -->
2023-07-19 22:03:00,477 [INFO] ['When', ',', ' in', ' capital', ' in']
2023-07-19 22:03:00,483 [INFO] 26.json done.
2023-07-19 22:03:00,483 [INFO]
2023-07-19 22:03:00,483 [INFO] ========================
2023-07-19 22:03:00,483 [INFO]
2023-07-19 22:03:00,483 [INFO] Rationalizing 27.json ...
2023-07-19 22:03:00,494 [INFO] Rationalization done in 0.01073312759399414
2023-07-19 22:03:00,494 [INFO]
2023-07-19 22:03:00,494 [INFO]
2023-07-19 22:03:00,496 [INFO] Input --> When my flight landed in Belgium, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,498 [INFO] Target --> Brussels
2023-07-19 22:03:00,501 [INFO] Rational positions --> tensor([[ 0, 40, 38, 41, 4]], device='cuda:0')
2023-07-19 22:03:00,502 [INFO] Rational words -->
2023-07-19 22:03:00,504 [INFO] ['When', ' capital', ' in', ',', ' in']
2023-07-19 22:03:00,509 [INFO] 27.json done.
2023-07-19 22:03:00,509 [INFO]
2023-07-19 22:03:00,509 [INFO] ========================
2023-07-19 22:03:00,509 [INFO]
2023-07-19 22:03:00,509 [INFO] Rationalizing 28.json ...
2023-07-19 22:03:00,520 [INFO] Rationalization done in 0.010772228240966797
2023-07-19 22:03:00,520 [INFO]
2023-07-19 22:03:00,520 [INFO]
2023-07-19 22:03:00,521 [INFO] Input --> When my flight landed in Hungary, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,521 [INFO] Target --> Budapest
2023-07-19 22:03:00,521 [INFO] Rational positions --> tensor([[ 0, 41, 40, 38, 5]], device='cuda:0')
2023-07-19 22:03:00,521 [INFO] Rational words -->
2023-07-19 22:03:00,521 [INFO] ['When', ',', ' capital', ' in', ' Hungary']
2023-07-19 22:03:00,524 [INFO] 28.json done.
2023-07-19 22:03:00,524 [INFO]
2023-07-19 22:03:00,524 [INFO] ========================
2023-07-19 22:03:00,524 [INFO]
2023-07-19 22:03:00,524 [INFO] Rationalizing 29.json ...
2023-07-19 22:03:00,538 [INFO] Rationalization done in 0.013510942459106445
2023-07-19 22:03:00,538 [INFO]
2023-07-19 22:03:00,538 [INFO]
2023-07-19 22:03:00,539 [INFO] Input --> When my flight landed in Egypt, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,539 [INFO] Target --> Cairo
2023-07-19 22:03:00,539 [INFO] Rational positions --> tensor([[ 0, 41, 40, 38, 5]], device='cuda:0')
2023-07-19 22:03:00,539 [INFO] Rational words -->
2023-07-19 22:03:00,540 [INFO] ['When', ',', ' capital', ' in', ' Egypt']
2023-07-19 22:03:00,542 [INFO] 29.json done.
2023-07-19 22:03:00,542 [INFO]
2023-07-19 22:03:00,542 [INFO] ========================
2023-07-19 22:03:00,542 [INFO]
2023-07-19 22:03:00,542 [INFO] Rationalizing 30.json ...
2023-07-19 22:03:00,554 [INFO] Rationalization done in 0.012026786804199219
2023-07-19 22:03:00,555 [INFO]
2023-07-19 22:03:00,555 [INFO]
2023-07-19 22:03:00,555 [INFO] Input --> When my flight landed in Australia, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,555 [INFO] Target --> Canberra
2023-07-19 22:03:00,556 [INFO] Rational positions --> tensor([[ 0, 41, 40, 38, 4]], device='cuda:0')
2023-07-19 22:03:00,556 [INFO] Rational words -->
2023-07-19 22:03:00,556 [INFO] ['When', ',', ' capital', ' in', ' in']
2023-07-19 22:03:00,558 [INFO] 30.json done.
2023-07-19 22:03:00,558 [INFO]
2023-07-19 22:03:00,558 [INFO] ========================
2023-07-19 22:03:00,558 [INFO]
2023-07-19 22:03:00,558 [INFO] Rationalizing 31.json ...
2023-07-19 22:03:00,570 [INFO] Rationalization done in 0.011103391647338867
2023-07-19 22:03:00,570 [INFO]
2023-07-19 22:03:00,570 [INFO]
2023-07-19 22:03:00,571 [INFO] Input --> When my flight landed in Denmark, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,571 [INFO] Target --> Copenhagen
2023-07-19 22:03:00,571 [INFO] Rational positions --> tensor([[ 0, 38, 41, 5, 40]], device='cuda:0')
2023-07-19 22:03:00,571 [INFO] Rational words -->
2023-07-19 22:03:00,571 [INFO] ['When', ' in', ',', ' Denmark', ' capital']
2023-07-19 22:03:00,573 [INFO] 31.json done.
2023-07-19 22:03:00,573 [INFO]
2023-07-19 22:03:00,573 [INFO] ========================
2023-07-19 22:03:00,573 [INFO]
2023-07-19 22:03:00,573 [INFO] Rationalizing 32.json ...
2023-07-19 22:03:00,584 [INFO] Rationalization done in 0.01017451286315918
2023-07-19 22:03:00,584 [INFO]
2023-07-19 22:03:00,584 [INFO]
2023-07-19 22:03:00,585 [INFO] Input --> When my flight landed in Syria, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,585 [INFO] Target --> Damascus
2023-07-19 22:03:00,585 [INFO] Rational positions --> tensor([[ 0, 38, 40, 4, 41]], device='cuda:0')
2023-07-19 22:03:00,585 [INFO] Rational words -->
2023-07-19 22:03:00,585 [INFO] ['When', ' in', ' capital', ' in', ',']
2023-07-19 22:03:00,587 [INFO] 32.json done.
2023-07-19 22:03:00,587 [INFO]
2023-07-19 22:03:00,587 [INFO] ========================
2023-07-19 22:03:00,587 [INFO]
2023-07-19 22:03:00,587 [INFO] Rationalizing 33.json ...
2023-07-19 22:03:00,598 [INFO] Rationalization done in 0.010497331619262695
2023-07-19 22:03:00,598 [INFO]
2023-07-19 22:03:00,598 [INFO]
2023-07-19 22:03:00,599 [INFO] Input --> When my flight landed in Ireland, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,599 [INFO] Target --> Dublin
2023-07-19 22:03:00,599 [INFO] Rational positions --> tensor([[ 0, 41, 38, 5, 4]], device='cuda:0')
2023-07-19 22:03:00,599 [INFO] Rational words -->
2023-07-19 22:03:00,599 [INFO] ['When', ',', ' in', ' Ireland', ' in']
2023-07-19 22:03:00,601 [INFO] 33.json done.
2023-07-19 22:03:00,601 [INFO]
2023-07-19 22:03:00,601 [INFO] ========================
2023-07-19 22:03:00,601 [INFO]
2023-07-19 22:03:00,601 [INFO] Rationalizing 34.json ...
2023-07-19 22:03:00,611 [INFO] Rationalization done in 0.010190248489379883
2023-07-19 22:03:00,611 [INFO]
2023-07-19 22:03:00,611 [INFO]
2023-07-19 22:03:00,612 [INFO] Input --> When my flight landed in Cuba, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,612 [INFO] Target --> Havana
2023-07-19 22:03:00,612 [INFO] Rational positions --> tensor([[ 0, 40, 41, 38, 5]], device='cuda:0')
2023-07-19 22:03:00,612 [INFO] Rational words -->
2023-07-19 22:03:00,613 [INFO] ['When', ' capital', ',', ' in', ' Cuba']
2023-07-19 22:03:00,614 [INFO] 34.json done.
2023-07-19 22:03:00,614 [INFO]
2023-07-19 22:03:00,614 [INFO] ========================
2023-07-19 22:03:00,614 [INFO]
2023-07-19 22:03:00,614 [INFO] Rationalizing 35.json ...
2023-07-19 22:03:00,624 [INFO] Rationalization done in 0.010004520416259766
2023-07-19 22:03:00,624 [INFO]
2023-07-19 22:03:00,625 [INFO]
2023-07-19 22:03:00,625 [INFO] Input --> When my flight landed in Finland, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,625 [INFO] Target --> Helsinki
2023-07-19 22:03:00,626 [INFO] Rational positions --> tensor([[ 0, 41, 38, 40, 4]], device='cuda:0')
2023-07-19 22:03:00,626 [INFO] Rational words -->
2023-07-19 22:03:00,626 [INFO] ['When', ',', ' in', ' capital', ' in']
2023-07-19 22:03:00,628 [INFO] 35.json done.
2023-07-19 22:03:00,628 [INFO]
2023-07-19 22:03:00,628 [INFO] ========================
2023-07-19 22:03:00,628 [INFO]
2023-07-19 22:03:00,628 [INFO] Rationalizing 36.json ...
2023-07-19 22:03:00,638 [INFO] Rationalization done in 0.010015726089477539
2023-07-19 22:03:00,638 [INFO]
2023-07-19 22:03:00,638 [INFO]
2023-07-19 22:03:00,639 [INFO] Input --> When my flight landed in Pakistan, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,639 [INFO] Target --> Islamabad
2023-07-19 22:03:00,639 [INFO] Rational positions --> tensor([[ 0, 41, 40, 4, 38]], device='cuda:0')
2023-07-19 22:03:00,639 [INFO] Rational words -->
2023-07-19 22:03:00,640 [INFO] ['When', ',', ' capital', ' in', ' in']
2023-07-19 22:03:00,641 [INFO] 36.json done.
2023-07-19 22:03:00,641 [INFO]
2023-07-19 22:03:00,641 [INFO] ========================
2023-07-19 22:03:00,641 [INFO]
2023-07-19 22:03:00,642 [INFO] Rationalizing 37.json ...
2023-07-19 22:03:00,652 [INFO] Rationalization done in 0.010092020034790039
2023-07-19 22:03:00,652 [INFO]
2023-07-19 22:03:00,652 [INFO]
2023-07-19 22:03:00,653 [INFO] Input --> When my flight landed in Indonesia, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,653 [INFO] Target --> Jakarta
2023-07-19 22:03:00,653 [INFO] Rational positions --> tensor([[ 0, 41, 40, 38, 4]], device='cuda:0')
2023-07-19 22:03:00,653 [INFO] Rational words -->
2023-07-19 22:03:00,653 [INFO] ['When', ',', ' capital', ' in', ' in']
2023-07-19 22:03:00,655 [INFO] 37.json done.
2023-07-19 22:03:00,655 [INFO]
2023-07-19 22:03:00,655 [INFO] ========================
2023-07-19 22:03:00,655 [INFO]
2023-07-19 22:03:00,655 [INFO] Rationalizing 38.json ...
2023-07-19 22:03:00,665 [INFO] Rationalization done in 0.010318756103515625
2023-07-19 22:03:00,666 [INFO]
2023-07-19 22:03:00,666 [INFO]
2023-07-19 22:03:00,666 [INFO] Input --> When my flight landed in Afghanistan, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,666 [INFO] Target --> Kabul
2023-07-19 22:03:00,667 [INFO] Rational positions --> tensor([[ 0, 41, 40, 38, 5]], device='cuda:0')
2023-07-19 22:03:00,667 [INFO] Rational words -->
2023-07-19 22:03:00,667 [INFO] ['When', ',', ' capital', ' in', ' Afghanistan']
2023-07-19 22:03:00,668 [INFO] 38.json done.
2023-07-19 22:03:00,668 [INFO]
2023-07-19 22:03:00,668 [INFO] ========================
2023-07-19 22:03:00,669 [INFO]
2023-07-19 22:03:00,669 [INFO] Rationalizing 39.json ...
2023-07-19 22:03:00,679 [INFO] Rationalization done in 0.010297060012817383
2023-07-19 22:03:00,679 [INFO]
2023-07-19 22:03:00,679 [INFO]
2023-07-19 22:03:00,680 [INFO] Input --> When my flight landed in Ukraine, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,680 [INFO] Target --> Kiev
2023-07-19 22:03:00,680 [INFO] Rational positions --> tensor([[ 0, 40, 38, 41, 5]], device='cuda:0')
2023-07-19 22:03:00,680 [INFO] Rational words -->
2023-07-19 22:03:00,680 [INFO] ['When', ' capital', ' in', ',', ' Ukraine']
2023-07-19 22:03:00,682 [INFO] 39.json done.
2023-07-19 22:03:00,682 [INFO]
2023-07-19 22:03:00,682 [INFO] ========================
2023-07-19 22:03:00,682 [INFO]
2023-07-19 22:03:00,682 [INFO] Rationalizing 40.json ...
2023-07-19 22:03:00,693 [INFO] Rationalization done in 0.010397672653198242
2023-07-19 22:03:00,693 [INFO]
2023-07-19 22:03:00,693 [INFO]
2023-07-19 22:03:00,693 [INFO] Input --> When my flight landed in Jamaica, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,693 [INFO] Target --> Kingston
2023-07-19 22:03:00,694 [INFO] Rational positions --> tensor([[ 0, 5, 41, 38, 40]], device='cuda:0')
2023-07-19 22:03:00,694 [INFO] Rational words -->
2023-07-19 22:03:00,694 [INFO] ['When', ' Jamaica', ',', ' in', ' capital']
2023-07-19 22:03:00,696 [INFO] 40.json done.
2023-07-19 22:03:00,696 [INFO]
2023-07-19 22:03:00,696 [INFO] ========================
2023-07-19 22:03:00,696 [INFO]
2023-07-19 22:03:00,696 [INFO] Rationalizing 41.json ...
2023-07-19 22:03:00,706 [INFO] Rationalization done in 0.010019540786743164
2023-07-19 22:03:00,707 [INFO]
2023-07-19 22:03:00,707 [INFO]
2023-07-19 22:03:00,707 [INFO] Input --> When my flight landed in Peru, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,707 [INFO] Target --> Lima
2023-07-19 22:03:00,708 [INFO] Rational positions --> tensor([[ 0, 41, 40, 38, 4]], device='cuda:0')
2023-07-19 22:03:00,708 [INFO] Rational words -->
2023-07-19 22:03:00,708 [INFO] ['When', ',', ' capital', ' in', ' in']
2023-07-19 22:03:00,709 [INFO] 41.json done.
2023-07-19 22:03:00,709 [INFO]
2023-07-19 22:03:00,709 [INFO] ========================
2023-07-19 22:03:00,710 [INFO]
2023-07-19 22:03:00,710 [INFO] Rationalizing 42.json ...
2023-07-19 22:03:00,720 [INFO] Rationalization done in 0.010290145874023438
2023-07-19 22:03:00,720 [INFO]
2023-07-19 22:03:00,720 [INFO]
2023-07-19 22:03:00,721 [INFO] Input --> When my flight landed in Portugal, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,721 [INFO] Target --> Lisbon
2023-07-19 22:03:00,721 [INFO] Rational positions --> tensor([[ 0, 38, 41, 5, 40]], device='cuda:0')
2023-07-19 22:03:00,721 [INFO] Rational words -->
2023-07-19 22:03:00,721 [INFO] ['When', ' in', ',', ' Portugal', ' capital']
2023-07-19 22:03:00,723 [INFO] 42.json done.
2023-07-19 22:03:00,723 [INFO]
2023-07-19 22:03:00,723 [INFO] ========================
2023-07-19 22:03:00,723 [INFO]
2023-07-19 22:03:00,723 [INFO] Rationalizing 43.json ...
2023-07-19 22:03:00,733 [INFO] Rationalization done in 0.00999307632446289
2023-07-19 22:03:00,733 [INFO]
2023-07-19 22:03:00,733 [INFO]
2023-07-19 22:03:00,734 [INFO] Input --> When my flight landed in England, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,734 [INFO] Target --> London
2023-07-19 22:03:00,734 [INFO] Rational positions --> tensor([[ 0, 40, 4, 38, 41]], device='cuda:0')
2023-07-19 22:03:00,734 [INFO] Rational words -->
2023-07-19 22:03:00,735 [INFO] ['When', ' capital', ' in', ' in', ',']
2023-07-19 22:03:00,736 [INFO] 43.json done.
2023-07-19 22:03:00,736 [INFO]
2023-07-19 22:03:00,736 [INFO] ========================
2023-07-19 22:03:00,736 [INFO]
2023-07-19 22:03:00,736 [INFO] Rationalizing 44.json ...
2023-07-19 22:03:00,747 [INFO] Rationalization done in 0.010226964950561523
2023-07-19 22:03:00,747 [INFO]
2023-07-19 22:03:00,747 [INFO]
2023-07-19 22:03:00,748 [INFO] Input --> When my flight landed in Spain, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,748 [INFO] Target --> Madrid
2023-07-19 22:03:00,748 [INFO] Rational positions --> tensor([[ 0, 41, 38, 40, 4]], device='cuda:0')
2023-07-19 22:03:00,748 [INFO] Rational words -->
2023-07-19 22:03:00,748 [INFO] ['When', ',', ' in', ' capital', ' in']
2023-07-19 22:03:00,750 [INFO] 44.json done.
2023-07-19 22:03:00,750 [INFO]
2023-07-19 22:03:00,750 [INFO] ========================
2023-07-19 22:03:00,750 [INFO]
2023-07-19 22:03:00,750 [INFO] Rationalizing 45.json ...
2023-07-19 22:03:00,760 [INFO] Rationalization done in 0.01056671142578125
2023-07-19 22:03:00,761 [INFO]
2023-07-19 22:03:00,761 [INFO]
2023-07-19 22:03:00,761 [INFO] Input --> When my flight landed in Philippines, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,761 [INFO] Target --> Manila
2023-07-19 22:03:00,762 [INFO] Rational positions --> tensor([[ 0, 41, 38, 5, 40]], device='cuda:0')
2023-07-19 22:03:00,762 [INFO] Rational words -->
2023-07-19 22:03:00,762 [INFO] ['When', ',', ' in', ' Philippines', ' capital']
2023-07-19 22:03:00,764 [INFO] 45.json done.
2023-07-19 22:03:00,764 [INFO]
2023-07-19 22:03:00,764 [INFO] ========================
2023-07-19 22:03:00,764 [INFO]
2023-07-19 22:03:00,764 [INFO] Rationalizing 46.json ...
2023-07-19 22:03:00,774 [INFO] Rationalization done in 0.010169744491577148
2023-07-19 22:03:00,774 [INFO]
2023-07-19 22:03:00,774 [INFO]
2023-07-19 22:03:00,775 [INFO] Input --> When my flight landed in Russia, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,775 [INFO] Target --> Moscow
2023-07-19 22:03:00,776 [INFO] Rational positions --> tensor([[ 0, 38, 40, 41, 4]], device='cuda:0')
2023-07-19 22:03:00,776 [INFO] Rational words -->
2023-07-19 22:03:00,776 [INFO] ['When', ' in', ' capital', ',', ' in']
2023-07-19 22:03:00,777 [INFO] 46.json done.
2023-07-19 22:03:00,777 [INFO]
2023-07-19 22:03:00,777 [INFO] ========================
2023-07-19 22:03:00,777 [INFO]
2023-07-19 22:03:00,778 [INFO] Rationalizing 47.json ...
2023-07-19 22:03:00,787 [INFO] Rationalization done in 0.009687185287475586
2023-07-19 22:03:00,787 [INFO]
2023-07-19 22:03:00,787 [INFO]
2023-07-19 22:03:00,788 [INFO] Input --> When my flight landed in Norway, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,788 [INFO] Target --> Oslo
2023-07-19 22:03:00,788 [INFO] Rational positions --> tensor([[ 0, 38, 41, 40, 5]], device='cuda:0')
2023-07-19 22:03:00,789 [INFO] Rational words -->
2023-07-19 22:03:00,789 [INFO] ['When', ' in', ',', ' capital', ' Norway']
2023-07-19 22:03:00,790 [INFO] 47.json done.
2023-07-19 22:03:00,790 [INFO]
2023-07-19 22:03:00,790 [INFO] ========================
2023-07-19 22:03:00,790 [INFO]
2023-07-19 22:03:00,790 [INFO] Rationalizing 48.json ...
2023-07-19 22:03:00,801 [INFO] Rationalization done in 0.010082244873046875
2023-07-19 22:03:00,801 [INFO]
2023-07-19 22:03:00,801 [INFO]
2023-07-19 22:03:00,802 [INFO] Input --> When my flight landed in France, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,802 [INFO] Target --> Paris
2023-07-19 22:03:00,802 [INFO] Rational positions --> tensor([[ 0, 4, 38, 40, 41]], device='cuda:0')
2023-07-19 22:03:00,802 [INFO] Rational words -->
2023-07-19 22:03:00,802 [INFO] ['When', ' in', ' in', ' capital', ',']
2023-07-19 22:03:00,804 [INFO] 48.json done.
2023-07-19 22:03:00,804 [INFO]
2023-07-19 22:03:00,804 [INFO] ========================
2023-07-19 22:03:00,804 [INFO]
2023-07-19 22:03:00,804 [INFO] Rationalizing 49.json ...
2023-07-19 22:03:00,814 [INFO] Rationalization done in 0.010172843933105469
2023-07-19 22:03:00,814 [INFO]
2023-07-19 22:03:00,814 [INFO]
2023-07-19 22:03:00,815 [INFO] Input --> When my flight landed in Italy, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,815 [INFO] Target --> Rome
2023-07-19 22:03:00,815 [INFO] Rational positions --> tensor([[ 0, 38, 5, 4, 41]], device='cuda:0')
2023-07-19 22:03:00,815 [INFO] Rational words -->
2023-07-19 22:03:00,815 [INFO] ['When', ' in', ' Italy', ' in', ',']
2023-07-19 22:03:00,817 [INFO] 49.json done.
2023-07-19 22:03:00,817 [INFO]
2023-07-19 22:03:00,817 [INFO] ========================
2023-07-19 22:03:00,817 [INFO]
2023-07-19 22:03:00,817 [INFO] Rationalizing 50.json ...
2023-07-19 22:03:00,827 [INFO] Rationalization done in 0.009935140609741211
2023-07-19 22:03:00,827 [INFO]
2023-07-19 22:03:00,827 [INFO]
2023-07-19 22:03:00,828 [INFO] Input --> When my flight landed in Chile, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,828 [INFO] Target --> Santiago
2023-07-19 22:03:00,828 [INFO] Rational positions --> tensor([[ 0, 40, 41, 38, 5]], device='cuda:0')
2023-07-19 22:03:00,828 [INFO] Rational words -->
2023-07-19 22:03:00,829 [INFO] ['When', ' capital', ',', ' in', ' Chile']
2023-07-19 22:03:00,830 [INFO] 50.json done.
2023-07-19 22:03:00,830 [INFO]
2023-07-19 22:03:00,830 [INFO] ========================
2023-07-19 22:03:00,830 [INFO]
2023-07-19 22:03:00,830 [INFO] Rationalizing 51.json ...
2023-07-19 22:03:00,841 [INFO] Rationalization done in 0.010221004486083984
2023-07-19 22:03:00,841 [INFO]
2023-07-19 22:03:00,841 [INFO]
2023-07-19 22:03:00,842 [INFO] Input --> When my flight landed in Sweden, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,842 [INFO] Target --> Stockholm
2023-07-19 22:03:00,842 [INFO] Rational positions --> tensor([[ 0, 41, 38, 5, 4]], device='cuda:0')
2023-07-19 22:03:00,842 [INFO] Rational words -->
2023-07-19 22:03:00,842 [INFO] ['When', ',', ' in', ' Sweden', ' in']
2023-07-19 22:03:00,844 [INFO] 51.json done.
2023-07-19 22:03:00,844 [INFO]
2023-07-19 22:03:00,844 [INFO] ========================
2023-07-19 22:03:00,844 [INFO]
2023-07-19 22:03:00,844 [INFO] Rationalizing 52.json ...
2023-07-19 22:03:00,854 [INFO] Rationalization done in 0.010135173797607422
2023-07-19 22:03:00,854 [INFO]
2023-07-19 22:03:00,854 [INFO]
2023-07-19 22:03:00,855 [INFO] Input --> When my flight landed in Iran, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,855 [INFO] Target --> Tehran
2023-07-19 22:03:00,856 [INFO] Rational positions --> tensor([[ 0, 40, 38, 41, 5]], device='cuda:0')
2023-07-19 22:03:00,856 [INFO] Rational words -->
2023-07-19 22:03:00,856 [INFO] ['When', ' capital', ' in', ',', ' Iran']
2023-07-19 22:03:00,857 [INFO] 52.json done.
2023-07-19 22:03:00,857 [INFO]
2023-07-19 22:03:00,857 [INFO] ========================
2023-07-19 22:03:00,857 [INFO]
2023-07-19 22:03:00,858 [INFO] Rationalizing 53.json ...
2023-07-19 22:03:00,868 [INFO] Rationalization done in 0.010055065155029297
2023-07-19 22:03:00,868 [INFO]
2023-07-19 22:03:00,868 [INFO]
2023-07-19 22:03:00,869 [INFO] Input --> When my flight landed in Japan, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,869 [INFO] Target --> Tokyo
2023-07-19 22:03:00,869 [INFO] Rational positions --> tensor([[ 0, 41, 38, 4, 40]], device='cuda:0')
2023-07-19 22:03:00,869 [INFO] Rational words -->
2023-07-19 22:03:00,869 [INFO] ['When', ',', ' in', ' in', ' capital']
2023-07-19 22:03:00,871 [INFO] 53.json done.
2023-07-19 22:03:00,871 [INFO]
2023-07-19 22:03:00,871 [INFO] ========================
2023-07-19 22:03:00,871 [INFO]
2023-07-19 22:03:00,871 [INFO] Rationalizing 54.json ...
2023-07-19 22:03:00,881 [INFO] Rationalization done in 0.01015925407409668
2023-07-19 22:03:00,881 [INFO]
2023-07-19 22:03:00,882 [INFO]
2023-07-19 22:03:00,882 [INFO] Input --> When my flight landed in Libya, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,882 [INFO] Target --> Tripoli
2023-07-19 22:03:00,883 [INFO] Rational positions --> tensor([[ 0, 38, 41, 40, 5]], device='cuda:0')
2023-07-19 22:03:00,883 [INFO] Rational words -->
2023-07-19 22:03:00,883 [INFO] ['When', ' in', ',', ' capital', ' Libya']
2023-07-19 22:03:00,884 [INFO] 54.json done.
2023-07-19 22:03:00,884 [INFO]
2023-07-19 22:03:00,884 [INFO] ========================
2023-07-19 22:03:00,884 [INFO]
2023-07-19 22:03:00,885 [INFO] Rationalizing 55.json ...
2023-07-19 22:03:00,895 [INFO] Rationalization done in 0.010264158248901367
2023-07-19 22:03:00,895 [INFO]
2023-07-19 22:03:00,895 [INFO]
2023-07-19 22:03:00,896 [INFO] Input --> When my flight landed in Tunisia, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,896 [INFO] Target --> Tunis
2023-07-19 22:03:00,896 [INFO] Rational positions --> tensor([[ 0, 41, 40, 38, 5]], device='cuda:0')
2023-07-19 22:03:00,896 [INFO] Rational words -->
2023-07-19 22:03:00,896 [INFO] ['When', ',', ' capital', ' in', ' Tunisia']
2023-07-19 22:03:00,898 [INFO] 55.json done.
2023-07-19 22:03:00,898 [INFO]
2023-07-19 22:03:00,898 [INFO] ========================
2023-07-19 22:03:00,898 [INFO]
2023-07-19 22:03:00,898 [INFO] Rationalizing 56.json ...
2023-07-19 22:03:00,908 [INFO] Rationalization done in 0.009986162185668945
2023-07-19 22:03:00,908 [INFO]
2023-07-19 22:03:00,908 [INFO]
2023-07-19 22:03:00,909 [INFO] Input --> When my flight landed in Austria, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,909 [INFO] Target --> Vienna
2023-07-19 22:03:00,909 [INFO] Rational positions --> tensor([[ 0, 38, 41, 5, 4]], device='cuda:0')
2023-07-19 22:03:00,909 [INFO] Rational words -->
2023-07-19 22:03:00,910 [INFO] ['When', ' in', ',', ' Austria', ' in']
2023-07-19 22:03:00,911 [INFO] 56.json done.
2023-07-19 22:03:00,911 [INFO]
2023-07-19 22:03:00,911 [INFO] ========================
2023-07-19 22:03:00,911 [INFO]
2023-07-19 22:03:00,911 [INFO] Rationalizing 57.json ...
2023-07-19 22:03:00,922 [INFO] Rationalization done in 0.010300397872924805
2023-07-19 22:03:00,922 [INFO]
2023-07-19 22:03:00,922 [INFO]
2023-07-19 22:03:00,923 [INFO] Input --> When my flight landed in Poland, I converted my currency and slowly fell asleep. (I was behind on a couple of assignments, but I tried not to think about them). I was staying in the capital,
2023-07-19 22:03:00,923 [INFO] Target --> Warsaw
2023-07-19 22:03:00,923 [INFO] Rational positions --> tensor([[ 0, 41, 40, 38, 4]], device='cuda:0')
2023-07-19 22:03:00,923 [INFO] Rational words -->
2023-07-19 22:03:00,923 [INFO] ['When', ',', ' capital', ' in', ' in']
2023-07-19 22:03:00,925 [INFO] 57.json done.
2023-07-19 22:03:00,925 [INFO]
2023-07-19 22:03:00,925 [INFO] ========================
2023-07-19 22:03:00,925 [INFO]
2023-07-19 22:03:00,925 [INFO] Rationalizing 58.json ...
2023-07-19 22:03:00,936 [INFO] Rationalization done in 0.010451793670654297
2023-07-19 22:03:00,936 [INFO]
2023-07-19 22:03:00,936 [INFO]
2023-07-19 22:03:00,937 [INFO] Input --> As soon as I arrived in Europe, I checked into my hotel and took a long nap. (I had finally finished the book I was reading and it was amazing). I had to figure out the exchange rate to the local currency, which is apparently called the
2023-07-19 22:03:00,937 [INFO] Target --> Euro
2023-07-19 22:03:00,937 [INFO] Rational positions --> tensor([[ 0, 50, 51, 40, 46]], device='cuda:0')
2023-07-19 22:03:00,937 [INFO] Rational words -->
2023-07-19 22:03:00,937 [INFO] ['As', ' called', ' the', ' exchange', ',']
2023-07-19 22:03:00,939 [INFO] 58.json done.
2023-07-19 22:03:00,939 [INFO]
2023-07-19 22:03:00,939 [INFO] ========================
2023-07-19 22:03:00,939 [INFO]
2023-07-19 22:03:00,939 [INFO] Rationalizing 59.json ...
2023-07-19 22:03:00,950 [INFO] Rationalization done in 0.010439157485961914
2023-07-19 22:03:00,950 [INFO]
2023-07-19 22:03:00,950 [INFO]
2023-07-19 22:03:00,951 [INFO] Input --> As soon as I arrived in Japan, I checked into my hotel and took a long nap. (I had finally finished the book I was reading and it was amazing). I had to figure out the exchange rate to the local currency, which is apparently called the
2023-07-19 22:03:00,951 [INFO] Target --> yen
2023-07-19 22:03:00,951 [INFO] Rational positions --> tensor([[ 0, 50, 51, 40, 48]], device='cuda:0')
2023-07-19 22:03:00,951 [INFO] Rational words -->
2023-07-19 22:03:00,951 [INFO] ['As', ' called', ' the', ' exchange', ' is']
2023-07-19 22:03:00,953 [INFO] 59.json done.
2023-07-19 22:03:00,953 [INFO]
2023-07-19 22:03:00,953 [INFO] ========================
2023-07-19 22:03:00,953 [INFO]
2023-07-19 22:03:00,953 [INFO] Rationalizing 60.json ...
2023-07-19 22:03:00,964 [INFO] Rationalization done in 0.010483503341674805
2023-07-19 22:03:00,964 [INFO]
2023-07-19 22:03:00,964 [INFO]
2023-07-19 22:03:00,965 [INFO] Input --> As soon as I arrived in Korea, I checked into my hotel and took a long nap. (I had finally finished the book I was reading and it was amazing). I had to figure out the exchange rate to the local currency, which is apparently called the
2023-07-19 22:03:00,965 [INFO] Target --> Won
2023-07-19 22:03:00,965 [INFO] Rational positions --> tensor([[ 0, 50, 51, 6, 48]], device='cuda:0')
2023-07-19 22:03:00,965 [INFO] Rational words -->
2023-07-19 22:03:00,965 [INFO] ['As', ' called', ' the', ' Korea', ' is']
2023-07-19 22:03:00,967 [INFO] 60.json done.
2023-07-19 22:03:00,967 [INFO]
2023-07-19 22:03:00,967 [INFO] ========================
2023-07-19 22:03:00,967 [INFO]
2023-07-19 22:03:00,967 [INFO] Rationalizing 61.json ...
2023-07-19 22:03:00,978 [INFO] Rationalization done in 0.010357141494750977
2023-07-19 22:03:00,978 [INFO]
2023-07-19 22:03:00,978 [INFO]
2023-07-19 22:03:00,979 [INFO] Input --> As soon as I arrived in Illinois, I checked into my hotel and watched a movie before falling asleep. (I had a great call with my husband, although I wish it were longer). I was staying in my favorite city,
2023-07-19 22:03:00,979 [INFO] Target --> Chicago
2023-07-19 22:03:00,979 [INFO] Rational positions --> tensor([[ 0, 6, 41, 45, 5]], device='cuda:0')
2023-07-19 22:03:00,979 [INFO] Rational words -->
2023-07-19 22:03:00,979 [INFO] ['As', ' Illinois', ' in', ',', ' in']
2023-07-19 22:03:00,981 [INFO] 61.json done.
2023-07-19 22:03:00,981 [INFO]
2023-07-19 22:03:00,981 [INFO] ========================
2023-07-19 22:03:00,981 [INFO]
2023-07-19 22:03:00,982 [INFO] Rationalizing 62.json ...
2023-07-19 22:03:00,994 [INFO] Rationalization done in 0.011798620223999023
2023-07-19 22:03:00,994 [INFO]
2023-07-19 22:03:00,994 [INFO]
2023-07-19 22:03:00,995 [INFO] Input --> As soon as I arrived in Arizona, I checked into my hotel and watched a movie before falling asleep. (I had a great call with my husband, although I wish it were longer). I was staying in my favorite city,
2023-07-19 22:03:00,997 [INFO] Target --> Phoenix
2023-07-19 22:03:01,000 [INFO] Rational positions --> tensor([[ 0, 6, 45, 41, 5]], device='cuda:0')
2023-07-19 22:03:01,001 [INFO] Rational words -->
2023-07-19 22:03:01,005 [INFO] ['As', ' Arizona', ',', ' in', ' in']
2023-07-19 22:03:01,009 [INFO] 62.json done.
2023-07-19 22:03:01,010 [INFO]
2023-07-19 22:03:01,010 [INFO] ========================
2023-07-19 22:03:01,010 [INFO]
2023-07-19 22:03:01,010 [INFO] Rationalizing 63.json ...
2023-07-19 22:03:01,022 [INFO] Rationalization done in 0.011662483215332031
2023-07-19 22:03:01,022 [INFO]
2023-07-19 22:03:01,022 [INFO]
2023-07-19 22:03:01,023 [INFO] Input --> As soon as I arrived in Texas, I checked into my hotel and watched a movie before falling asleep. (I had a great call with my husband, although I wish it were longer). I was staying in my favorite city,
2023-07-19 22:03:01,024 [INFO] Target --> Austin
2023-07-19 22:03:01,027 [INFO] Rational positions --> tensor([[ 0, 6, 41, 45, 5]], device='cuda:0')
2023-07-19 22:03:01,028 [INFO] Rational words -->
2023-07-19 22:03:01,032 [INFO] ['As', ' Texas', ' in', ',', ' in']
2023-07-19 22:03:01,037 [INFO] 63.json done.
2023-07-19 22:03:01,037 [INFO]
2023-07-19 22:03:01,037 [INFO] ========================
2023-07-19 22:03:01,037 [INFO]
2023-07-19 22:03:01,037 [INFO] Rationalizing 64.json ...
2023-07-19 22:03:01,048 [INFO] Rationalization done in 0.010371208190917969
2023-07-19 22:03:01,048 [INFO]
2023-07-19 22:03:01,048 [INFO]
2023-07-19 22:03:01,049 [INFO] Input --> As soon as I arrived in Massachusetts, I checked into my hotel and watched a movie before falling asleep. (I had a great call with my husband, although I wish it were longer). I was staying in my favorite city,
2023-07-19 22:03:01,051 [INFO] Target --> Boston
2023-07-19 22:03:01,054 [INFO] Rational positions --> tensor([[ 0, 6, 41, 45, 5]], device='cuda:0')
2023-07-19 22:03:01,055 [INFO] Rational words -->
2023-07-19 22:03:01,058 [INFO] ['As', ' Massachusetts', ' in', ',', ' in']
2023-07-19 22:03:01,064 [INFO] 64.json done.
2023-07-19 22:03:01,064 [INFO]
2023-07-19 22:03:01,064 [INFO] ========================
2023-07-19 22:03:01,064 [INFO]
2023-07-19 22:03:01,064 [INFO] Rationalizing 65.json ...
2023-07-19 22:03:01,074 [INFO] Rationalization done in 0.010298728942871094
2023-07-19 22:03:01,074 [INFO]
2023-07-19 22:03:01,074 [INFO]
2023-07-19 22:03:01,076 [INFO] Input --> As soon as I arrived in Colorado, I checked into my hotel and watched a movie before falling asleep. (I had a great call with my husband, although I wish it were longer). I was staying in my favorite city,
2023-07-19 22:03:01,077 [INFO] Target --> Denver
2023-07-19 22:03:01,080 [INFO] Rational positions --> tensor([[ 0, 6, 41, 45, 10]], device='cuda:0')
2023-07-19 22:03:01,081 [INFO] Rational words -->
2023-07-19 22:03:01,084 [INFO] ['As', ' Colorado', ' in', ',', ' into']
2023-07-19 22:03:01,089 [INFO] 65.json done.
2023-07-19 22:03:01,089 [INFO]
2023-07-19 22:03:01,089 [INFO] ========================
2023-07-19 22:03:01,089 [INFO]
2023-07-19 22:03:01,089 [INFO] Rationalizing 66.json ...
2023-07-19 22:03:01,100 [INFO] Rationalization done in 0.010568618774414062
2023-07-19 22:03:01,100 [INFO]
2023-07-19 22:03:01,100 [INFO]
2023-07-19 22:03:01,101 [INFO] Input --> As soon as I arrived in Tennessee, I checked into my hotel and watched a movie before falling asleep. (I had a great call with my husband, although I wish it were longer). I was staying in my favorite city,
2023-07-19 22:03:01,103 [INFO] Target --> Nashville
2023-07-19 22:03:01,105 [INFO] Rational positions --> tensor([[ 0, 6, 41, 45, 10]], device='cuda:0')
2023-07-19 22:03:01,106 [INFO] Rational words -->
2023-07-19 22:03:01,108 [INFO] ['As', ' Tennessee', ' in', ',', ' into']
2023-07-19 22:03:01,115 [INFO] 66.json done.
2023-07-19 22:03:01,115 [INFO]
2023-07-19 22:03:01,115 [INFO] ========================
2023-07-19 22:03:01,115 [INFO]
2023-07-19 22:03:01,115 [INFO] Rationalizing 67.json ...
2023-07-19 22:03:01,126 [INFO] Rationalization done in 0.010304450988769531
2023-07-19 22:03:01,126 [INFO]
2023-07-19 22:03:01,126 [INFO]
2023-07-19 22:03:01,127 [INFO] Input --> As soon as I arrived in Oregon, I checked into my hotel and watched a movie before falling asleep. (I had a great call with my husband, although I wish it were longer). I was staying in my favorite city,
2023-07-19 22:03:01,127 [INFO] Target --> Portland
2023-07-19 22:03:01,127 [INFO] Rational positions --> tensor([[ 0, 6, 41, 45, 5]], device='cuda:0')
2023-07-19 22:03:01,127 [INFO] Rational words -->
2023-07-19 22:03:01,127 [INFO] ['As', ' Oregon', ' in', ',', ' in']
2023-07-19 22:03:01,129 [INFO] 67.json done.
2023-07-19 22:03:01,129 [INFO]
2023-07-19 22:03:01,129 [INFO] ========================
2023-07-19 22:03:01,129 [INFO]
2023-07-19 22:03:01,129 [INFO] Rationalizing 68.json ...
2023-07-19 22:03:01,140 [INFO] Rationalization done in 0.010532379150390625
2023-07-19 22:03:01,140 [INFO]
2023-07-19 22:03:01,140 [INFO]
2023-07-19 22:03:01,141 [INFO] Input --> As soon as I arrived in Georgia, I checked into my hotel and watched a movie before falling asleep. (I had a great call with my husband, although I wish it were longer). I was staying in my favorite city,
2023-07-19 22:03:01,143 [INFO] Target --> Atlanta
2023-07-19 22:03:01,145 [INFO] Rational positions --> tensor([[ 0, 6, 41, 45, 5]], device='cuda:0')
2023-07-19 22:03:01,146 [INFO] Rational words -->
2023-07-19 22:03:01,149 [INFO] ['As', ' Georgia', ' in', ',', ' in']
2023-07-19 22:03:01,155 [INFO] 68.json done.
2023-07-19 22:03:01,155 [INFO]
2023-07-19 22:03:01,155 [INFO] ========================
2023-07-19 22:03:01,155 [INFO]
2023-07-19 22:03:01,155 [INFO] Rationalizing 69.json ...
2023-07-19 22:03:01,166 [INFO] Rationalization done in 0.010689496994018555
2023-07-19 22:03:01,166 [INFO]
2023-07-19 22:03:01,166 [INFO]
2023-07-19 22:03:01,167 [INFO] Input --> As soon as I arrived in Nebraska, I checked into my hotel and watched a movie before falling asleep. (I had a great call with my husband, although I wish it were longer). I was staying in my favorite city,
2023-07-19 22:03:01,167 [INFO] Target --> Omaha
2023-07-19 22:03:01,167 [INFO] Rational positions --> tensor([[ 0, 6, 45, 41, 5]], device='cuda:0')
2023-07-19 22:03:01,167 [INFO] Rational words -->
2023-07-19 22:03:01,167 [INFO] ['As', ' Nebraska', ',', ' in', ' in']
2023-07-19 22:03:01,169 [INFO] 69.json done.
2023-07-19 22:03:01,169 [INFO]
2023-07-19 22:03:01,169 [INFO] ========================
2023-07-19 22:03:01,169 [INFO]
2023-07-19 22:03:01,169 [INFO] Rationalizing 70.json ...
2023-07-19 22:03:01,180 [INFO] Rationalization done in 0.010204792022705078
2023-07-19 22:03:01,180 [INFO]
2023-07-19 22:03:01,180 [INFO]
2023-07-19 22:03:01,181 [INFO] Input --> As soon as I arrived in Florida, I checked into my hotel and watched a movie before falling asleep. (I had a great call with my husband, although I wish it were longer). I was staying in my favorite city,
2023-07-19 22:03:01,182 [INFO] Target --> Miami
2023-07-19 22:03:01,185 [INFO] Rational positions --> tensor([[ 0, 6, 41, 45, 5]], device='cuda:0')
2023-07-19 22:03:01,186 [INFO] Rational words -->
2023-07-19 22:03:01,189 [INFO] ['As', ' Florida', ' in', ',', ' in']
2023-07-19 22:03:01,195 [INFO] 70.json done.
2023-07-19 22:03:01,195 [INFO]
2023-07-19 22:03:01,195 [INFO] ========================
2023-07-19 22:03:01,195 [INFO]
2023-07-19 22:03:01,195 [INFO] Rationalizing 71.json ...
2023-07-19 22:03:01,206 [INFO] Rationalization done in 0.01079559326171875
2023-07-19 22:03:01,206 [INFO]
2023-07-19 22:03:01,206 [INFO]
2023-07-19 22:03:01,207 [INFO] Input --> As soon as I arrived in Hawaii, I checked into my hotel and watched a movie before falling asleep. (I had a great call with my husband, although I wish it were longer). I was staying in my favorite city,
2023-07-19 22:03:01,209 [INFO] Target --> Honolulu
2023-07-19 22:03:01,211 [INFO] Rational positions --> tensor([[ 0, 6, 45, 41, 10]], device='cuda:0')
2023-07-19 22:03:01,212 [INFO] Rational words -->
2023-07-19 22:03:01,215 [INFO] ['As', ' Hawaii', ',', ' in', ' into']
2023-07-19 22:03:01,220 [INFO] 71.json done.
2023-07-19 22:03:01,221 [INFO]
2023-07-19 22:03:01,221 [INFO] ========================
2023-07-19 22:03:01,221 [INFO]
2023-07-19 22:03:01,221 [INFO] Rationalizing 72.json ...
2023-07-19 22:03:01,232 [INFO] Rationalization done in 0.010963678359985352
2023-07-19 22:03:01,232 [INFO]
2023-07-19 22:03:01,232 [INFO]
2023-07-19 22:03:01,233 [INFO] Input --> As soon as I arrived in Alaska, I checked into my hotel and watched a movie before falling asleep. (I had a great call with my husband, although I wish it were longer). I was staying in my favorite city,
2023-07-19 22:03:01,233 [INFO] Target --> Anchorage
2023-07-19 22:03:01,233 [INFO] Rational positions --> tensor([[ 0, 6, 45, 41, 10]], device='cuda:0')
2023-07-19 22:03:01,233 [INFO] Rational words -->
2023-07-19 22:03:01,233 [INFO] ['As', ' Alaska', ',', ' in', ' into']
2023-07-19 22:03:01,235 [INFO] 72.json done.
2023-07-19 22:03:01,235 [INFO]
2023-07-19 22:03:01,235 [INFO] ========================
2023-07-19 22:03:01,235 [INFO]
2023-07-19 22:03:01,235 [INFO] Rationalizing 73.json ...
2023-07-19 22:03:01,246 [INFO] Rationalization done in 0.010590076446533203
2023-07-19 22:03:01,246 [INFO]
2023-07-19 22:03:01,246 [INFO]
2023-07-19 22:03:01,248 [INFO] Input --> As soon as I arrived in Wisconsin, I checked into my hotel and watched a movie before falling asleep. (I had a great call with my husband, although I wish it were longer). I was staying in my favorite city,
2023-07-19 22:03:01,249 [INFO] Target --> Madison
2023-07-19 22:03:01,252 [INFO] Rational positions --> tensor([[ 0, 6, 45, 41, 5]], device='cuda:0')
2023-07-19 22:03:01,252 [INFO] Rational words -->
2023-07-19 22:03:01,255 [INFO] ['As', ' Wisconsin', ',', ' in', ' in']
2023-07-19 22:03:01,261 [INFO] 73.json done.
2023-07-19 22:03:01,261 [INFO]
2023-07-19 22:03:01,261 [INFO] ========================
2023-07-19 22:03:01,261 [INFO]
2023-07-19 22:03:01,261 [INFO] Rationalizing 74.json ...
2023-07-19 22:03:01,272 [INFO] Rationalization done in 0.010575294494628906
2023-07-19 22:03:01,272 [INFO]
2023-07-19 22:03:01,272 [INFO]
2023-07-19 22:03:01,273 [INFO] Input --> As soon as I arrived in Nevada, I checked into my hotel and watched a movie before falling asleep. (I had a great call with my husband, although I wish it were longer). I was staying in my favorite city,
2023-07-19 22:03:01,275 [INFO] Target --> Reno
2023-07-19 22:03:01,278 [INFO] Rational positions --> tensor([[ 0, 6, 45, 41, 10]], device='cuda:0')
2023-07-19 22:03:01,278 [INFO] Rational words -->
2023-07-19 22:03:01,282 [INFO] ['As', ' Nevada', ',', ' in', ' into']
2023-07-19 22:03:01,287 [INFO] 74.json done.
2023-07-19 22:03:01,287 [INFO]
2023-07-19 22:03:01,287 [INFO] ========================
2023-07-19 22:03:01,287 [INFO]
2023-07-19 22:03:01,287 [INFO] Rationalizing 75.json ...
2023-07-19 22:03:01,298 [INFO] Rationalization done in 0.011036396026611328
2023-07-19 22:03:01,298 [INFO]
2023-07-19 22:03:01,298 [INFO]
2023-07-19 22:03:01,299 [INFO] Input --> I initially invited my brother, who gladly accepted my invitation. (My favorite song just came on, so I was able to relax). When I learned that women were allowed, I went ahead and also invited my
2023-07-19 22:03:01,301 [INFO] Target --> sister
2023-07-19 22:03:01,304 [INFO] Rational positions --> tensor([[ 0, 40, 4, 31, 5]], device='cuda:0')
2023-07-19 22:03:01,304 [INFO] Rational words -->
2023-07-19 22:03:01,307 [INFO] ['I', ' invited', ' brother', ' women', ',']
2023-07-19 22:03:01,312 [INFO] 75.json done.
2023-07-19 22:03:01,312 [INFO]
2023-07-19 22:03:01,312 [INFO] ========================
2023-07-19 22:03:01,312 [INFO]
2023-07-19 22:03:01,312 [INFO] Rationalizing 76.json ...
2023-07-19 22:03:01,323 [INFO] Rationalization done in 0.010910987854003906
2023-07-19 22:03:01,324 [INFO]
2023-07-19 22:03:01,324 [INFO]
2023-07-19 22:03:01,324 [INFO] Input --> I initially invited my brothers, who gladly accepted my invitation. (My favorite song just came on, so I was able to relax). When I learned that women were allowed, I went ahead and also invited my
2023-07-19 22:03:01,324 [INFO] Target --> sisters
2023-07-19 22:03:01,325 [INFO] Rational positions --> tensor([[ 0, 40, 4, 31, 3]], device='cuda:0')
2023-07-19 22:03:01,325 [INFO] Rational words -->
2023-07-19 22:03:01,325 [INFO] ['I', ' invited', ' brothers', ' women', ' my']
2023-07-19 22:03:01,326 [INFO] 76.json done.
2023-07-19 22:03:01,326 [INFO]
2023-07-19 22:03:01,326 [INFO] ========================