-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlstm.log
More file actions
4204 lines (3184 loc) · 404 KB
/
lstm.log
File metadata and controls
4204 lines (3184 loc) · 404 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2018-12-09 15:24:33,976 - lstmimpl - INFO - =========================Execution Starts===========================
2018-12-09 15:24:33,986 - lstmimpl - INFO - data has 5000 sentences, 3812 unique words.
2018-12-09 15:24:33,995 - lstmimpl - INFO - data has 5000 sentences, 3096 unique words.
2018-12-09 15:24:34,741 - lstmimpl - INFO - Epoch: 0, Iteration: 0, Encoder Loss: 41.230453453421376, Decoder Loss: 48.22787079176671, Learning Rate: 0.1
2018-12-09 15:24:34,745 - lstmimpl - INFO - Testing Translate: German to English
2018-12-09 15:24:34,746 - lstmimpl - INFO - German: ich habe ein buch dexp <eos>
2018-12-09 15:24:34,770 - lstmimpl - INFO - Probabilites for word buch : {}
2018-12-09 15:24:34,770 - lstmimpl - INFO - English: <eos>
2018-12-09 15:24:34,770 - lstmimpl - INFO - German: danke fur ihre helfen dexp <eos>
2018-12-09 15:24:34,796 - lstmimpl - INFO - Probabilites for word helfen : {}
2018-12-09 15:24:34,796 - lstmimpl - INFO - English: <eos>
2018-12-09 15:24:34,796 - lstmimpl - INFO - German: ich habe ein fahrrad dexp <eos>
2018-12-09 15:24:34,823 - lstmimpl - INFO - Probabilites for word fahrrad : {}
2018-12-09 15:24:34,823 - lstmimpl - INFO - English: <eos>
2018-12-09 15:24:34,824 - lstmimpl - INFO - German: er ist gut dexp dexp <eos>
2018-12-09 15:24:34,864 - lstmimpl - INFO - Probabilites for word dexp : {}
2018-12-09 15:24:34,865 - lstmimpl - INFO - English: <eos>
2018-12-09 15:24:34,865 - lstmimpl - INFO - German: hab ich nicht dexp dexp <eos>
2018-12-09 15:24:34,901 - lstmimpl - INFO - Probabilites for word dexp : {}
2018-12-09 15:24:34,903 - lstmimpl - INFO - English: <eos>
2018-12-09 15:24:34,906 - lstmimpl - INFO - German: ich hat dexp dexp dexp <eos>
2018-12-09 15:24:34,989 - lstmimpl - INFO - Probabilites for word dexp : {}
2018-12-09 15:24:34,991 - lstmimpl - INFO - English: <eos>
2018-12-09 15:24:34,992 - lstmimpl - INFO - German: ich war glucklich dexp dexp <eos>
2018-12-09 15:24:35,021 - lstmimpl - INFO - Probabilites for word dexp : {}
2018-12-09 15:24:35,026 - lstmimpl - INFO - English: <eos>
2018-12-09 15:24:35,031 - lstmimpl - INFO - German: ich liebe die sonne dexp <eos>
2018-12-09 15:24:35,100 - lstmimpl - INFO - Probabilites for word sonne : {}
2018-12-09 15:24:35,100 - lstmimpl - INFO - English: <eos>
2018-12-09 15:24:35,100 - lstmimpl - INFO - German: kann es das sein dexp <eos>
2018-12-09 15:24:35,121 - lstmimpl - INFO - Probabilites for word sein : {}
2018-12-09 15:24:35,122 - lstmimpl - INFO - English: <eos>
2018-12-09 15:24:35,123 - lstmimpl - INFO - German: das ist unnutz dexp dexp <eos>
2018-12-09 15:24:35,145 - lstmimpl - INFO - Probabilites for word dexp : {}
2018-12-09 15:24:35,147 - lstmimpl - INFO - English: <eos>
2018-12-09 15:24:35,147 - lstmimpl - INFO - German: er begann zu weinen dexp <eos>
2018-12-09 15:24:35,172 - lstmimpl - INFO - Probabilites for word weinen : {}
2018-12-09 15:24:35,173 - lstmimpl - INFO - English: <eos>
2018-12-09 15:24:35,173 - lstmimpl - INFO - German: die pause ist vorbei dexp <eos>
2018-12-09 15:24:35,195 - lstmimpl - INFO - Probabilites for word vorbei : {}
2018-12-09 15:24:35,197 - lstmimpl - INFO - English: <eos>
2018-12-09 15:24:35,197 - lstmimpl - INFO - German: wie du willst dexp dexp <eos>
2018-12-09 15:24:35,221 - lstmimpl - INFO - Probabilites for word dexp : {}
2018-12-09 15:24:35,223 - lstmimpl - INFO - English: <eos>
2018-12-09 15:24:35,223 - lstmimpl - INFO - German: die vater arbeiten dexp dexp <eos>
2018-12-09 15:24:35,245 - lstmimpl - INFO - Probabilites for word dexp : {}
2018-12-09 15:24:35,246 - lstmimpl - INFO - English: <eos>
2018-12-09 15:24:35,247 - lstmimpl - INFO - German: wir helfen euch aus dexp <eos>
2018-12-09 15:24:35,271 - lstmimpl - INFO - Probabilites for word aus : {}
2018-12-09 15:24:35,272 - lstmimpl - INFO - English: <eos>
2018-12-09 15:24:35,272 - lstmimpl - INFO - German: tom gibt nicht auf dexp <eos>
2018-12-09 15:24:35,294 - lstmimpl - INFO - Probabilites for word auf : {}
2018-12-09 15:24:35,296 - lstmimpl - INFO - English: <eos>
2018-12-09 15:24:35,296 - lstmimpl - INFO - German: ich mochte es nicht dexp <eos>
2018-12-09 15:24:35,319 - lstmimpl - INFO - Probabilites for word nicht : {}
2018-12-09 15:24:35,320 - lstmimpl - INFO - English: <eos>
2018-12-09 15:24:35,321 - lstmimpl - INFO - German: ich war nicht enttauscht dexp <eos>
2018-12-09 15:24:35,347 - lstmimpl - INFO - Probabilites for word enttauscht : {}
2018-12-09 15:24:35,348 - lstmimpl - INFO - English: <eos>
2018-12-09 15:24:35,349 - lstmimpl - INFO - German: das wasser ist hei dexp <eos>
2018-12-09 15:24:35,373 - lstmimpl - INFO - Probabilites for word hei : {}
2018-12-09 15:24:35,374 - lstmimpl - INFO - English: <eos>
2018-12-09 15:24:35,375 - lstmimpl - INFO - German: wer ist tom dexp dexp <eos>
2018-12-09 15:24:35,405 - lstmimpl - INFO - Probabilites for word dexp : {}
2018-12-09 15:24:35,407 - lstmimpl - INFO - English: <eos>
2018-12-09 15:29:44,739 - lstmimpl - INFO - Epoch: 0, Iteration: 500, Encoder Loss: 20.852513520577908, Decoder Loss: 21.457975121576613, Learning Rate: 0.1
2018-12-09 15:29:44,740 - lstmimpl - INFO - Testing Translate: German to English
2018-12-09 15:29:44,779 - lstmimpl - INFO - German: ich habe ein buch dexp <eos>
2018-12-09 15:29:44,826 - lstmimpl - INFO - Probabilites for word buch : {'song': 0.010986265647792775, 'sentence': 0.0038404648229628763, 'hand': 0.0037258080990188384, 'woman': 0.003567955443161255, 'well': 0.0030557052482328936}
2018-12-09 15:29:44,830 - lstmimpl - INFO - English: i is a song enxp <eos>
2018-12-09 15:29:44,836 - lstmimpl - INFO - German: danke fur ihre helfen dexp <eos>
2018-12-09 15:29:44,901 - lstmimpl - INFO - Probabilites for word helfen : {'song': 0.010788965296431498, 'sentence': 0.00374965926604878, 'hand': 0.0036384018979368957, 'woman': 0.003471505595068792, 'well': 0.002991811172151638}
2018-12-09 15:29:44,911 - lstmimpl - INFO - English: i is a song enxp <eos>
2018-12-09 15:29:44,913 - lstmimpl - INFO - German: ich habe ein fahrrad dexp <eos>
2018-12-09 15:29:44,978 - lstmimpl - INFO - Probabilites for word fahrrad : {'song': 0.010601553075719415, 'sentence': 0.0037303594226404746, 'hand': 0.003570075528180643, 'woman': 0.0034577596088012493, 'well': 0.0028902444792959416}
2018-12-09 15:29:44,978 - lstmimpl - INFO - English: i is a song enxp <eos>
2018-12-09 15:29:44,979 - lstmimpl - INFO - German: er ist gut dexp dexp <eos>
2018-12-09 15:29:45,138 - lstmimpl - INFO - Probabilites for word dexp : {'song': 0.0119401514750285, 'enxp': 0.008012302642777169, 'hand': 0.003919224976176313, 'well': 0.0037932302805030464, 'sentence': 0.003625720345764932}
2018-12-09 15:29:45,139 - lstmimpl - INFO - English: i is a song enxp <eos>
2018-12-09 15:29:45,139 - lstmimpl - INFO - German: hab ich nicht dexp dexp <eos>
2018-12-09 15:29:45,244 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.016393021073279536, 'song': 0.011393454645516199, 'well': 0.003876282459743137, 'hand': 0.0038193694721464677, 'dead': 0.00380248154150295}
2018-12-09 15:29:45,245 - lstmimpl - INFO - English: i is a enxp enxp <eos>
2018-12-09 15:29:45,245 - lstmimpl - INFO - German: ich hat dexp dexp dexp <eos>
2018-12-09 15:29:45,312 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.10679513385494374, 'time': 0.008677583209479546, 'song': 0.0073953918779636535, 'dead': 0.006412376462118776, 'too': 0.0058952718823205115}
2018-12-09 15:29:45,314 - lstmimpl - INFO - English: i is a enxp enxp <eos>
2018-12-09 15:29:45,314 - lstmimpl - INFO - German: ich war glucklich dexp dexp <eos>
2018-12-09 15:29:45,426 - lstmimpl - INFO - Probabilites for word dexp : {'song': 0.011770770657239568, 'enxp': 0.009417570324908005, 'hand': 0.00388093316677279, 'well': 0.0037968220719859953, 'sentence': 0.0035500926897265206}
2018-12-09 15:29:45,428 - lstmimpl - INFO - English: i is a song enxp <eos>
2018-12-09 15:29:45,429 - lstmimpl - INFO - German: ich liebe die sonne dexp <eos>
2018-12-09 15:29:45,537 - lstmimpl - INFO - Probabilites for word sonne : {'song': 0.010153425813677858, 'sentence': 0.003625666307212948, 'hand': 0.0035101871812424166, 'woman': 0.003353477004224159, 'sun': 0.0028947875515027764}
2018-12-09 15:29:45,539 - lstmimpl - INFO - English: i is a song enxp <eos>
2018-12-09 15:29:45,540 - lstmimpl - INFO - German: kann es das sein dexp <eos>
2018-12-09 15:29:45,626 - lstmimpl - INFO - Probabilites for word sein : {'song': 0.00969810565559367, 'sentence': 0.0033280060211124405, 'hand': 0.0031681260230091456, 'woman': 0.0030630863872776006, 'sun': 0.0028441525701407267}
2018-12-09 15:29:45,628 - lstmimpl - INFO - English: i is a song enxp <eos>
2018-12-09 15:29:45,629 - lstmimpl - INFO - German: das ist unnutz dexp dexp <eos>
2018-12-09 15:29:45,723 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.01369407082645219, 'song': 0.011565853681343566, 'well': 0.0038673017327178687, 'hand': 0.003856982812984863, 'dead': 0.00356605223819023}
2018-12-09 15:29:45,724 - lstmimpl - INFO - English: i is a enxp enxp <eos>
2018-12-09 15:29:45,724 - lstmimpl - INFO - German: er begann zu weinen dexp <eos>
2018-12-09 15:29:45,833 - lstmimpl - INFO - Probabilites for word weinen : {'song': 0.010137250904544318, 'sentence': 0.0035904868342598252, 'hand': 0.0034664070382950324, 'woman': 0.0033224497997335263, 'well': 0.002790768348444424}
2018-12-09 15:29:45,834 - lstmimpl - INFO - English: i is a song enxp <eos>
2018-12-09 15:29:45,835 - lstmimpl - INFO - German: die pause ist vorbei dexp <eos>
2018-12-09 15:29:45,914 - lstmimpl - INFO - Probabilites for word vorbei : {'song': 0.01075573145034626, 'sentence': 0.003625922061908349, 'hand': 0.0035451741400352684, 'woman': 0.003357849099151214, 'well': 0.0029949946865265244}
2018-12-09 15:29:45,916 - lstmimpl - INFO - English: i is a song enxp <eos>
2018-12-09 15:29:45,917 - lstmimpl - INFO - German: wie du willst dexp dexp <eos>
2018-12-09 15:29:45,984 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.049526009874509495, 'song': 0.00950852206404019, 'time': 0.00628778583004464, 'dead': 0.005390731229051581, 'too': 0.004590900102271469}
2018-12-09 15:29:45,987 - lstmimpl - INFO - English: i is a enxp enxp <eos>
2018-12-09 15:29:45,988 - lstmimpl - INFO - German: die vater arbeiten dexp dexp <eos>
2018-12-09 15:29:46,071 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.02680040041933092, 'song': 0.010467135306436299, 'time': 0.0047716001618130265, 'dead': 0.004455652215601895, 'well': 0.003811796072744003}
2018-12-09 15:29:46,074 - lstmimpl - INFO - English: i is a enxp enxp <eos>
2018-12-09 15:29:46,075 - lstmimpl - INFO - German: wir helfen euch aus dexp <eos>
2018-12-09 15:29:46,203 - lstmimpl - INFO - Probabilites for word aus : {'song': 0.011154371010099695, 'sentence': 0.0038742339176734996, 'hand': 0.0038310449634326228, 'woman': 0.0036010667361635468, 'well': 0.003171843684170698}
2018-12-09 15:29:46,206 - lstmimpl - INFO - English: i is a song enxp <eos>
2018-12-09 15:29:46,207 - lstmimpl - INFO - German: tom gibt nicht auf dexp <eos>
2018-12-09 15:29:46,328 - lstmimpl - INFO - Probabilites for word auf : {'song': 0.010737763605068947, 'sentence': 0.0037953755522276865, 'hand': 0.0037069065290747955, 'woman': 0.0035199815684694973, 'well': 0.0029949210928426956}
2018-12-09 15:29:46,330 - lstmimpl - INFO - English: i is a song enxp <eos>
2018-12-09 15:29:46,331 - lstmimpl - INFO - German: ich mochte es nicht dexp <eos>
2018-12-09 15:29:46,468 - lstmimpl - INFO - Probabilites for word nicht : {'song': 0.01103827090680454, 'sentence': 0.0037895496764121547, 'hand': 0.0036572970434494605, 'woman': 0.003515124725487008, 'well': 0.0030290425694566897}
2018-12-09 15:29:46,470 - lstmimpl - INFO - English: i is a song enxp <eos>
2018-12-09 15:29:46,471 - lstmimpl - INFO - German: ich war nicht enttauscht dexp <eos>
2018-12-09 15:29:46,573 - lstmimpl - INFO - Probabilites for word enttauscht : {'song': 0.011550843972882014, 'sentence': 0.003922468310888908, 'hand': 0.0038232503776273047, 'woman': 0.003652687281054217, 'well': 0.003214102388985654}
2018-12-09 15:29:46,575 - lstmimpl - INFO - English: i is a song enxp <eos>
2018-12-09 15:29:46,576 - lstmimpl - INFO - German: das wasser ist hei dexp <eos>
2018-12-09 15:29:46,664 - lstmimpl - INFO - Probabilites for word hei : {'song': 0.010144795182868467, 'sentence': 0.0035977758337580154, 'hand': 0.003494397526346149, 'woman': 0.0033244255535245563, 'sun': 0.0028208628781694004}
2018-12-09 15:29:46,666 - lstmimpl - INFO - English: i is a song enxp <eos>
2018-12-09 15:29:46,667 - lstmimpl - INFO - German: wer ist tom dexp dexp <eos>
2018-12-09 15:29:46,795 - lstmimpl - INFO - Probabilites for word dexp : {'song': 0.012146999974556278, 'enxp': 0.005134301506179061, 'hand': 0.003943850569129095, 'sentence': 0.003750668950893054, 'well': 0.003708824490005877}
2018-12-09 15:29:46,797 - lstmimpl - INFO - English: i is a song enxp <eos>
2018-12-09 15:34:38,252 - lstmimpl - INFO - Epoch: 0, Iteration: 1000, Encoder Loss: 28.058948486686322, Decoder Loss: 22.985727315214152, Learning Rate: 0.1
2018-12-09 15:34:38,255 - lstmimpl - INFO - Testing Translate: German to English
2018-12-09 15:34:38,552 - lstmimpl - INFO - German: ich habe ein buch dexp <eos>
2018-12-09 15:34:38,586 - lstmimpl - INFO - Probabilites for word buch : {'song': 0.006960101908299001, 'black': 0.003203726200541923, 'alone': 0.002513451491720593, 'job': 0.002381759870854849, 'hand': 0.0023700378040186747}
2018-12-09 15:34:38,587 - lstmimpl - INFO - English: i is a song enxp <eos>
2018-12-09 15:34:38,587 - lstmimpl - INFO - German: danke fur ihre helfen dexp <eos>
2018-12-09 15:34:38,621 - lstmimpl - INFO - Probabilites for word helfen : {'song': 0.006647377919015926, 'black': 0.003270063871988483, 'alone': 0.0027178641198089427, 'there': 0.0024913112262203974, 'job': 0.002353647004353807}
2018-12-09 15:34:38,621 - lstmimpl - INFO - English: i is a song enxp <eos>
2018-12-09 15:34:38,622 - lstmimpl - INFO - German: ich habe ein fahrrad dexp <eos>
2018-12-09 15:34:38,657 - lstmimpl - INFO - Probabilites for word fahrrad : {'song': 0.0068578669806710745, 'black': 0.003206915191150799, 'alone': 0.0026486588147865723, 'there': 0.002358605362827683, 'job': 0.0022878153817946522}
2018-12-09 15:34:38,658 - lstmimpl - INFO - English: i is a song enxp <eos>
2018-12-09 15:34:38,658 - lstmimpl - INFO - German: er ist gut dexp dexp <eos>
2018-12-09 15:34:38,692 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.9998182254100862, 'me': 5.726124191237445e-05, '<eos>': 2.127856958894114e-05, 'tom': 1.6808362730083243e-05, 'there': 7.314031432783648e-06}
2018-12-09 15:34:38,693 - lstmimpl - INFO - English: i is enxp enxp enxp <eos>
2018-12-09 15:34:38,693 - lstmimpl - INFO - German: hab ich nicht dexp dexp <eos>
2018-12-09 15:34:38,727 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.9997617422916597, 'me': 7.390253343619266e-05, '<eos>': 2.6389059517610564e-05, 'tom': 2.0272785417444168e-05, 'there': 9.54953860194377e-06}
2018-12-09 15:34:38,727 - lstmimpl - INFO - English: i is enxp enxp enxp <eos>
2018-12-09 15:34:38,728 - lstmimpl - INFO - German: ich hat dexp dexp dexp <eos>
2018-12-09 15:34:38,763 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.9999286550342782, 'me': 2.2644653961155145e-05, 'tom': 9.042939633421588e-06, '<eos>': 6.669715431192507e-06, 'there': 2.955090336150394e-06}
2018-12-09 15:34:38,764 - lstmimpl - INFO - English: tom is enxp enxp enxp <eos>
2018-12-09 15:34:38,764 - lstmimpl - INFO - German: ich war glucklich dexp dexp <eos>
2018-12-09 15:34:38,798 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.9997431976767102, 'me': 7.827857773863907e-05, '<eos>': 2.7945438515471223e-05, 'tom': 2.182921590888662e-05, 'there': 1.0417136032328861e-05}
2018-12-09 15:34:38,798 - lstmimpl - INFO - English: i is enxp enxp enxp <eos>
2018-12-09 15:34:38,799 - lstmimpl - INFO - German: ich liebe die sonne dexp <eos>
2018-12-09 15:34:38,833 - lstmimpl - INFO - Probabilites for word sonne : {'song': 0.006584826911081686, 'black': 0.003138319226429947, 'alone': 0.003059401987390553, 'there': 0.002610759418961888, 'traveling': 0.002208488959930467}
2018-12-09 15:34:38,833 - lstmimpl - INFO - English: i is a song enxp <eos>
2018-12-09 15:34:38,834 - lstmimpl - INFO - German: kann es das sein dexp <eos>
2018-12-09 15:34:38,868 - lstmimpl - INFO - Probabilites for word sein : {'song': 0.003984147245965049, 'black': 0.0037546848322873336, 'there': 0.0031746173937304886, 'traveling': 0.0031211412152506966, 'alone': 0.0027402704668843788}
2018-12-09 15:34:38,868 - lstmimpl - INFO - English: i is the song enxp <eos>
2018-12-09 15:34:38,869 - lstmimpl - INFO - German: das ist unnutz dexp dexp <eos>
2018-12-09 15:34:38,903 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.9998067304963586, 'me': 6.110105034604815e-05, '<eos>': 2.2378924410411474e-05, 'tom': 1.7335244668243398e-05, 'there': 7.704591841424635e-06}
2018-12-09 15:34:38,903 - lstmimpl - INFO - English: i is enxp enxp enxp <eos>
2018-12-09 15:34:38,904 - lstmimpl - INFO - German: er begann zu weinen dexp <eos>
2018-12-09 15:34:38,943 - lstmimpl - INFO - Probabilites for word weinen : {'song': 0.0072124346544569585, 'enxp': 0.003197428813982475, 'black': 0.003121419172474223, 'hand': 0.0025864968293951994, 'job': 0.002536123111795679}
2018-12-09 15:34:38,943 - lstmimpl - INFO - English: i is a song enxp <eos>
2018-12-09 15:34:38,944 - lstmimpl - INFO - German: die pause ist vorbei dexp <eos>
2018-12-09 15:34:38,977 - lstmimpl - INFO - Probabilites for word vorbei : {'enxp': 0.05666165524735522, 'song': 0.0071081960671374135, 'books': 0.004117160284252049, 'me': 0.004016339101897979, 'dog': 0.003883459400358666}
2018-12-09 15:34:38,978 - lstmimpl - INFO - English: i is a enxp enxp <eos>
2018-12-09 15:34:38,978 - lstmimpl - INFO - German: wie du willst dexp dexp <eos>
2018-12-09 15:34:39,012 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.9999022317257548, 'me': 3.1691501455047826e-05, '<eos>': 1.343483874713015e-05, 'tom': 1.067144263006454e-05, 'there': 3.7695692330250323e-06}
2018-12-09 15:34:39,013 - lstmimpl - INFO - English: i is enxp enxp enxp <eos>
2018-12-09 15:34:39,013 - lstmimpl - INFO - German: die vater arbeiten dexp dexp <eos>
2018-12-09 15:34:39,047 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.9999475033186939, 'me': 1.6614969868595128e-05, 'tom': 7.302920922128481e-06, '<eos>': 5.185591866317022e-06, 'there': 2.1091588386467016e-06}
2018-12-09 15:34:39,048 - lstmimpl - INFO - English: tom is enxp enxp enxp <eos>
2018-12-09 15:34:39,048 - lstmimpl - INFO - German: wir helfen euch aus dexp <eos>
2018-12-09 15:34:39,084 - lstmimpl - INFO - Probabilites for word aus : {'song': 0.0071916907803603386, 'enxp': 0.004389777761056852, 'black': 0.0030970140215493664, 'hand': 0.0026677420113093856, 'job': 0.0025878501480920066}
2018-12-09 15:34:39,084 - lstmimpl - INFO - English: i is a song enxp <eos>
2018-12-09 15:34:39,085 - lstmimpl - INFO - German: tom gibt nicht auf dexp <eos>
2018-12-09 15:34:39,119 - lstmimpl - INFO - Probabilites for word auf : {'song': 0.006823198845532873, 'black': 0.0033648618389878404, 'alone': 0.0025649451453550287, 'hand': 0.002468914739210386, 'today': 0.002422866793472143}
2018-12-09 15:34:39,119 - lstmimpl - INFO - English: i is a song enxp <eos>
2018-12-09 15:34:39,120 - lstmimpl - INFO - German: ich mochte es nicht dexp <eos>
2018-12-09 15:34:39,155 - lstmimpl - INFO - Probabilites for word nicht : {'song': 0.006950509538025112, 'black': 0.003229518053947867, 'alone': 0.0024675392723735186, 'hand': 0.0024426997575461135, 'job': 0.0024172235520377237}
2018-12-09 15:34:39,155 - lstmimpl - INFO - English: i is a song enxp <eos>
2018-12-09 15:34:39,156 - lstmimpl - INFO - German: ich war nicht enttauscht dexp <eos>
2018-12-09 15:34:39,189 - lstmimpl - INFO - Probabilites for word enttauscht : {'song': 0.007138258357419894, 'black': 0.003142345915750086, 'hand': 0.002479217398310298, 'job': 0.0024532167041494296, 'enxp': 0.002432680563712681}
2018-12-09 15:34:39,190 - lstmimpl - INFO - English: i is a song enxp <eos>
2018-12-09 15:34:39,190 - lstmimpl - INFO - German: das wasser ist hei dexp <eos>
2018-12-09 15:34:39,224 - lstmimpl - INFO - Probabilites for word hei : {'song': 0.006915643491256831, 'black': 0.0032990206067563628, 'hand': 0.0024905013315650593, 'alone': 0.0024812356641895307, 'job': 0.002454766845332757}
2018-12-09 15:34:39,225 - lstmimpl - INFO - English: i is a song enxp <eos>
2018-12-09 15:34:39,226 - lstmimpl - INFO - German: wer ist tom dexp dexp <eos>
2018-12-09 15:34:39,259 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.1219054255079763, 'song': 0.006248860225466328, 'me': 0.005376527566616361, 'there': 0.0046708599210673885, 'dog': 0.004411702994094585}
2018-12-09 15:34:39,260 - lstmimpl - INFO - English: i is a enxp enxp <eos>
2018-12-09 15:39:16,570 - lstmimpl - INFO - Epoch: 0, Iteration: 1500, Encoder Loss: 18.315570005094074, Decoder Loss: 21.994365257276392, Learning Rate: 0.1
2018-12-09 15:39:16,571 - lstmimpl - INFO - Testing Translate: German to English
2018-12-09 15:39:16,876 - lstmimpl - INFO - German: ich habe ein buch dexp <eos>
2018-12-09 15:39:16,910 - lstmimpl - INFO - Probabilites for word buch : {'delicious': 0.00902168150003302, 'doctor': 0.004920825545155979, 'useless': 0.0033532139419648853, 'song': 0.003167141812212697, 'gas': 0.003164030082805646}
2018-12-09 15:39:16,910 - lstmimpl - INFO - English: i have a delicious enxp <eos>
2018-12-09 15:39:16,911 - lstmimpl - INFO - German: danke fur ihre helfen dexp <eos>
2018-12-09 15:39:16,944 - lstmimpl - INFO - Probabilites for word helfen : {'delicious': 0.008812603982158596, 'doctor': 0.0047616379027244785, 'useless': 0.003476554472412399, 'song': 0.0032213154994718022, 'gas': 0.0031339036609445707}
2018-12-09 15:39:16,945 - lstmimpl - INFO - English: i have a delicious enxp <eos>
2018-12-09 15:39:16,945 - lstmimpl - INFO - German: ich habe ein fahrrad dexp <eos>
2018-12-09 15:39:16,979 - lstmimpl - INFO - Probabilites for word fahrrad : {'delicious': 0.008976044747232141, 'doctor': 0.004936277438614044, 'useless': 0.0033375976749561794, 'misanthrope': 0.0031518047088025967, 'song': 0.0031310165925406497}
2018-12-09 15:39:16,979 - lstmimpl - INFO - English: i have a delicious enxp <eos>
2018-12-09 15:39:16,980 - lstmimpl - INFO - German: er ist gut dexp dexp <eos>
2018-12-09 15:39:17,013 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.0427347612515049, 'fast': 0.007405836335241861, 'hand': 0.006838982095692631, 'together': 0.0066593487465389616, 'useless': 0.006022623181019584}
2018-12-09 15:39:17,014 - lstmimpl - INFO - English: tom is very enxp enxp <eos>
2018-12-09 15:39:17,014 - lstmimpl - INFO - German: hab ich nicht dexp dexp <eos>
2018-12-09 15:39:17,048 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.539925651775713, 'together': 0.007064537778055941, 'fast': 0.006504151091633778, 'birds': 0.004411302058839441, 'there': 0.004381470442651603}
2018-12-09 15:39:17,049 - lstmimpl - INFO - English: tom is very enxp enxp <eos>
2018-12-09 15:39:17,049 - lstmimpl - INFO - German: ich hat dexp dexp dexp <eos>
2018-12-09 15:39:17,082 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.9999712388444006, 'tom': 2.201687155752519e-06, 'me': 2.0466801894015354e-06, '<eos>': 1.5341050268366063e-06, 'together': 1.4782885587322205e-06}
2018-12-09 15:39:17,083 - lstmimpl - INFO - English: tom is enxp enxp enxp <eos>
2018-12-09 15:39:17,084 - lstmimpl - INFO - German: ich war glucklich dexp dexp <eos>
2018-12-09 15:39:17,117 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.7903361776162665, 'together': 0.003944005562717401, 'fast': 0.0035157786457579343, 'there': 0.002605661489504583, 'birds': 0.0025642582007385033}
2018-12-09 15:39:17,118 - lstmimpl - INFO - English: tom is very enxp enxp <eos>
2018-12-09 15:39:17,118 - lstmimpl - INFO - German: ich liebe die sonne dexp <eos>
2018-12-09 15:39:17,153 - lstmimpl - INFO - Probabilites for word sonne : {'delicious': 0.009201287196105357, 'doctor': 0.004953345673126937, 'useless': 0.003472589364568895, 'song': 0.003129869344946972, 'misanthrope': 0.0031276367572410833}
2018-12-09 15:39:17,154 - lstmimpl - INFO - English: i have a delicious enxp <eos>
2018-12-09 15:39:17,154 - lstmimpl - INFO - German: kann es das sein dexp <eos>
2018-12-09 15:39:17,188 - lstmimpl - INFO - Probabilites for word sein : {'delicious': 0.009037764812792575, 'doctor': 0.0048375236653651005, 'useless': 0.004318294011969626, 'animals': 0.003278331811769008, 'yes': 0.003151213976009339}
2018-12-09 15:39:17,189 - lstmimpl - INFO - English: i have a delicious enxp <eos>
2018-12-09 15:39:17,189 - lstmimpl - INFO - German: das ist unnutz dexp dexp <eos>
2018-12-09 15:39:17,222 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.04663266915309869, 'fast': 0.0071749631890339815, 'hand': 0.0069377267059948155, 'together': 0.006706826703270373, 'today': 0.006176578338631449}
2018-12-09 15:39:17,223 - lstmimpl - INFO - English: tom is very enxp enxp <eos>
2018-12-09 15:39:17,224 - lstmimpl - INFO - German: er begann zu weinen dexp <eos>
2018-12-09 15:39:17,257 - lstmimpl - INFO - Probabilites for word weinen : {'delicious': 0.007826342134925737, 'doctor': 0.0052274632661914, 'misanthrope': 0.0032486068956061333, 'problem': 0.0032284019367309915, 'door': 0.0030624144643493856}
2018-12-09 15:39:17,258 - lstmimpl - INFO - English: i have a delicious enxp <eos>
2018-12-09 15:39:17,258 - lstmimpl - INFO - German: die pause ist vorbei dexp <eos>
2018-12-09 15:39:17,292 - lstmimpl - INFO - Probabilites for word vorbei : {'enxp': 0.061413777046555436, 'fast': 0.007120632598971007, 'hand': 0.007111522025654001, 'today': 0.006947822222668333, 'together': 0.00692322265049194}
2018-12-09 15:39:17,292 - lstmimpl - INFO - English: tom is very enxp enxp <eos>
2018-12-09 15:39:17,293 - lstmimpl - INFO - German: wie du willst dexp dexp <eos>
2018-12-09 15:39:17,331 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.9999082144362199, 'together': 5.606293380240766e-06, 'me': 4.989690684611571e-06, 'tom': 4.654254863070883e-06, '<eos>': 3.860886678085664e-06}
2018-12-09 15:39:17,331 - lstmimpl - INFO - English: tom is enxp enxp enxp <eos>
2018-12-09 15:39:17,332 - lstmimpl - INFO - German: die vater arbeiten dexp dexp <eos>
2018-12-09 15:39:17,371 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.9999846022254494, 'tom': 1.455628601916355e-06, 'me': 1.1733375158765149e-06, '<eos>': 8.392127572199817e-07, 'together': 6.235088482864568e-07}
2018-12-09 15:39:17,372 - lstmimpl - INFO - English: tom is enxp enxp enxp <eos>
2018-12-09 15:39:17,372 - lstmimpl - INFO - German: wir helfen euch aus dexp <eos>
2018-12-09 15:39:17,406 - lstmimpl - INFO - Probabilites for word aus : {'delicious': 0.008431586305845526, 'doctor': 0.005120954542871793, 'useless': 0.0031679078964775118, 'misanthrope': 0.0031165308695267516, 'problem': 0.0030586627968650372}
2018-12-09 15:39:17,406 - lstmimpl - INFO - English: i have a delicious enxp <eos>
2018-12-09 15:39:17,407 - lstmimpl - INFO - German: tom gibt nicht auf dexp <eos>
2018-12-09 15:39:17,440 - lstmimpl - INFO - Probabilites for word auf : {'enxp': 0.018092570751662644, 'hand': 0.007079535600989589, 'fast': 0.006623465143794026, 'today': 0.00602624844634543, 'together': 0.005678753674230433}
2018-12-09 15:39:17,441 - lstmimpl - INFO - English: tom is very enxp enxp <eos>
2018-12-09 15:39:17,441 - lstmimpl - INFO - German: ich mochte es nicht dexp <eos>
2018-12-09 15:39:17,475 - lstmimpl - INFO - Probabilites for word nicht : {'delicious': 0.005848373275149666, 'doctor': 0.004585995591030757, 'hand': 0.0035092971029780755, 'door': 0.0031872721130746604, 'problem': 0.003127013049609745}
2018-12-09 15:39:17,476 - lstmimpl - INFO - English: i have a delicious enxp <eos>
2018-12-09 15:39:17,476 - lstmimpl - INFO - German: ich war nicht enttauscht dexp <eos>
2018-12-09 15:39:17,509 - lstmimpl - INFO - Probabilites for word enttauscht : {'hand': 0.006775725355117955, 'enxp': 0.006732386624869569, 'fast': 0.005420434747540157, 'wrong': 0.0053859219714195656, 'delicious': 0.005346636661252437}
2018-12-09 15:39:17,510 - lstmimpl - INFO - English: tom is very hand enxp <eos>
2018-12-09 15:39:17,510 - lstmimpl - INFO - German: das wasser ist hei dexp <eos>
2018-12-09 15:39:17,544 - lstmimpl - INFO - Probabilites for word hei : {'delicious': 0.008781499327992829, 'doctor': 0.005259895538467112, 'misanthrope': 0.0032374942536898313, 'useless': 0.003198927202468704, 'problem': 0.0031101902151216185}
2018-12-09 15:39:17,545 - lstmimpl - INFO - English: i have a delicious enxp <eos>
2018-12-09 15:39:17,545 - lstmimpl - INFO - German: wer ist tom dexp dexp <eos>
2018-12-09 15:39:17,578 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.015221649949171792, 'hand': 0.006826432626029425, 'fast': 0.006623461211960144, 'together': 0.005652691043251667, 'today': 0.005633686243500327}
2018-12-09 15:39:17,579 - lstmimpl - INFO - English: tom is very enxp enxp <eos>
2018-12-09 15:43:56,998 - lstmimpl - INFO - Epoch: 0, Iteration: 2000, Encoder Loss: 14.245133911283013, Decoder Loss: 13.581883197736346, Learning Rate: 0.1
2018-12-09 15:43:57,000 - lstmimpl - INFO - Testing Translate: German to English
2018-12-09 15:43:57,001 - lstmimpl - INFO - German: ich habe ein buch dexp <eos>
2018-12-09 15:43:57,034 - lstmimpl - INFO - Probabilites for word buch : {'question': 0.006665794412434657, 'teacher': 0.00626072028681035, 'lot': 0.006114265253078909, 'happy': 0.00550781613896544, 'whore': 0.00395056087331759}
2018-12-09 15:43:57,035 - lstmimpl - INFO - English: i have a question enxp <eos>
2018-12-09 15:43:57,036 - lstmimpl - INFO - German: danke fur ihre helfen dexp <eos>
2018-12-09 15:43:57,069 - lstmimpl - INFO - Probabilites for word helfen : {'question': 0.006427117502085903, 'teacher': 0.006162861326695175, 'lot': 0.006088357771067366, 'happy': 0.005698767075928861, 'whore': 0.0038910522727491786}
2018-12-09 15:43:57,070 - lstmimpl - INFO - English: i have a question enxp <eos>
2018-12-09 15:43:57,070 - lstmimpl - INFO - German: ich habe ein fahrrad dexp <eos>
2018-12-09 15:43:57,104 - lstmimpl - INFO - Probabilites for word fahrrad : {'question': 0.006370842937685369, 'teacher': 0.006109057070080917, 'lot': 0.0058256029593544085, 'happy': 0.005055426935149283, 'song': 0.00393240119351728}
2018-12-09 15:43:57,104 - lstmimpl - INFO - English: i have a question enxp <eos>
2018-12-09 15:43:57,105 - lstmimpl - INFO - German: er ist gut dexp dexp <eos>
2018-12-09 15:43:57,140 - lstmimpl - INFO - Probabilites for word dexp : {'happy': 0.008540751424792797, 'question': 0.007082237876083717, 'lot': 0.006020935041786197, 'teacher': 0.005391097940708286, 'tomorrow': 0.005091728889823653}
2018-12-09 15:43:57,140 - lstmimpl - INFO - English: i have a happy enxp <eos>
2018-12-09 15:43:57,141 - lstmimpl - INFO - German: hab ich nicht dexp dexp <eos>
2018-12-09 15:43:57,174 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.9999272649322056, 'me': 1.7245984572367335e-05, 'tom': 7.748051010562864e-06, '<eos>': 6.533242912588859e-06, 'it': 6.4722263875307624e-06}
2018-12-09 15:43:57,175 - lstmimpl - INFO - English: i am enxp enxp enxp <eos>
2018-12-09 15:43:57,175 - lstmimpl - INFO - German: ich hat dexp dexp dexp <eos>
2018-12-09 15:43:57,209 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.9999347764743708, 'me': 1.4256125939078246e-05, '<eos>': 7.666515950184575e-06, 'tom': 7.13432693145158e-06, 'it': 6.810534221440926e-06}
2018-12-09 15:43:57,209 - lstmimpl - INFO - English: i am enxp enxp enxp <eos>
2018-12-09 15:43:57,210 - lstmimpl - INFO - German: ich war glucklich dexp dexp <eos>
2018-12-09 15:43:57,243 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.9998933302035399, 'me': 2.827436211928886e-05, 'tom': 8.826515220022534e-06, 'it': 7.830611687802033e-06, '<eos>': 7.460262644560251e-06}
2018-12-09 15:43:57,244 - lstmimpl - INFO - English: i am enxp enxp enxp <eos>
2018-12-09 15:43:57,244 - lstmimpl - INFO - German: ich liebe die sonne dexp <eos>
2018-12-09 15:43:57,283 - lstmimpl - INFO - Probabilites for word sonne : {'question': 0.006962602763203383, 'teacher': 0.006444452477158163, 'lot': 0.006338368250439829, 'happy': 0.0059693110439271, 'whore': 0.004091153199434256}
2018-12-09 15:43:57,284 - lstmimpl - INFO - English: i have a question enxp <eos>
2018-12-09 15:43:57,284 - lstmimpl - INFO - German: kann es das sein dexp <eos>
2018-12-09 15:43:57,317 - lstmimpl - INFO - Probabilites for word sein : {'teacher': 0.005468874712473059, 'question': 0.00529263969845284, 'car': 0.0040473705829723195, 'lot': 0.003924562622399751, 'room': 0.0036011367074813994}
2018-12-09 15:43:57,318 - lstmimpl - INFO - English: i have the teacher enxp <eos>
2018-12-09 15:43:57,319 - lstmimpl - INFO - German: das ist unnutz dexp dexp <eos>
2018-12-09 15:43:57,358 - lstmimpl - INFO - Probabilites for word dexp : {'happy': 0.008485250305687947, 'question': 0.006855327339151844, 'tomorrow': 0.005885276399513103, 'lot': 0.005767890271301447, 'enxp': 0.005413853889694544}
2018-12-09 15:43:57,359 - lstmimpl - INFO - English: i have a happy enxp <eos>
2018-12-09 15:43:57,359 - lstmimpl - INFO - German: er begann zu weinen dexp <eos>
2018-12-09 15:43:57,393 - lstmimpl - INFO - Probabilites for word weinen : {'happy': 0.008286210140651838, 'question': 0.00820615446980418, 'lot': 0.007341840397215173, 'teacher': 0.006622700209012819, 'whore': 0.004412628643270584}
2018-12-09 15:43:57,393 - lstmimpl - INFO - English: i have a happy enxp <eos>
2018-12-09 15:43:57,394 - lstmimpl - INFO - German: die pause ist vorbei dexp <eos>
2018-12-09 15:43:57,428 - lstmimpl - INFO - Probabilites for word vorbei : {'happy': 0.009172063370301721, 'question': 0.009144360678428037, 'lot': 0.00796739732608885, 'teacher': 0.006787504651746197, 'whore': 0.004585082859522966}
2018-12-09 15:43:57,429 - lstmimpl - INFO - English: i have a happy enxp <eos>
2018-12-09 15:43:57,429 - lstmimpl - INFO - German: wie du willst dexp dexp <eos>
2018-12-09 15:43:57,463 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.999889321381356, 'me': 2.979543973711933e-05, 'tom': 9.397097421421058e-06, 'it': 8.527848805437732e-06, '<eos>': 8.424402187093687e-06}
2018-12-09 15:43:57,464 - lstmimpl - INFO - English: i am enxp enxp enxp <eos>
2018-12-09 15:43:57,464 - lstmimpl - INFO - German: die vater arbeiten dexp dexp <eos>
2018-12-09 15:43:57,498 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.9999330260399903, 'me': 1.3801776392077799e-05, 'tom': 8.293768327972778e-06, '<eos>': 7.692763236525916e-06, 'it': 7.247282831755205e-06}
2018-12-09 15:43:57,498 - lstmimpl - INFO - English: i am enxp enxp enxp <eos>
2018-12-09 15:43:57,499 - lstmimpl - INFO - German: wir helfen euch aus dexp <eos>
2018-12-09 15:43:57,532 - lstmimpl - INFO - Probabilites for word aus : {'happy': 0.008152793305012628, 'question': 0.007723782991077504, 'lot': 0.006880083496779159, 'teacher': 0.0061241426113791434, 'whore': 0.004124064543481485}
2018-12-09 15:43:57,533 - lstmimpl - INFO - English: i have a happy enxp <eos>
2018-12-09 15:43:57,533 - lstmimpl - INFO - German: tom gibt nicht auf dexp <eos>
2018-12-09 15:43:57,567 - lstmimpl - INFO - Probabilites for word auf : {'enxp': 0.9811339955919743, 'me': 0.0017349799828037667, 'there': 0.0008498061714261123, 'hair': 0.0006463935232420689, 'english': 0.0006186871042011137}
2018-12-09 15:43:57,567 - lstmimpl - INFO - English: i am him enxp enxp <eos>
2018-12-09 15:43:57,568 - lstmimpl - INFO - German: ich mochte es nicht dexp <eos>
2018-12-09 15:43:57,601 - lstmimpl - INFO - Probabilites for word nicht : {'happy': 0.01157472060334894, 'question': 0.00861755443942012, 'lot': 0.006684672974852962, 'teacher': 0.0057403094319698755, 'enxp': 0.00522376134326118}
2018-12-09 15:43:57,602 - lstmimpl - INFO - English: i am a happy enxp <eos>
2018-12-09 15:43:57,602 - lstmimpl - INFO - German: ich war nicht enttauscht dexp <eos>
2018-12-09 15:43:57,636 - lstmimpl - INFO - Probabilites for word enttauscht : {'enxp': 0.03345090130999528, 'happy': 0.010892066770797085, 'tomorrow': 0.008154996837530251, 'question': 0.007355146584387212, 'english': 0.006051297432720344}
2018-12-09 15:43:57,637 - lstmimpl - INFO - English: i am a enxp enxp <eos>
2018-12-09 15:43:57,637 - lstmimpl - INFO - German: das wasser ist hei dexp <eos>
2018-12-09 15:43:57,671 - lstmimpl - INFO - Probabilites for word hei : {'question': 0.007812845890175387, 'teacher': 0.007090069736333138, 'lot': 0.0068969373472264495, 'happy': 0.006208082599591855, 'song': 0.004564239109213491}
2018-12-09 15:43:57,671 - lstmimpl - INFO - English: i have a question enxp <eos>
2018-12-09 15:43:57,672 - lstmimpl - INFO - German: wer ist tom dexp dexp <eos>
2018-12-09 15:43:57,705 - lstmimpl - INFO - Probabilites for word dexp : {'happy': 0.0081572836443339, 'tomorrow': 0.006458193220315034, 'question': 0.00643872240801044, 'enxp': 0.006100678233132565, 'lot': 0.005444391854799893}
2018-12-09 15:43:57,706 - lstmimpl - INFO - English: i have a happy enxp <eos>
2018-12-09 15:48:37,793 - lstmimpl - INFO - Epoch: 0, Iteration: 2500, Encoder Loss: 27.192233320577525, Decoder Loss: 32.343569251827944, Learning Rate: 0.1
2018-12-09 15:48:37,795 - lstmimpl - INFO - Testing Translate: German to English
2018-12-09 15:48:38,089 - lstmimpl - INFO - German: ich habe ein buch dexp <eos>
2018-12-09 15:48:38,152 - lstmimpl - INFO - Probabilites for word buch : {'break': 0.0065995969571553455, 'black': 0.005501992419539724, 'song': 0.0052934819529199375, 'dog': 0.005161190641573331, 'sentence': 0.005046594505417224}
2018-12-09 15:48:38,153 - lstmimpl - INFO - English: i have a break enxp <eos>
2018-12-09 15:48:38,154 - lstmimpl - INFO - German: danke fur ihre helfen dexp <eos>
2018-12-09 15:48:38,187 - lstmimpl - INFO - Probabilites for word helfen : {'lot': 0.006994751816104996, 'sentence': 0.006799030728400477, 'sister': 0.005636760889832232, 'question': 0.005518392536102079, 'eyes': 0.005100044150186356}
2018-12-09 15:48:38,188 - lstmimpl - INFO - English: i have a lot enxp <eos>
2018-12-09 15:48:38,188 - lstmimpl - INFO - German: ich habe ein fahrrad dexp <eos>
2018-12-09 15:48:38,222 - lstmimpl - INFO - Probabilites for word fahrrad : {'break': 0.006560413813389969, 'black': 0.005410380727450961, 'dog': 0.0053999024811489365, 'sentence': 0.0049432598189302086, 'room': 0.00494073503325767}
2018-12-09 15:48:38,222 - lstmimpl - INFO - English: i have a break enxp <eos>
2018-12-09 15:48:38,223 - lstmimpl - INFO - German: er ist gut dexp dexp <eos>
2018-12-09 15:48:38,256 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.5606334243186109, 'here': 0.026848565553319992, 'me': 0.025758588586784446, 'it': 0.016961795923054458, 'there': 0.012097945398681201}
2018-12-09 15:48:38,257 - lstmimpl - INFO - English: i have him enxp enxp <eos>
2018-12-09 15:48:38,257 - lstmimpl - INFO - German: hab ich nicht dexp dexp <eos>
2018-12-09 15:48:38,291 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.9957948427773791, 'me': 0.0005236407991101393, 'it': 0.0004495996482951339, 'tom': 0.0002900581444978801, 'here': 0.0002590344902284419}
2018-12-09 15:48:38,291 - lstmimpl - INFO - English: i am him enxp enxp <eos>
2018-12-09 15:48:38,292 - lstmimpl - INFO - German: ich hat dexp dexp dexp <eos>
2018-12-09 15:48:38,325 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.9998003042124207, '<eos>': 4.10446050533367e-05, 'me': 3.580290245280001e-05, 'it': 3.4773018814849446e-05, 'tom': 2.2289719499535058e-05}
2018-12-09 15:48:38,326 - lstmimpl - INFO - English: i am enxp enxp enxp <eos>
2018-12-09 15:48:38,326 - lstmimpl - INFO - German: ich war glucklich dexp dexp <eos>
2018-12-09 15:48:38,366 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.9449710464028286, 'me': 0.005666139752172727, 'it': 0.005118546781247995, 'here': 0.003898837579571565, 'there': 0.002593967606760657}
2018-12-09 15:48:38,367 - lstmimpl - INFO - English: i have him enxp enxp <eos>
2018-12-09 15:48:38,367 - lstmimpl - INFO - German: ich liebe die sonne dexp <eos>
2018-12-09 15:48:38,404 - lstmimpl - INFO - Probabilites for word sonne : {'sentence': 0.005948567868863918, 'lot': 0.00578918857830442, 'break': 0.0053464655003637685, 'dog': 0.005039784878003563, 'room': 0.005000108816037575}
2018-12-09 15:48:38,405 - lstmimpl - INFO - English: i have a sentence enxp <eos>
2018-12-09 15:48:38,405 - lstmimpl - INFO - German: kann es das sein dexp <eos>
2018-12-09 15:48:38,439 - lstmimpl - INFO - Probabilites for word sein : {'lot': 0.0060393732608860235, 'dog': 0.005356331938709592, 'sentence': 0.005329972414628439, 'friend': 0.005102619616667849, 'sister': 0.004824745887783941}
2018-12-09 15:48:38,439 - lstmimpl - INFO - English: i have a lot enxp <eos>
2018-12-09 15:48:38,440 - lstmimpl - INFO - German: das ist unnutz dexp dexp <eos>
2018-12-09 15:48:38,473 - lstmimpl - INFO - Probabilites for word dexp : {'sentence': 0.008071941224188379, 'lot': 0.00805851303412119, 'happy': 0.006201754044111852, 'question': 0.005895814033633671, 'eyes': 0.005676337519032931}
2018-12-09 15:48:38,474 - lstmimpl - INFO - English: i have a sentence enxp <eos>
2018-12-09 15:48:38,474 - lstmimpl - INFO - German: er begann zu weinen dexp <eos>
2018-12-09 15:48:38,508 - lstmimpl - INFO - Probabilites for word weinen : {'lot': 0.007199464271696132, 'sentence': 0.006983954530490468, 'question': 0.005550497981575691, 'sister': 0.005176047889669922, 'eyes': 0.005064000482351236}
2018-12-09 15:48:38,509 - lstmimpl - INFO - English: i have a lot enxp <eos>
2018-12-09 15:48:38,509 - lstmimpl - INFO - German: die pause ist vorbei dexp <eos>
2018-12-09 15:48:38,543 - lstmimpl - INFO - Probabilites for word vorbei : {'black': 0.01821954264193024, 'sweet': 0.01362176760350171, 'very': 0.01076431318855571, 'fast': 0.010017794663062254, 'works': 0.005671442983643065}
2018-12-09 15:48:38,543 - lstmimpl - INFO - English: the friend is black enxp <eos>
2018-12-09 15:48:38,544 - lstmimpl - INFO - German: wie du willst dexp dexp <eos>
2018-12-09 15:48:38,582 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.8940924766657343, 'it': 0.010939426526997682, 'me': 0.010659143015124932, 'here': 0.006809972368525753, 'tom': 0.005073400260335874}
2018-12-09 15:48:38,583 - lstmimpl - INFO - English: i have him enxp enxp <eos>
2018-12-09 15:48:38,583 - lstmimpl - INFO - German: die vater arbeiten dexp dexp <eos>
2018-12-09 15:48:38,617 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.999155861475429, '<eos>': 0.00031248366650434993, 'it': 0.00017759678101855823, 'tom': 7.190744939900877e-05, 'me': 7.082756998186191e-05}
2018-12-09 15:48:38,617 - lstmimpl - INFO - English: i saw enxp enxp enxp <eos>
2018-12-09 15:48:38,618 - lstmimpl - INFO - German: wir helfen euch aus dexp <eos>
2018-12-09 15:48:38,653 - lstmimpl - INFO - Probabilites for word aus : {'lot': 0.007889624739264064, 'sentence': 0.007268803085005977, 'eyes': 0.005572725845236547, 'question': 0.005524633909122348, 'sister': 0.005452636290160364}
2018-12-09 15:48:38,654 - lstmimpl - INFO - English: i have a lot enxp <eos>
2018-12-09 15:48:38,654 - lstmimpl - INFO - German: tom gibt nicht auf dexp <eos>
2018-12-09 15:48:38,688 - lstmimpl - INFO - Probabilites for word auf : {'lot': 0.007731163739546825, 'sentence': 0.007199176645976197, 'question': 0.005587473316624256, 'sister': 0.005389551697355873, 'eyes': 0.005330913490270119}
2018-12-09 15:48:38,689 - lstmimpl - INFO - English: i have a lot enxp <eos>
2018-12-09 15:48:38,689 - lstmimpl - INFO - German: ich mochte es nicht dexp <eos>
2018-12-09 15:48:38,723 - lstmimpl - INFO - Probabilites for word nicht : {'sentence': 0.006793486772784088, 'brother': 0.006155580987027566, 'room': 0.00588333393432133, 'friend': 0.005744774918318252, 'father': 0.004929922146309064}
2018-12-09 15:48:38,723 - lstmimpl - INFO - English: i have the sentence enxp <eos>
2018-12-09 15:48:38,724 - lstmimpl - INFO - German: ich war nicht enttauscht dexp <eos>
2018-12-09 15:48:38,758 - lstmimpl - INFO - Probabilites for word enttauscht : {'lot': 0.00783372132702671, 'sentence': 0.007459414817521642, 'question': 0.005655952673292659, 'eyes': 0.005391044781010691, 'sister': 0.005271179776854805}
2018-12-09 15:48:38,758 - lstmimpl - INFO - English: i have a lot enxp <eos>
2018-12-09 15:48:38,759 - lstmimpl - INFO - German: das wasser ist hei dexp <eos>
2018-12-09 15:48:38,792 - lstmimpl - INFO - Probabilites for word hei : {'sentence': 0.006125656325204825, 'lot': 0.006026741729788749, 'question': 0.0059358308168294726, 'song': 0.005500260842634892, 'break': 0.005477698453672341}
2018-12-09 15:48:38,793 - lstmimpl - INFO - English: i have a sentence enxp <eos>
2018-12-09 15:48:38,793 - lstmimpl - INFO - German: wer ist tom dexp dexp <eos>
2018-12-09 15:48:38,827 - lstmimpl - INFO - Probabilites for word dexp : {'lot': 0.007769268648963641, 'sentence': 0.007719453735356785, 'question': 0.0056983588994095015, 'eyes': 0.005547630806118393, 'happy': 0.005462397954932069}
2018-12-09 15:48:38,827 - lstmimpl - INFO - English: i have a lot enxp <eos>
2018-12-09 15:53:30,594 - lstmimpl - INFO - Epoch: 0, Iteration: 3000, Encoder Loss: 15.985217688749566, Decoder Loss: 18.854233511671254, Learning Rate: 0.1
2018-12-09 15:53:30,595 - lstmimpl - INFO - Testing Translate: German to English
2018-12-09 15:53:30,892 - lstmimpl - INFO - German: ich habe ein buch dexp <eos>
2018-12-09 15:53:30,925 - lstmimpl - INFO - Probabilites for word buch : {'big': 0.011444599412504563, 'friend': 0.008826939543681817, 'yes': 0.008707081269702004, 'house': 0.008212903529212959, 'song': 0.007377669987834765}
2018-12-09 15:53:30,926 - lstmimpl - INFO - English: i dont a big enxp <eos>
2018-12-09 15:53:30,927 - lstmimpl - INFO - German: danke fur ihre helfen dexp <eos>
2018-12-09 15:53:30,961 - lstmimpl - INFO - Probabilites for word helfen : {'red': 0.009624673190980124, 'big': 0.0056357574698521545, 'delicious': 0.004719935633473159, 'him': 0.004605734534966408, 'bad': 0.004501354299005714}
2018-12-09 15:53:30,962 - lstmimpl - INFO - English: the friend is red enxp <eos>
2018-12-09 15:53:30,962 - lstmimpl - INFO - German: ich habe ein fahrrad dexp <eos>
2018-12-09 15:53:30,996 - lstmimpl - INFO - Probabilites for word fahrrad : {'big': 0.01124150793319357, 'friend': 0.00891154072712643, 'yes': 0.0087985343998368, 'house': 0.008387413114822917, 'song': 0.007338194646538443}
2018-12-09 15:53:30,997 - lstmimpl - INFO - English: i dont a big enxp <eos>
2018-12-09 15:53:30,997 - lstmimpl - INFO - German: er ist gut dexp dexp <eos>
2018-12-09 15:53:31,031 - lstmimpl - INFO - Probabilites for word dexp : {'it': 0.12488492418178958, 'enxp': 0.09462518641198223, 'tom': 0.07801711763534473, 'me': 0.06561337690521873, 'you': 0.0559321069275338}
2018-12-09 15:53:31,031 - lstmimpl - INFO - English: i dont know it enxp <eos>
2018-12-09 15:53:31,032 - lstmimpl - INFO - German: hab ich nicht dexp dexp <eos>
2018-12-09 15:53:31,065 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.7574734229036643, 'here': 0.006510365227802271, 'english': 0.006425206057364921, 'me': 0.006315362103201063, 'friends': 0.003363898262903011}
2018-12-09 15:53:31,066 - lstmimpl - INFO - English: the wait him enxp enxp <eos>
2018-12-09 15:53:31,066 - lstmimpl - INFO - German: ich hat dexp dexp dexp <eos>
2018-12-09 15:53:31,100 - lstmimpl - INFO - Probabilites for word dexp : {'well': 0.01235593553286327, 'enxp': 0.010732045006219734, 'red': 0.007291504731660937, 'happy': 0.006861820734528389, 'hungry': 0.006632146868692423}
2018-12-09 15:53:31,101 - lstmimpl - INFO - English: the wait was well enxp <eos>
2018-12-09 15:53:31,101 - lstmimpl - INFO - German: ich war glucklich dexp dexp <eos>
2018-12-09 15:53:31,135 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.3793360768702288, 'it': 0.09958478830647097, 'tom': 0.09365355824744184, 'you': 0.0627489582132867, 'me': 0.04629465938845844}
2018-12-09 15:53:31,135 - lstmimpl - INFO - English: i dont know enxp enxp <eos>
2018-12-09 15:53:31,136 - lstmimpl - INFO - German: ich liebe die sonne dexp <eos>
2018-12-09 15:53:31,169 - lstmimpl - INFO - Probabilites for word sonne : {'big': 0.008928063310201118, 'yes': 0.008673593815076439, 'friend': 0.008122463403974978, 'house': 0.006570490511399157, 'question': 0.006535133076119266}
2018-12-09 15:53:31,170 - lstmimpl - INFO - English: i dont a big enxp <eos>
2018-12-09 15:53:31,170 - lstmimpl - INFO - German: kann es das sein dexp <eos>
2018-12-09 15:53:31,204 - lstmimpl - INFO - Probabilites for word sein : {'it': 0.14645616810507503, 'tom': 0.11026784293168972, 'you': 0.08423532758311114, 'me': 0.08018983742435294, 'that': 0.05631496295681448}
2018-12-09 15:53:31,205 - lstmimpl - INFO - English: i dont know it enxp <eos>
2018-12-09 15:53:31,205 - lstmimpl - INFO - German: das ist unnutz dexp dexp <eos>
2018-12-09 15:53:31,239 - lstmimpl - INFO - Probabilites for word dexp : {'here': 0.015229522600739407, 'well': 0.011142121915649615, 'enxp': 0.011109421726770005, 'it': 0.010766500691542438, 'me': 0.008942069300626852}
2018-12-09 15:53:31,239 - lstmimpl - INFO - English: i dont like here enxp <eos>
2018-12-09 15:53:31,240 - lstmimpl - INFO - German: er begann zu weinen dexp <eos>
2018-12-09 15:53:31,273 - lstmimpl - INFO - Probabilites for word weinen : {'here': 0.013050217094162424, 'it': 0.011779182245152873, 'tennis': 0.010513461701139145, 'me': 0.009876793924997525, 'that': 0.009364054506557617}
2018-12-09 15:53:31,274 - lstmimpl - INFO - English: i dont like here enxp <eos>
2018-12-09 15:53:31,274 - lstmimpl - INFO - German: die pause ist vorbei dexp <eos>
2018-12-09 15:53:31,308 - lstmimpl - INFO - Probabilites for word vorbei : {'red': 0.013001295712121505, 'big': 0.007638698054385044, 'sweet': 0.007090451344869843, 'late': 0.005655374096734687, 'bad': 0.005496441838327963}
2018-12-09 15:53:31,309 - lstmimpl - INFO - English: the friend is red enxp <eos>
2018-12-09 15:53:31,309 - lstmimpl - INFO - German: wie du willst dexp dexp <eos>
2018-12-09 15:53:31,343 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.5950699146131233, 'tom': 0.06914475961442786, 'it': 0.06160372120668539, 'you': 0.04775769205215399, 'me': 0.031127413843559836}
2018-12-09 15:53:31,343 - lstmimpl - INFO - English: i dont know enxp enxp <eos>
2018-12-09 15:53:31,344 - lstmimpl - INFO - German: die vater arbeiten dexp dexp <eos>
2018-12-09 15:53:31,387 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.9992389877201616, '<eos>': 0.00010366126846329385, 'here': 6.000523253140143e-05, 'me': 5.0648384574175125e-05, 'tom': 3.4635684973506995e-05}
2018-12-09 15:53:31,387 - lstmimpl - INFO - English: the wait enxp enxp enxp <eos>
2018-12-09 15:53:31,388 - lstmimpl - INFO - German: wir helfen euch aus dexp <eos>
2018-12-09 15:53:31,422 - lstmimpl - INFO - Probabilites for word aus : {'it': 0.13524908338689842, 'tom': 0.09299386467265353, 'me': 0.0732608831910586, 'you': 0.06697186888174712, 'that': 0.05684829499757571}
2018-12-09 15:53:31,422 - lstmimpl - INFO - English: i dont know it enxp <eos>
2018-12-09 15:53:31,423 - lstmimpl - INFO - German: tom gibt nicht auf dexp <eos>
2018-12-09 15:53:31,456 - lstmimpl - INFO - Probabilites for word auf : {'it': 0.13626435935048428, 'tom': 0.10105786148427202, 'you': 0.07312289203559455, 'me': 0.07050997180767939, 'that': 0.05628911597930394}
2018-12-09 15:53:31,457 - lstmimpl - INFO - English: i dont know it enxp <eos>
2018-12-09 15:53:31,457 - lstmimpl - INFO - German: ich mochte es nicht dexp <eos>
2018-12-09 15:53:31,491 - lstmimpl - INFO - Probabilites for word nicht : {'it': 0.15881484205059895, 'tom': 0.11988076817969165, 'you': 0.0903311346326841, 'me': 0.07726578942258479, 'that': 0.06403826191561583}
2018-12-09 15:53:31,492 - lstmimpl - INFO - English: i dont know it enxp <eos>
2018-12-09 15:53:31,492 - lstmimpl - INFO - German: ich war nicht enttauscht dexp <eos>
2018-12-09 15:53:31,526 - lstmimpl - INFO - Probabilites for word enttauscht : {'here': 0.01305187321677909, 'tennis': 0.009337723231460511, 'well': 0.00927804722622563, 'it': 0.00925376884449645, 'me': 0.007778096665645835}
2018-12-09 15:53:31,527 - lstmimpl - INFO - English: i dont like here enxp <eos>
2018-12-09 15:53:31,527 - lstmimpl - INFO - German: das wasser ist hei dexp <eos>
2018-12-09 15:53:31,561 - lstmimpl - INFO - Probabilites for word hei : {'tennis': 0.011238727989100333, 'in': 0.011170420513374779, 'big': 0.010878364790034742, 'long': 0.007317047222539459, 'here': 0.007296460781216355}
2018-12-09 15:53:31,561 - lstmimpl - INFO - English: i dont like tennis enxp <eos>
2018-12-09 15:53:31,562 - lstmimpl - INFO - German: wer ist tom dexp dexp <eos>
2018-12-09 15:53:31,595 - lstmimpl - INFO - Probabilites for word dexp : {'here': 0.014896233790755728, 'enxp': 0.011262733719083087, 'well': 0.010854141621123197, 'it': 0.009950806764089834, 'me': 0.008377284559230131}
2018-12-09 15:53:31,596 - lstmimpl - INFO - English: i dont like here enxp <eos>
2018-12-09 15:58:10,677 - lstmimpl - INFO - Epoch: 0, Iteration: 3500, Encoder Loss: 15.92053844471012, Decoder Loss: 18.666268767217126, Learning Rate: 0.1
2018-12-09 15:58:10,678 - lstmimpl - INFO - Testing Translate: German to English
2018-12-09 15:58:10,982 - lstmimpl - INFO - German: ich habe ein buch dexp <eos>
2018-12-09 15:58:11,015 - lstmimpl - INFO - Probabilites for word buch : {'sun': 0.008192762413936591, 'yes': 0.007136959963249292, 'help': 0.0065385386824113375, 'nobody': 0.0060711211350137325, 'late': 0.005885249938454926}
2018-12-09 15:58:11,016 - lstmimpl - INFO - English: i dont a sun enxp <eos>
2018-12-09 15:58:11,016 - lstmimpl - INFO - German: danke fur ihre helfen dexp <eos>
2018-12-09 15:58:11,050 - lstmimpl - INFO - Probabilites for word helfen : {'it': 0.011634037712238999, 'her': 0.011147383785712327, 'he': 0.009707256702670003, 'you': 0.009625309763333801, 'that': 0.009447664901394492}
2018-12-09 15:58:11,051 - lstmimpl - INFO - English: i dont like it enxp <eos>
2018-12-09 15:58:11,051 - lstmimpl - INFO - German: ich habe ein fahrrad dexp <eos>
2018-12-09 15:58:11,085 - lstmimpl - INFO - Probabilites for word fahrrad : {'sun': 0.007801124427210195, 'yes': 0.007298531465966382, 'help': 0.006878480265680475, 'nobody': 0.005971887884025473, 'animals': 0.005748210001575544}
2018-12-09 15:58:11,085 - lstmimpl - INFO - English: i dont a sun enxp <eos>
2018-12-09 15:58:11,086 - lstmimpl - INFO - German: er ist gut dexp dexp <eos>
2018-12-09 15:58:11,119 - lstmimpl - INFO - Probabilites for word dexp : {'you': 0.0914614983077117, 'it': 0.06641656068553355, 'enxp': 0.06462106790605317, 'me': 0.04584953913083137, 'that': 0.03864336951551149}
2018-12-09 15:58:11,120 - lstmimpl - INFO - English: i dont know you enxp <eos>
2018-12-09 15:58:11,120 - lstmimpl - INFO - German: hab ich nicht dexp dexp <eos>
2018-12-09 15:58:11,154 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.11065059198750819, 'you': 0.0734692010460382, 'it': 0.05366761868903439, 'me': 0.04532247693237844, 'tom': 0.03301367804852718}
2018-12-09 15:58:11,155 - lstmimpl - INFO - English: i dont know enxp enxp <eos>
2018-12-09 15:58:11,155 - lstmimpl - INFO - German: ich hat dexp dexp dexp <eos>
2018-12-09 15:58:11,189 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.09008904989365034, 'you': 0.07741271664176363, 'it': 0.06053616689492472, 'me': 0.04837816223215381, 'that': 0.032089921232668815}
2018-12-09 15:58:11,189 - lstmimpl - INFO - English: i dont know enxp enxp <eos>
2018-12-09 15:58:11,190 - lstmimpl - INFO - German: ich war glucklich dexp dexp <eos>
2018-12-09 15:58:11,223 - lstmimpl - INFO - Probabilites for word dexp : {'you': 0.081502834916816, 'enxp': 0.07646362709252189, 'it': 0.06317320446801257, 'me': 0.04714432648648304, 'that': 0.035372601227621606}
2018-12-09 15:58:11,224 - lstmimpl - INFO - English: i dont know you enxp <eos>
2018-12-09 15:58:11,224 - lstmimpl - INFO - German: ich liebe die sonne dexp <eos>
2018-12-09 15:58:11,258 - lstmimpl - INFO - Probabilites for word sonne : {'it': 0.01208966938891102, 'help': 0.01176078806672149, 'do': 0.01143660651916346, 'her': 0.009945574589044472, 'you': 0.009507199711908424}
2018-12-09 15:58:11,259 - lstmimpl - INFO - English: i dont like it enxp <eos>
2018-12-09 15:58:11,259 - lstmimpl - INFO - German: kann es das sein dexp <eos>
2018-12-09 15:58:11,293 - lstmimpl - INFO - Probabilites for word sein : {'it': 0.02170614419875655, 'you': 0.019393652836422245, 'that': 0.014176130975781987, 'me': 0.013782435875616986, 'her': 0.011801359500738155}
2018-12-09 15:58:11,293 - lstmimpl - INFO - English: i dont like it enxp <eos>
2018-12-09 15:58:11,294 - lstmimpl - INFO - German: das ist unnutz dexp dexp <eos>
2018-12-09 15:58:11,327 - lstmimpl - INFO - Probabilites for word dexp : {'you': 0.08549102499170974, 'it': 0.06544641571075666, 'enxp': 0.06448606655613129, 'me': 0.04429668354777787, 'that': 0.03981789578543922}
2018-12-09 15:58:11,328 - lstmimpl - INFO - English: i dont know you enxp <eos>
2018-12-09 15:58:11,328 - lstmimpl - INFO - German: er begann zu weinen dexp <eos>
2018-12-09 15:58:11,368 - lstmimpl - INFO - Probabilites for word weinen : {'you': 0.10067633606609992, 'it': 0.07639723834975565, 'me': 0.05194397632821824, 'enxp': 0.048497811028323276, 'that': 0.04443084403008244}
2018-12-09 15:58:11,369 - lstmimpl - INFO - English: i dont know you enxp <eos>
2018-12-09 15:58:11,369 - lstmimpl - INFO - German: die pause ist vorbei dexp <eos>
2018-12-09 15:58:11,408 - lstmimpl - INFO - Probabilites for word vorbei : {'fast': 0.026426098914984427, 'very': 0.014787072940777418, 'bad': 0.013899560113612134, 'please': 0.013610705405399106, 'swims': 0.01050467864089504}
2018-12-09 15:58:11,409 - lstmimpl - INFO - English: the room was fast enxp <eos>
2018-12-09 15:58:11,409 - lstmimpl - INFO - German: wie du willst dexp dexp <eos>
2018-12-09 15:58:11,444 - lstmimpl - INFO - Probabilites for word dexp : {'you': 0.08923213023459385, 'enxp': 0.08209159786684427, 'it': 0.0659550333181155, 'me': 0.048612811289253224, 'that': 0.03442425618686858}
2018-12-09 15:58:11,444 - lstmimpl - INFO - English: i dont know you enxp <eos>
2018-12-09 15:58:11,445 - lstmimpl - INFO - German: die vater arbeiten dexp dexp <eos>
2018-12-09 15:58:11,478 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.9995622856390065, '<eos>': 4.7934019638708295e-05, 'me': 3.7528732447948413e-05, 'here': 2.0132809499408426e-05, 'it': 2.0114046496640635e-05}
2018-12-09 15:58:11,479 - lstmimpl - INFO - English: tom loves enxp enxp enxp <eos>
2018-12-09 15:58:11,479 - lstmimpl - INFO - German: wir helfen euch aus dexp <eos>
2018-12-09 15:58:11,513 - lstmimpl - INFO - Probabilites for word aus : {'you': 0.09613136098817036, 'it': 0.07239522751112397, 'enxp': 0.06248957185641523, 'me': 0.05486398810461106, 'that': 0.038392949076938285}
2018-12-09 15:58:11,514 - lstmimpl - INFO - English: i dont know you enxp <eos>
2018-12-09 15:58:11,514 - lstmimpl - INFO - German: tom gibt nicht auf dexp <eos>
2018-12-09 15:58:11,548 - lstmimpl - INFO - Probabilites for word auf : {'you': 0.09877163534320726, 'it': 0.07399788578494335, 'enxp': 0.06399069742970886, 'me': 0.054639153205124844, 'that': 0.03876294060553049}
2018-12-09 15:58:11,548 - lstmimpl - INFO - English: i dont know you enxp <eos>
2018-12-09 15:58:11,549 - lstmimpl - INFO - German: ich mochte es nicht dexp <eos>
2018-12-09 15:58:11,582 - lstmimpl - INFO - Probabilites for word nicht : {'you': 0.1563491914400048, 'it': 0.10945673674255421, 'me': 0.05530660943275481, 'that': 0.051516463938541784, 'tom': 0.03704869043071534}
2018-12-09 15:58:11,583 - lstmimpl - INFO - English: i dont know you enxp <eos>
2018-12-09 15:58:11,583 - lstmimpl - INFO - German: ich war nicht enttauscht dexp <eos>
2018-12-09 15:58:11,617 - lstmimpl - INFO - Probabilites for word enttauscht : {'it': 0.010807006194658826, 'that': 0.009158468004964256, 'help': 0.008810609674952688, 'her': 0.008608397732505914, 'enxp': 0.008134275978528617}
2018-12-09 15:58:11,617 - lstmimpl - INFO - English: i dont like it enxp <eos>
2018-12-09 15:58:11,618 - lstmimpl - INFO - German: das wasser ist hei dexp <eos>
2018-12-09 15:58:11,653 - lstmimpl - INFO - Probabilites for word hei : {'very': 0.017609365798138217, 'fast': 0.013444786038701079, 'bad': 0.01061135571765852, 'late': 0.009615842676086866, 'big': 0.007680178324865323}
2018-12-09 15:58:11,653 - lstmimpl - INFO - English: the room is very enxp <eos>
2018-12-09 15:58:11,654 - lstmimpl - INFO - German: wer ist tom dexp dexp <eos>
2018-12-09 15:58:11,687 - lstmimpl - INFO - Probabilites for word dexp : {'you': 0.09205313654335792, 'it': 0.06995505214475431, 'enxp': 0.06102652088534498, 'me': 0.04474982916826873, 'that': 0.040394529275889365}
2018-12-09 15:58:11,688 - lstmimpl - INFO - English: i dont know you enxp <eos>
2018-12-09 16:02:52,083 - lstmimpl - INFO - Epoch: 0, Iteration: 4000, Encoder Loss: 9.116162703748858, Decoder Loss: 10.958072472114516, Learning Rate: 0.1
2018-12-09 16:02:52,085 - lstmimpl - INFO - Testing Translate: German to English
2018-12-09 16:02:52,086 - lstmimpl - INFO - German: ich habe ein buch dexp <eos>
2018-12-09 16:02:52,120 - lstmimpl - INFO - Probabilites for word buch : {'family': 0.052018425657480355, 'late': 0.026909303494438538, 'dog': 0.022291643372647524, 'eyes': 0.014950525421099153, 'house': 0.014392860688352105}
2018-12-09 16:02:52,120 - lstmimpl - INFO - English: i like a family enxp <eos>
2018-12-09 16:02:52,121 - lstmimpl - INFO - German: danke fur ihre helfen dexp <eos>
2018-12-09 16:02:52,156 - lstmimpl - INFO - Probabilites for word helfen : {'it': 0.2362582883526998, 'that': 0.11815956328049129, 'you': 0.08822872215953974, 'me': 0.0533560298224139, 'tom': 0.047475966302472805}
2018-12-09 16:02:52,157 - lstmimpl - INFO - English: i dont know it enxp <eos>
2018-12-09 16:02:52,157 - lstmimpl - INFO - German: ich habe ein fahrrad dexp <eos>
2018-12-09 16:02:52,190 - lstmimpl - INFO - Probabilites for word fahrrad : {'family': 0.052338514238704316, 'late': 0.02743761040201766, 'dog': 0.022343029772488688, 'eyes': 0.015906557179143927, 'house': 0.01430488746707637}
2018-12-09 16:02:52,191 - lstmimpl - INFO - English: i like a family enxp <eos>
2018-12-09 16:02:52,192 - lstmimpl - INFO - German: er ist gut dexp dexp <eos>
2018-12-09 16:02:52,225 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.5289347116430216, 'fast': 0.016293925325468958, 'happy': 0.013367854469661815, 'hungry': 0.0114960789125596, 'there': 0.008051377525564393}
2018-12-09 16:02:52,226 - lstmimpl - INFO - English: tom is very enxp enxp <eos>
2018-12-09 16:02:52,226 - lstmimpl - INFO - German: hab ich nicht dexp dexp <eos>
2018-12-09 16:02:52,260 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.986452974067269, 'there': 0.0004971020887970017, 'dressed': 0.00037224453059526074, 'me': 0.00034374839008249826, 'alone': 0.0002787410127936981}
2018-12-09 16:02:52,260 - lstmimpl - INFO - English: tom is late enxp enxp <eos>
2018-12-09 16:02:52,261 - lstmimpl - INFO - German: ich hat dexp dexp dexp <eos>
2018-12-09 16:02:52,294 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.9797614024794352, 'dressed': 0.0005978150395542327, 'there': 0.0005617283268738318, 'hair': 0.00040608823201157665, 'food': 0.00039644682551150763}
2018-12-09 16:02:52,295 - lstmimpl - INFO - English: tom is late enxp enxp <eos>
2018-12-09 16:02:52,296 - lstmimpl - INFO - German: ich war glucklich dexp dexp <eos>
2018-12-09 16:02:52,334 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.6996363162487123, 'fast': 0.01348588271436253, 'hungry': 0.007180791783553826, 'there': 0.007088733319337189, 'happy': 0.0066053995380319355}
2018-12-09 16:02:52,335 - lstmimpl - INFO - English: tom is very enxp enxp <eos>
2018-12-09 16:02:52,335 - lstmimpl - INFO - German: ich liebe die sonne dexp <eos>
2018-12-09 16:02:52,389 - lstmimpl - INFO - Probabilites for word sonne : {'it': 0.013325843903568287, 'help': 0.00877392185342335, 'late': 0.006660527962151427, 'that': 0.006165027070770565, 'dog': 0.005868181804113152}
2018-12-09 16:02:52,389 - lstmimpl - INFO - English: i dont like it enxp <eos>
2018-12-09 16:02:52,390 - lstmimpl - INFO - German: kann es das sein dexp <eos>
2018-12-09 16:02:52,423 - lstmimpl - INFO - Probabilites for word sein : {'it': 0.19656408691202812, 'you': 0.10216352654438704, 'that': 0.10085532699525546, 'me': 0.06533773348613331, 'tom': 0.05205708027323657}
2018-12-09 16:02:52,424 - lstmimpl - INFO - English: i dont know it enxp <eos>
2018-12-09 16:02:52,424 - lstmimpl - INFO - German: das ist unnutz dexp dexp <eos>
2018-12-09 16:02:52,458 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.6565600095031692, 'fast': 0.013536948215828884, 'hungry': 0.008673648565415155, 'happy': 0.00829979315118247, 'there': 0.0072765527720178745}
2018-12-09 16:02:52,458 - lstmimpl - INFO - English: tom is very enxp enxp <eos>
2018-12-09 16:02:52,459 - lstmimpl - INFO - German: er begann zu weinen dexp <eos>
2018-12-09 16:02:52,492 - lstmimpl - INFO - Probabilites for word weinen : {'it': 0.19721862533273427, 'you': 0.08975489966263762, 'that': 0.08720866283932233, 'me': 0.056338623137516516, 'tom': 0.0522846707092682}
2018-12-09 16:02:52,493 - lstmimpl - INFO - English: i dont know it enxp <eos>
2018-12-09 16:02:52,493 - lstmimpl - INFO - German: die pause ist vorbei dexp <eos>
2018-12-09 16:02:52,527 - lstmimpl - INFO - Probabilites for word vorbei : {'late': 0.024387151253657993, 'broken': 0.010590118407973016, 'dirty': 0.009721439487523487, 'big': 0.009117996920045014, 'swims': 0.008576875139585403}
2018-12-09 16:02:52,528 - lstmimpl - INFO - English: the father is late enxp <eos>
2018-12-09 16:02:52,528 - lstmimpl - INFO - German: wie du willst dexp dexp <eos>
2018-12-09 16:02:52,562 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.9812047169425185, 'there': 0.0006159380945817151, 'dressed': 0.0005872383718453699, 'food': 0.00035688244805878326, 'me': 0.0003523429818008611}
2018-12-09 16:02:52,562 - lstmimpl - INFO - English: tom is late enxp enxp <eos>
2018-12-09 16:02:52,563 - lstmimpl - INFO - German: die vater arbeiten dexp dexp <eos>
2018-12-09 16:02:52,596 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.999897730909626, '<eos>': 1.4457369556149477e-05, 'me': 5.519747456982501e-06, 'there': 3.7961032744301227e-06, 'tom': 3.032539051617791e-06}
2018-12-09 16:02:52,597 - lstmimpl - INFO - English: tom loves enxp enxp enxp <eos>
2018-12-09 16:02:52,597 - lstmimpl - INFO - German: wir helfen euch aus dexp <eos>
2018-12-09 16:02:52,632 - lstmimpl - INFO - Probabilites for word aus : {'enxp': 0.14593300879793114, 'it': 0.09815053326513949, 'you': 0.0918757317670261, 'tom': 0.057623603994525714, 'me': 0.050342993575163336}
2018-12-09 16:02:52,632 - lstmimpl - INFO - English: i dont know enxp enxp <eos>
2018-12-09 16:02:52,633 - lstmimpl - INFO - German: tom gibt nicht auf dexp <eos>
2018-12-09 16:02:52,668 - lstmimpl - INFO - Probabilites for word auf : {'it': 0.161998653450582, 'you': 0.09775047917003181, 'that': 0.07016715598416405, 'me': 0.05793978872309281, 'tom': 0.05767793044290946}
2018-12-09 16:02:52,668 - lstmimpl - INFO - English: i dont know it enxp <eos>
2018-12-09 16:02:52,669 - lstmimpl - INFO - German: ich mochte es nicht dexp <eos>
2018-12-09 16:02:52,702 - lstmimpl - INFO - Probabilites for word nicht : {'it': 0.21695514224345394, 'you': 0.11298110350953322, 'that': 0.10124228209141856, 'me': 0.06688489702072305, 'tom': 0.0541908372114078}
2018-12-09 16:02:52,703 - lstmimpl - INFO - English: i dont know it enxp <eos>
2018-12-09 16:02:52,704 - lstmimpl - INFO - German: ich war nicht enttauscht dexp <eos>
2018-12-09 16:02:52,737 - lstmimpl - INFO - Probabilites for word enttauscht : {'it': 0.18126472424453996, 'you': 0.06664345738692587, 'that': 0.06373231549251171, 'enxp': 0.05142858034295282, 'me': 0.05068933035347281}
2018-12-09 16:02:52,738 - lstmimpl - INFO - English: i dont know it enxp <eos>
2018-12-09 16:02:52,738 - lstmimpl - INFO - German: das wasser ist hei dexp <eos>
2018-12-09 16:02:52,772 - lstmimpl - INFO - Probabilites for word hei : {'work': 0.0074166343410015136, 'that': 0.007144907178365567, 'him': 0.00663353317009097, 'cold': 0.005994110805036945, 'french': 0.005683307031864137}
2018-12-09 16:02:52,772 - lstmimpl - INFO - English: i dont like work enxp <eos>
2018-12-09 16:02:52,773 - lstmimpl - INFO - German: wer ist tom dexp dexp <eos>
2018-12-09 16:02:52,806 - lstmimpl - INFO - Probabilites for word dexp : {'it': 0.140074880335132, 'enxp': 0.08749263263274555, 'you': 0.07359565712936147, 'that': 0.05533771860148134, 'tom': 0.05133766353593053}
2018-12-09 16:02:52,807 - lstmimpl - INFO - English: i dont know it enxp <eos>
2018-12-09 16:07:32,635 - lstmimpl - INFO - Epoch: 0, Iteration: 4500, Encoder Loss: 18.209837914862803, Decoder Loss: 20.383043500538193, Learning Rate: 0.1
2018-12-09 16:07:32,637 - lstmimpl - INFO - Testing Translate: German to English
2018-12-09 16:07:32,638 - lstmimpl - INFO - German: ich habe ein buch dexp <eos>
2018-12-09 16:07:32,672 - lstmimpl - INFO - Probabilites for word buch : {'language': 0.016080504169026576, 'family': 0.014359858515300054, 'dog': 0.012913301156109589, 'father': 0.012160262053426886, 'joke': 0.009591916262895567}
2018-12-09 16:07:32,672 - lstmimpl - INFO - English: i have a language enxp <eos>
2018-12-09 16:07:32,673 - lstmimpl - INFO - German: danke fur ihre helfen dexp <eos>
2018-12-09 16:07:32,706 - lstmimpl - INFO - Probabilites for word helfen : {'that': 0.14429591341786155, 'him': 0.039944362538120996, 'anything': 0.03595702278209098, 'it': 0.03510099795770258, 'you': 0.03379002814365767}
2018-12-09 16:07:32,707 - lstmimpl - INFO - English: i dont know that enxp <eos>
2018-12-09 16:07:32,707 - lstmimpl - INFO - German: ich habe ein fahrrad dexp <eos>
2018-12-09 16:07:32,741 - lstmimpl - INFO - Probabilites for word fahrrad : {'language': 0.01624708026003164, 'family': 0.014305498261460235, 'father': 0.012524175362044893, 'dog': 0.012429902802204388, 'doctor': 0.009505972149810159}
2018-12-09 16:07:32,742 - lstmimpl - INFO - English: i have a language enxp <eos>
2018-12-09 16:07:32,742 - lstmimpl - INFO - German: er ist gut dexp dexp <eos>
2018-12-09 16:07:32,776 - lstmimpl - INFO - Probabilites for word dexp : {'that': 0.07467499012369885, 'him': 0.039473639245675735, 'anything': 0.03945618591810529, 'you': 0.03130355873051309, 'tom': 0.03073221163593619}
2018-12-09 16:07:32,776 - lstmimpl - INFO - English: i dont know that enxp <eos>
2018-12-09 16:07:32,777 - lstmimpl - INFO - German: hab ich nicht dexp dexp <eos>
2018-12-09 16:07:32,810 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.5234042334248411, 'tom': 0.05064638451688586, 'you': 0.03651145232298584, 'me': 0.015211639150681917, 'please': 0.014740950779702793}
2018-12-09 16:07:32,811 - lstmimpl - INFO - English: i dont know enxp enxp <eos>
2018-12-09 16:07:32,811 - lstmimpl - INFO - German: ich hat dexp dexp dexp <eos>
2018-12-09 16:07:32,845 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.36910506101283985, 'tom': 0.036041543672373756, 'you': 0.024665473898583316, 'anything': 0.019201209856483464, 'here': 0.01651368807388999}
2018-12-09 16:07:32,846 - lstmimpl - INFO - English: i dont know enxp enxp <eos>
2018-12-09 16:07:32,846 - lstmimpl - INFO - German: ich war glucklich dexp dexp <eos>
2018-12-09 16:07:32,880 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.1896001997498184, 'tom': 0.04801206163402286, 'you': 0.036959931189758974, 'that': 0.027503486975748517, 'anything': 0.025186160900107925}
2018-12-09 16:07:32,880 - lstmimpl - INFO - English: i dont know enxp enxp <eos>
2018-12-09 16:07:32,881 - lstmimpl - INFO - German: ich liebe die sonne dexp <eos>
2018-12-09 16:07:32,920 - lstmimpl - INFO - Probabilites for word sonne : {'that': 0.06779514406977531, 'it': 0.04071470727777378, 'you': 0.033718796846968574, 'tom': 0.03201181356229679, 'him': 0.028881821834813512}
2018-12-09 16:07:32,920 - lstmimpl - INFO - English: i dont know that enxp <eos>
2018-12-09 16:07:32,921 - lstmimpl - INFO - German: kann es das sein dexp <eos>
2018-12-09 16:07:32,954 - lstmimpl - INFO - Probabilites for word sein : {'that': 0.15167098659298295, 'you': 0.04361895467122555, 'him': 0.04251647482777752, 'it': 0.03887796684706271, 'tom': 0.03756934145825542}
2018-12-09 16:07:32,955 - lstmimpl - INFO - English: i dont know that enxp <eos>
2018-12-09 16:07:32,956 - lstmimpl - INFO - German: das ist unnutz dexp dexp <eos>
2018-12-09 16:07:32,989 - lstmimpl - INFO - Probabilites for word dexp : {'that': 0.06754206167086747, 'anything': 0.041051714311246615, 'him': 0.03550217343669501, 'tom': 0.030764335097420076, 'you': 0.02757173005441281}
2018-12-09 16:07:32,990 - lstmimpl - INFO - English: i dont know that enxp <eos>
2018-12-09 16:07:32,990 - lstmimpl - INFO - German: er begann zu weinen dexp <eos>
2018-12-09 16:07:33,024 - lstmimpl - INFO - Probabilites for word weinen : {'that': 0.14468158792089814, 'him': 0.044929157930295976, 'anything': 0.0375987857817565, 'you': 0.03547574081618745, 'it': 0.03151325283543076}
2018-12-09 16:07:33,024 - lstmimpl - INFO - English: i dont know that enxp <eos>
2018-12-09 16:07:33,025 - lstmimpl - INFO - German: die pause ist vorbei dexp <eos>
2018-12-09 16:07:33,058 - lstmimpl - INFO - Probabilites for word vorbei : {'broken': 0.022360836445832057, 'red': 0.015123567978864138, 'empty': 0.014622746232022513, 'dirty': 0.012541195176773318, 'good': 0.011030915495671386}
2018-12-09 16:07:33,059 - lstmimpl - INFO - English: the father is broken enxp <eos>
2018-12-09 16:07:33,060 - lstmimpl - INFO - German: wie du willst dexp dexp <eos>
2018-12-09 16:07:33,093 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.15363033133194592, 'tom': 0.0547398964636201, 'you': 0.044027475667678506, 'that': 0.034069045735817545, 'anything': 0.02534233293289164}
2018-12-09 16:07:33,094 - lstmimpl - INFO - English: i dont know enxp enxp <eos>
2018-12-09 16:07:33,094 - lstmimpl - INFO - German: die vater arbeiten dexp dexp <eos>
2018-12-09 16:07:33,128 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.9998704344426603, '<eos>': 1.9091582023172686e-05, 'tom': 9.746509120720937e-06, 'here': 8.37664454619772e-06, 'fast': 3.515950705501309e-06}
2018-12-09 16:07:33,128 - lstmimpl - INFO - English: tom was enxp enxp enxp <eos>
2018-12-09 16:07:33,129 - lstmimpl - INFO - German: wir helfen euch aus dexp <eos>
2018-12-09 16:07:33,165 - lstmimpl - INFO - Probabilites for word aus : {'that': 0.11993933504330193, 'him': 0.04330011711838204, 'you': 0.03755498149538436, 'anything': 0.03652772670933284, 'tom': 0.03269835607820232}
2018-12-09 16:07:33,165 - lstmimpl - INFO - English: i dont know that enxp <eos>
2018-12-09 16:07:33,166 - lstmimpl - INFO - German: tom gibt nicht auf dexp <eos>
2018-12-09 16:07:33,199 - lstmimpl - INFO - Probabilites for word auf : {'that': 0.13812262007855863, 'him': 0.044865650449772046, 'you': 0.03841555669276316, 'anything': 0.03726482576873545, 'tom': 0.032406431201930826}
2018-12-09 16:07:33,200 - lstmimpl - INFO - English: i dont know that enxp <eos>
2018-12-09 16:07:33,200 - lstmimpl - INFO - German: ich mochte es nicht dexp <eos>
2018-12-09 16:07:33,234 - lstmimpl - INFO - Probabilites for word nicht : {'that': 0.16896308878652094, 'you': 0.045754255230656966, 'him': 0.04386603676215816, 'it': 0.03741452546110133, 'tom': 0.03631343690321624}
2018-12-09 16:07:33,234 - lstmimpl - INFO - English: i dont know that enxp <eos>
2018-12-09 16:07:33,235 - lstmimpl - INFO - German: ich war nicht enttauscht dexp <eos>
2018-12-09 16:07:33,268 - lstmimpl - INFO - Probabilites for word enttauscht : {'that': 0.0870443160076045, 'anything': 0.04575866333596005, 'him': 0.03845190578075484, 'it': 0.025741136558309247, 'you': 0.023963640538108327}
2018-12-09 16:07:33,269 - lstmimpl - INFO - English: i dont know that enxp <eos>
2018-12-09 16:07:33,269 - lstmimpl - INFO - German: das wasser ist hei dexp <eos>
2018-12-09 16:07:33,303 - lstmimpl - INFO - Probabilites for word hei : {'that': 0.09987473767923047, 'him': 0.037672011216176485, 'anything': 0.03310164517683903, 'it': 0.03254207132837333, 'tom': 0.025769222544555742}
2018-12-09 16:07:33,304 - lstmimpl - INFO - English: i dont know that enxp <eos>
2018-12-09 16:07:33,304 - lstmimpl - INFO - German: wer ist tom dexp dexp <eos>
2018-12-09 16:07:33,338 - lstmimpl - INFO - Probabilites for word dexp : {'that': 0.09835515094824883, 'anything': 0.041745047076293965, 'him': 0.040862188358554395, 'you': 0.03123883788330063, 'tom': 0.029925642667951134}
2018-12-09 16:07:33,338 - lstmimpl - INFO - English: i dont know that enxp <eos>
2018-12-09 16:12:22,213 - lstmimpl - INFO - Models saved successfully!
2018-12-09 16:12:22,712 - lstmimpl - INFO - Epoch: 1, Iteration: 5000, Encoder Loss: 21.875996199413926, Decoder Loss: 20.828223189599964, Learning Rate: 0.1
2018-12-09 16:12:22,713 - lstmimpl - INFO - Testing Translate: German to English
2018-12-09 16:12:22,714 - lstmimpl - INFO - German: ich habe ein buch dexp <eos>
2018-12-09 16:12:22,748 - lstmimpl - INFO - Probabilites for word buch : {'family': 0.012097762472631128, 'singer': 0.011101393969029677, 'father': 0.00794799662964276, 'room': 0.007870399579215563, 'cat': 0.00774198701043991}
2018-12-09 16:12:22,749 - lstmimpl - INFO - English: i have a family enxp <eos>
2018-12-09 16:12:22,749 - lstmimpl - INFO - German: danke fur ihre helfen dexp <eos>
2018-12-09 16:12:22,783 - lstmimpl - INFO - Probabilites for word helfen : {'that': 0.08992172169341536, 'him': 0.07668052609579577, 'it': 0.06972354341433372, 'you': 0.0635931456646542, 'tom': 0.058220459333187466}
2018-12-09 16:12:22,784 - lstmimpl - INFO - English: i dont know that enxp <eos>
2018-12-09 16:12:22,784 - lstmimpl - INFO - German: ich habe ein fahrrad dexp <eos>
2018-12-09 16:12:22,818 - lstmimpl - INFO - Probabilites for word fahrrad : {'singer': 0.0119585876382696, 'family': 0.011890210632464614, 'room': 0.007917058418971126, 'father': 0.007871652476801258, 'cat': 0.007846068069390194}
2018-12-09 16:12:22,818 - lstmimpl - INFO - English: i have a singer enxp <eos>
2018-12-09 16:12:22,819 - lstmimpl - INFO - German: er ist gut dexp dexp <eos>
2018-12-09 16:12:22,852 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.9337620257944673, 'fast': 0.004876936789921968, 'dressed': 0.0024261044753391705, 'money': 0.002269318381312866, 'hair': 0.0018840684428209219}
2018-12-09 16:12:22,853 - lstmimpl - INFO - English: he is very enxp enxp <eos>
2018-12-09 16:12:22,853 - lstmimpl - INFO - German: hab ich nicht dexp dexp <eos>
2018-12-09 16:12:22,887 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.9990656764965496, 'here': 7.394712321948659e-05, 'money': 4.202914747007408e-05, 'tomorrow': 3.70379665184941e-05, 'hair': 3.1820098674202974e-05}
2018-12-09 16:12:22,888 - lstmimpl - INFO - English: i am him enxp enxp <eos>
2018-12-09 16:12:22,888 - lstmimpl - INFO - German: ich hat dexp dexp dexp <eos>
2018-12-09 16:12:22,922 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.9923214327771742, 'here': 0.0004518655273977878, 'money': 0.00035887825835618386, 'fast': 0.0003588116002184619, 'hair': 0.00027671041136278585}
2018-12-09 16:12:22,922 - lstmimpl - INFO - English: we are very enxp enxp <eos>
2018-12-09 16:12:22,923 - lstmimpl - INFO - German: ich war glucklich dexp dexp <eos>
2018-12-09 16:12:22,956 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.9814792867374817, 'money': 0.0007240710485912566, 'fast': 0.0006051416012413611, 'here': 0.0005823029756403803, 'dressed': 0.0004765802006329907}
2018-12-09 16:12:22,957 - lstmimpl - INFO - English: i am very enxp enxp <eos>
2018-12-09 16:12:22,957 - lstmimpl - INFO - German: ich liebe die sonne dexp <eos>
2018-12-09 16:12:22,991 - lstmimpl - INFO - Probabilites for word sonne : {'friend': 0.011757485668004466, 'father': 0.010200095776577326, 'cat': 0.010113642089730266, 'way': 0.009222104008117422, 'family': 0.009177734487140118}
2018-12-09 16:12:22,992 - lstmimpl - INFO - English: i have my friend enxp <eos>
2018-12-09 16:12:22,992 - lstmimpl - INFO - German: kann es das sein dexp <eos>
2018-12-09 16:12:23,026 - lstmimpl - INFO - Probabilites for word sein : {'you': 0.13199961993429338, 'it': 0.11942798536879577, 'that': 0.10948799784405651, 'tom': 0.08718897706200619, 'him': 0.07537308299676156}
2018-12-09 16:12:23,027 - lstmimpl - INFO - English: i dont know you enxp <eos>
2018-12-09 16:12:23,027 - lstmimpl - INFO - German: das ist unnutz dexp dexp <eos>
2018-12-09 16:12:23,066 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.9381748358853595, 'fast': 0.0038568975985511142, 'money': 0.0020980537849074506, 'dressed': 0.0018522828844387952, 'hair': 0.0017536776883832002}
2018-12-09 16:12:23,067 - lstmimpl - INFO - English: he is very enxp enxp <eos>
2018-12-09 16:12:23,067 - lstmimpl - INFO - German: er begann zu weinen dexp <eos>
2018-12-09 16:12:23,101 - lstmimpl - INFO - Probabilites for word weinen : {'you': 0.08850673696687203, 'that': 0.08260490780366687, 'him': 0.0813239995556712, 'it': 0.07862524372095274, 'tom': 0.061794219043222375}
2018-12-09 16:12:23,101 - lstmimpl - INFO - English: i dont know you enxp <eos>
2018-12-09 16:12:23,102 - lstmimpl - INFO - German: die pause ist vorbei dexp <eos>
2018-12-09 16:12:23,136 - lstmimpl - INFO - Probabilites for word vorbei : {'angry': 0.012616244555347642, 'enxp': 0.010450242661532985, 'money': 0.009408980076999493, 'dirty': 0.00933544702663464, 'black': 0.008772366823659668}
2018-12-09 16:12:23,136 - lstmimpl - INFO - English: he is not angry enxp <eos>
2018-12-09 16:12:23,137 - lstmimpl - INFO - German: wie du willst dexp dexp <eos>
2018-12-09 16:12:23,170 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.9837997489725541, 'money': 0.0006180012324935958, 'fast': 0.0005634298445791963, 'here': 0.0005612957181999007, 'please': 0.00039055243024423787}
2018-12-09 16:12:23,171 - lstmimpl - INFO - English: i am very enxp enxp <eos>
2018-12-09 16:12:23,171 - lstmimpl - INFO - German: die vater arbeiten dexp dexp <eos>
2018-12-09 16:12:23,208 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.9992347046628002, '<eos>': 0.00041159108773189146, 'me': 2.8909382453161447e-05, 'tom': 2.0931080231660068e-05, 'you': 2.037454852871142e-05}
2018-12-09 16:12:23,209 - lstmimpl - INFO - English: the father enxp enxp enxp enxp <eos>
2018-12-09 16:12:23,209 - lstmimpl - INFO - German: wir helfen euch aus dexp <eos>
2018-12-09 16:12:23,243 - lstmimpl - INFO - Probabilites for word aus : {'you': 0.11947822440465253, 'it': 0.09966751435306409, 'that': 0.0866749353700631, 'tom': 0.0781265767049235, 'him': 0.07469128006128782}
2018-12-09 16:12:23,244 - lstmimpl - INFO - English: i dont know you enxp <eos>
2018-12-09 16:12:23,244 - lstmimpl - INFO - German: tom gibt nicht auf dexp <eos>
2018-12-09 16:12:23,278 - lstmimpl - INFO - Probabilites for word auf : {'you': 0.09710229404828508, 'it': 0.08157899349627547, 'him': 0.07205102386315464, 'tom': 0.06854984768772344, 'that': 0.06815761079266713}
2018-12-09 16:12:23,278 - lstmimpl - INFO - English: i dont know you enxp <eos>
2018-12-09 16:12:23,279 - lstmimpl - INFO - German: ich mochte es nicht dexp <eos>
2018-12-09 16:12:23,312 - lstmimpl - INFO - Probabilites for word nicht : {'you': 0.1625090170824047, 'it': 0.15191235685776774, 'that': 0.11917622802713024, 'tom': 0.099709414211525, 'him': 0.0656438251031912}
2018-12-09 16:12:23,313 - lstmimpl - INFO - English: i dont know you enxp <eos>
2018-12-09 16:12:23,313 - lstmimpl - INFO - German: ich war nicht enttauscht dexp <eos>
2018-12-09 16:12:23,353 - lstmimpl - INFO - Probabilites for word enttauscht : {'money': 0.023857616198736376, 'way': 0.01278706796504395, 'friend': 0.010402242871863993, 'son': 0.00870158336970652, 'enxp': 0.00828827551463729}
2018-12-09 16:12:23,354 - lstmimpl - INFO - English: i have my money enxp <eos>
2018-12-09 16:12:23,354 - lstmimpl - INFO - German: das wasser ist hei dexp <eos>
2018-12-09 16:12:23,389 - lstmimpl - INFO - Probabilites for word hei : {'singer': 0.012251285833752954, 'doctor': 0.006573136351481079, 'friend': 0.006004739630117834, 'late': 0.005871985118455204, 'room': 0.0058513982761076045}
2018-12-09 16:12:23,390 - lstmimpl - INFO - English: he is a singer enxp <eos>
2018-12-09 16:12:23,390 - lstmimpl - INFO - German: wer ist tom dexp dexp <eos>
2018-12-09 16:12:23,424 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.7253326072361452, 'money': 0.009227884048103124, 'yesterday': 0.005901267405172746, 'hair': 0.005036415763575746, 'happy': 0.004863201520539619}
2018-12-09 16:12:23,424 - lstmimpl - INFO - English: i am very enxp enxp <eos>
2018-12-09 16:16:21,937 - lstmimpl - INFO - Epoch: 1, Iteration: 5500, Encoder Loss: 13.748841172683687, Decoder Loss: 12.636232561183919, Learning Rate: 0.1
2018-12-09 16:16:21,939 - lstmimpl - INFO - Testing Translate: German to English
2018-12-09 16:16:22,252 - lstmimpl - INFO - German: ich habe ein buch dexp <eos>
2018-12-09 16:16:22,286 - lstmimpl - INFO - Probabilites for word buch : {'woman': 0.0657748416858919, 'dream': 0.04491240412610701, 'map': 0.023971761766306113, 'idea': 0.02257273933638216, 'doctor': 0.02207928556635768}
2018-12-09 16:16:22,286 - lstmimpl - INFO - English: i have a woman enxp <eos>
2018-12-09 16:16:22,287 - lstmimpl - INFO - German: danke fur ihre helfen dexp <eos>
2018-12-09 16:16:22,321 - lstmimpl - INFO - Probabilites for word helfen : {'woman': 0.042433844551366964, 'dream': 0.026525228020130652, 'father': 0.0200589721410946, 'map': 0.02003086983487667, 'dog': 0.017415375395972602}
2018-12-09 16:16:22,321 - lstmimpl - INFO - English: i have a woman enxp <eos>
2018-12-09 16:16:22,322 - lstmimpl - INFO - German: ich habe ein fahrrad dexp <eos>
2018-12-09 16:16:22,380 - lstmimpl - INFO - Probabilites for word fahrrad : {'woman': 0.06494113046040899, 'dream': 0.04155505230008777, 'map': 0.025591371133538203, 'doctor': 0.021033917720513072, 'idea': 0.020558429150880634}
2018-12-09 16:16:22,380 - lstmimpl - INFO - English: i have a woman enxp <eos>
2018-12-09 16:16:22,381 - lstmimpl - INFO - German: er ist gut dexp dexp <eos>
2018-12-09 16:16:22,423 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.09018875087704295, 'woman': 0.028443134467004944, 'neighbor': 0.024803790640959663, 'hardworking': 0.02361775795588325, 'well': 0.020855897538293287}
2018-12-09 16:16:22,423 - lstmimpl - INFO - English: i am very enxp enxp <eos>
2018-12-09 16:16:22,424 - lstmimpl - INFO - German: hab ich nicht dexp dexp <eos>
2018-12-09 16:16:22,457 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.9897493522917951, 'time': 0.0011156854428941484, 'fast': 0.0006379586063779448, 'alone': 0.0006012959577199446, 'hair': 0.00037612300101170636}
2018-12-09 16:16:22,458 - lstmimpl - INFO - English: tom is thirsty enxp enxp <eos>
2018-12-09 16:16:22,458 - lstmimpl - INFO - German: ich hat dexp dexp dexp <eos>
2018-12-09 16:16:22,492 - lstmimpl - INFO - Probabilites for word dexp : {'dirty': 0.027845265503789796, 'delicious': 0.025354926868701833, 'angry': 0.02432635764917817, 'tall': 0.023384142307703627, 'true': 0.01796632933425928}
2018-12-09 16:16:22,493 - lstmimpl - INFO - English: the kept is dirty enxp <eos>
2018-12-09 16:16:22,493 - lstmimpl - INFO - German: ich war glucklich dexp dexp <eos>
2018-12-09 16:16:22,527 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.14375833889993764, 'fast': 0.06381753608165214, 'alone': 0.048486586430321034, 'time': 0.030792627140598886, 'hardworking': 0.020223449905802333}
2018-12-09 16:16:22,527 - lstmimpl - INFO - English: tom is very enxp enxp <eos>
2018-12-09 16:16:22,528 - lstmimpl - INFO - German: ich liebe die sonne dexp <eos>
2018-12-09 16:16:22,561 - lstmimpl - INFO - Probabilites for word sonne : {'woman': 0.048699251098762095, 'dream': 0.03187333546680593, 'map': 0.02018793236543592, 'father': 0.01898129521474601, 'song': 0.01866198727052687}
2018-12-09 16:16:22,562 - lstmimpl - INFO - English: i have a woman enxp <eos>
2018-12-09 16:16:22,562 - lstmimpl - INFO - German: kann es das sein dexp <eos>
2018-12-09 16:16:22,601 - lstmimpl - INFO - Probabilites for word sein : {'woman': 0.034253245358686506, 'map': 0.02167636755270202, 'doctor': 0.014926185115467137, 'father': 0.014654435986577946, 'job': 0.014272626521181114}
2018-12-09 16:16:22,601 - lstmimpl - INFO - English: i am a woman enxp <eos>
2018-12-09 16:16:22,602 - lstmimpl - INFO - German: das ist unnutz dexp dexp <eos>
2018-12-09 16:16:22,635 - lstmimpl - INFO - Probabilites for word dexp : {'woman': 0.03220251592241551, 'hardworking': 0.026942315676558817, 'neighbor': 0.02665008055601859, 'enxp': 0.025656202638438038, 'well': 0.01923581175918753}
2018-12-09 16:16:22,637 - lstmimpl - INFO - English: i am very woman enxp <eos>
2018-12-09 16:16:22,637 - lstmimpl - INFO - German: er begann zu weinen dexp <eos>
2018-12-09 16:16:22,671 - lstmimpl - INFO - Probabilites for word weinen : {'woman': 0.056308093596279515, 'dream': 0.025852070043761027, 'map': 0.02504030989861962, 'doctor': 0.020407601126618147, 'job': 0.019815626886232496}
2018-12-09 16:16:22,672 - lstmimpl - INFO - English: i am a woman enxp <eos>
2018-12-09 16:16:22,672 - lstmimpl - INFO - German: die pause ist vorbei dexp <eos>
2018-12-09 16:16:22,706 - lstmimpl - INFO - Probabilites for word vorbei : {'dirty': 0.06144715645522834, 'tall': 0.05787005708962868, 'thirsty': 0.05041284629443886, 'delicious': 0.03055727753605041, 'difficult': 0.028423005467643304}
2018-12-09 16:16:22,706 - lstmimpl - INFO - English: the father is dirty enxp <eos>
2018-12-09 16:16:22,707 - lstmimpl - INFO - German: wie du willst dexp dexp <eos>
2018-12-09 16:16:22,740 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.1650082917837334, 'fast': 0.07163480780315336, 'alone': 0.05529434862853066, 'time': 0.026654225959261268, 'well': 0.021128676780297475}
2018-12-09 16:16:22,741 - lstmimpl - INFO - English: tom is very enxp enxp <eos>
2018-12-09 16:16:22,741 - lstmimpl - INFO - German: die vater arbeiten dexp dexp <eos>
2018-12-09 16:16:22,775 - lstmimpl - INFO - Probabilites for word dexp : {'enxp': 0.999829348421051, '<eos>': 7.239122598270041e-05, 'tom': 1.4067492292606614e-05, 'here': 5.1244421266570334e-06, 'it': 3.4328154946144433e-06}
2018-12-09 16:16:22,776 - lstmimpl - INFO - English: the kept enxp enxp enxp <eos>
2018-12-09 16:16:22,776 - lstmimpl - INFO - German: wir helfen euch aus dexp <eos>
2018-12-09 16:16:22,810 - lstmimpl - INFO - Probabilites for word aus : {'woman': 0.0413472772398421, 'map': 0.023212618027986635, 'job': 0.017320054069750068, 'doctor': 0.015058154776285575, 'dream': 0.014628891187266407}
2018-12-09 16:16:22,811 - lstmimpl - INFO - English: i am a woman enxp <eos>
2018-12-09 16:16:22,811 - lstmimpl - INFO - German: tom gibt nicht auf dexp <eos>
2018-12-09 16:16:22,845 - lstmimpl - INFO - Probabilites for word auf : {'woman': 0.04526131307615739, 'map': 0.024043326370117434, 'job': 0.018104154392968332, 'doctor': 0.016361793358631475, 'dream': 0.015975133809658103}
2018-12-09 16:16:22,845 - lstmimpl - INFO - English: i am a woman enxp <eos>
2018-12-09 16:16:22,846 - lstmimpl - INFO - German: ich mochte es nicht dexp <eos>
2018-12-09 16:16:22,879 - lstmimpl - INFO - Probabilites for word nicht : {'woman': 0.02348235774715928, 'map': 0.017867051100765557, 'dog': 0.0170937036741683, 'father': 0.0161434405564009, 'job': 0.011659485418800412}
2018-12-09 16:16:22,880 - lstmimpl - INFO - English: i have a woman enxp <eos>
2018-12-09 16:16:22,880 - lstmimpl - INFO - German: ich war nicht enttauscht dexp <eos>
2018-12-09 16:16:22,914 - lstmimpl - INFO - Probabilites for word enttauscht : {'woman': 0.05777442412189679, 'dream': 0.025416318040377122, 'map': 0.024124506951923756, 'job': 0.02307650226508033, 'song': 0.018422351311091687}
2018-12-09 16:16:22,915 - lstmimpl - INFO - English: i have a woman enxp <eos>
2018-12-09 16:16:22,915 - lstmimpl - INFO - German: das wasser ist hei dexp <eos>
2018-12-09 16:16:22,949 - lstmimpl - INFO - Probabilites for word hei : {'tall': 0.05984371429113688, 'dirty': 0.053243861880073386, 'thirsty': 0.04797583933741446, 'difficult': 0.032163189824822046, 'delicious': 0.03071233511366654}
2018-12-09 16:16:22,949 - lstmimpl - INFO - English: the father is tall enxp <eos>
2018-12-09 16:16:22,950 - lstmimpl - INFO - German: wer ist tom dexp dexp <eos>
2018-12-09 16:16:22,983 - lstmimpl - INFO - Probabilites for word dexp : {'woman': 0.060704431919284284, 'dream': 0.024081837428479167, 'job': 0.02132407473167286, 'map': 0.020006014701208382, 'neighbor': 0.016936398683902423}
2018-12-09 16:16:22,984 - lstmimpl - INFO - English: i am a woman enxp <eos>
2018-12-09 16:20:15,494 - lstmimpl - INFO - Epoch: 1, Iteration: 6000, Encoder Loss: 21.419215731919802, Decoder Loss: 17.000181895657544, Learning Rate: 0.1
2018-12-09 16:20:15,495 - lstmimpl - INFO - Testing Translate: German to English
2018-12-09 16:20:15,496 - lstmimpl - INFO - German: ich habe ein buch dexp <eos>
2018-12-09 16:20:15,530 - lstmimpl - INFO - Probabilites for word buch : {'doctor': 0.030497137000360674, 'sun': 0.016266175879100165, 'lot': 0.014665059207036344, 'door': 0.014184432121097398, 'dictionary': 0.011704939296721272}
2018-12-09 16:20:15,531 - lstmimpl - INFO - English: i have a doctor enxp <eos>
2018-12-09 16:20:15,531 - lstmimpl - INFO - German: danke fur ihre helfen dexp <eos>
2018-12-09 16:20:15,571 - lstmimpl - INFO - Probabilites for word helfen : {'tom': 0.19502264809103195, 'it': 0.19156087872576458, 'that': 0.15986474760193503, 'you': 0.08348544797173046, 'me': 0.034874214772230065}
2018-12-09 16:20:15,571 - lstmimpl - INFO - English: i dont know tom enxp <eos>
2018-12-09 16:20:15,572 - lstmimpl - INFO - German: ich habe ein fahrrad dexp <eos>
2018-12-09 16:20:15,605 - lstmimpl - INFO - Probabilites for word fahrrad : {'doctor': 0.02941808263307431, 'door': 0.01372513963019815, 'lot': 0.013590453666955455, 'dictionary': 0.012974138691184415, 'sun': 0.011278658452472072}