-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVelocity_20140509.txt
3263 lines (3263 loc) · 562 KB
/
Velocity_20140509.txt
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
Neural Network Prediction (Estimated): 0.002165 Expected Value (Desired): 0.000000 Error: -0.002165 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002146 Expected Value (Desired): 0.000000 Error: -0.002146 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002215 Expected Value (Desired): 0.008662 Error: 0.006447 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002539 Expected Value (Desired): 0.000000 Error: -0.002539 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.008660
Neural Network Prediction (Estimated): 0.002450 Expected Value (Desired): 0.002165 Error: -0.000285 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002469 Expected Value (Desired): 0.000000 Error: -0.002469 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.002165
Neural Network Prediction (Estimated): 0.002456 Expected Value (Desired): 0.000000 Error: -0.002456 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002510 Expected Value (Desired): 0.000000 Error: -0.002510 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002602 Expected Value (Desired): 0.002165 Error: -0.000437 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002758 Expected Value (Desired): 0.000000 Error: -0.002758 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.002165
Neural Network Prediction (Estimated): 0.002749 Expected Value (Desired): 0.000000 Error: -0.002749 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002661 Expected Value (Desired): 0.000000 Error: -0.002661 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002543 Expected Value (Desired): 0.000000 Error: -0.002543 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002468 Expected Value (Desired): 0.000000 Error: -0.002468 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002479 Expected Value (Desired): 0.000000 Error: -0.002479 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002469 Expected Value (Desired): 0.000000 Error: -0.002469 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002470 Expected Value (Desired): 0.000000 Error: -0.002470 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002485 Expected Value (Desired): 0.000000 Error: -0.002485 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002504 Expected Value (Desired): 0.000000 Error: -0.002504 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002515 Expected Value (Desired): 0.000000 Error: -0.002515 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002505 Expected Value (Desired): 0.000000 Error: -0.002505 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002505 Expected Value (Desired): 0.000000 Error: -0.002505 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002509 Expected Value (Desired): 0.000000 Error: -0.002509 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002480 Expected Value (Desired): 0.000000 Error: -0.002480 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002472 Expected Value (Desired): 0.000000 Error: -0.002472 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002455 Expected Value (Desired): 0.000000 Error: -0.002455 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002455 Expected Value (Desired): 0.000000 Error: -0.002455 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002462 Expected Value (Desired): 0.000000 Error: -0.002462 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002474 Expected Value (Desired): 0.000000 Error: -0.002474 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002475 Expected Value (Desired): 0.000000 Error: -0.002475 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002485 Expected Value (Desired): 0.000000 Error: -0.002485 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002494 Expected Value (Desired): 0.000000 Error: -0.002494 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002478 Expected Value (Desired): 0.000000 Error: -0.002478 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002479 Expected Value (Desired): 0.000000 Error: -0.002479 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002495 Expected Value (Desired): 0.000000 Error: -0.002495 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002482 Expected Value (Desired): 0.000000 Error: -0.002482 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002474 Expected Value (Desired): 0.000000 Error: -0.002474 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002463 Expected Value (Desired): 0.002165 Error: -0.000298 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002522 Expected Value (Desired): 0.000000 Error: -0.002522 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.002165
Neural Network Prediction (Estimated): 0.002483 Expected Value (Desired): 0.004331 Error: 0.001848 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002607 Expected Value (Desired): 0.000000 Error: -0.002607 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.004330
Neural Network Prediction (Estimated): 0.002515 Expected Value (Desired): 0.000000 Error: -0.002515 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002459 Expected Value (Desired): 0.000000 Error: -0.002459 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002448 Expected Value (Desired): 0.000000 Error: -0.002448 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002478 Expected Value (Desired): 0.000000 Error: -0.002478 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002504 Expected Value (Desired): 0.000000 Error: -0.002504 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002510 Expected Value (Desired): 0.000000 Error: -0.002510 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002511 Expected Value (Desired): 0.000000 Error: -0.002511 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002492 Expected Value (Desired): 0.000000 Error: -0.002492 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002485 Expected Value (Desired): 0.000000 Error: -0.002485 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002481 Expected Value (Desired): 0.008662 Error: 0.006181 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002774 Expected Value (Desired): 0.000000 Error: -0.002774 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.008660
Neural Network Prediction (Estimated): 0.002606 Expected Value (Desired): 0.000000 Error: -0.002606 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002492 Expected Value (Desired): 0.000000 Error: -0.002492 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002455 Expected Value (Desired): 0.000000 Error: -0.002455 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002481 Expected Value (Desired): 0.000000 Error: -0.002481 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002513 Expected Value (Desired): 0.000000 Error: -0.002513 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002542 Expected Value (Desired): 0.000000 Error: -0.002542 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002531 Expected Value (Desired): 0.000000 Error: -0.002531 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002529 Expected Value (Desired): 0.000000 Error: -0.002529 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002512 Expected Value (Desired): 0.000000 Error: -0.002512 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002491 Expected Value (Desired): 0.000000 Error: -0.002491 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002488 Expected Value (Desired): 0.000000 Error: -0.002488 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002470 Expected Value (Desired): 0.000000 Error: -0.002470 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002457 Expected Value (Desired): 0.000000 Error: -0.002457 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002463 Expected Value (Desired): 0.000000 Error: -0.002463 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002455 Expected Value (Desired): 0.000000 Error: -0.002455 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002479 Expected Value (Desired): 0.000000 Error: -0.002479 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002488 Expected Value (Desired): 0.000000 Error: -0.002488 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002489 Expected Value (Desired): 0.000000 Error: -0.002489 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002478 Expected Value (Desired): 0.000000 Error: -0.002478 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002466 Expected Value (Desired): 0.000000 Error: -0.002466 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002465 Expected Value (Desired): 0.000000 Error: -0.002465 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002466 Expected Value (Desired): 0.000000 Error: -0.002466 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002473 Expected Value (Desired): 0.000000 Error: -0.002473 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.002473 Expected Value (Desired): 0.000000 Error: -0.002473 Throttle_Effort: 0.000000 Brake_Effort: 100.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): -0.006357 Expected Value (Desired): 0.000000 Error: 0.006357 Throttle_Effort: 5.649700 Brake_Effort: 17.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): -0.009721 Expected Value (Desired): 0.000000 Error: 0.009721 Throttle_Effort: 5.720700 Brake_Effort: 17.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): -0.012389 Expected Value (Desired): 0.000000 Error: 0.012389 Throttle_Effort: 5.969700 Brake_Effort: 17.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): -0.020822 Expected Value (Desired): 0.000000 Error: 0.020822 Throttle_Effort: 11.091900 Brake_Effort: 17.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): -0.021724 Expected Value (Desired): 0.000000 Error: 0.021724 Throttle_Effort: 11.173300 Brake_Effort: 17.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): -0.015908 Expected Value (Desired): 0.000000 Error: 0.015908 Throttle_Effort: 11.306200 Brake_Effort: 17.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): -0.011469 Expected Value (Desired): 0.015158 Error: 0.026627 Throttle_Effort: 11.411600 Brake_Effort: 17.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): -0.005589 Expected Value (Desired): 0.004331 Error: 0.009920 Throttle_Effort: 11.530100 Brake_Effort: 17.000000 Current_Velocity: 0.015160
Neural Network Prediction (Estimated): 0.001749 Expected Value (Desired): 0.017324 Error: 0.015575 Throttle_Effort: 11.224100 Brake_Effort: 17.000000 Current_Velocity: 0.004330
Neural Network Prediction (Estimated): 0.010615 Expected Value (Desired): 0.000000 Error: -0.010615 Throttle_Effort: 10.177500 Brake_Effort: 17.000000 Current_Velocity: 0.017325
Neural Network Prediction (Estimated): 0.004868 Expected Value (Desired): 0.021655 Error: 0.016787 Throttle_Effort: 6.351500 Brake_Effort: 17.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.000132 Expected Value (Desired): 0.008662 Error: 0.008530 Throttle_Effort: 11.984000 Brake_Effort: 17.000000 Current_Velocity: 0.021655
Neural Network Prediction (Estimated): -0.005581 Expected Value (Desired): 0.023820 Error: 0.029401 Throttle_Effort: 11.617000 Brake_Effort: 17.000000 Current_Velocity: 0.008660
Neural Network Prediction (Estimated): -0.000483 Expected Value (Desired): 0.000000 Error: 0.000483 Throttle_Effort: 10.827800 Brake_Effort: 17.000000 Current_Velocity: 0.023820
Neural Network Prediction (Estimated): 0.022037 Expected Value (Desired): 0.015158 Error: -0.006879 Throttle_Effort: 6.911500 Brake_Effort: 17.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.015738 Expected Value (Desired): 0.002165 Error: -0.013573 Throttle_Effort: 7.390300 Brake_Effort: 17.000000 Current_Velocity: 0.015160
Neural Network Prediction (Estimated): 0.011493 Expected Value (Desired): 0.002165 Error: -0.009328 Throttle_Effort: 7.031500 Brake_Effort: 17.000000 Current_Velocity: 0.002165
Neural Network Prediction (Estimated): 0.004526 Expected Value (Desired): 0.000000 Error: -0.004526 Throttle_Effort: 7.289300 Brake_Effort: 17.000000 Current_Velocity: 0.002165
Neural Network Prediction (Estimated): 0.009310 Expected Value (Desired): 0.000000 Error: -0.009310 Throttle_Effort: 7.491200 Brake_Effort: 17.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.019535 Expected Value (Desired): 0.000000 Error: -0.019535 Throttle_Effort: 7.575300 Brake_Effort: 17.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.017208 Expected Value (Desired): 0.000000 Error: -0.017208 Throttle_Effort: 7.619700 Brake_Effort: 17.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.016910 Expected Value (Desired): 0.006496 Error: -0.010414 Throttle_Effort: 8.735200 Brake_Effort: 17.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.007585 Expected Value (Desired): 0.023820 Error: 0.016235 Throttle_Effort: 12.570900 Brake_Effort: 17.000000 Current_Velocity: 0.006495
Neural Network Prediction (Estimated): 0.013435 Expected Value (Desired): 0.025986 Error: 0.012551 Throttle_Effort: 7.658200 Brake_Effort: 17.000000 Current_Velocity: 0.023820
Neural Network Prediction (Estimated): 0.015131 Expected Value (Desired): 0.000000 Error: -0.015131 Throttle_Effort: 7.336200 Brake_Effort: 17.000000 Current_Velocity: 0.025985
Neural Network Prediction (Estimated): 0.024313 Expected Value (Desired): 0.043309 Error: 0.018996 Throttle_Effort: 8.759300 Brake_Effort: 17.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.031504 Expected Value (Desired): 0.069295 Error: 0.037791 Throttle_Effort: 13.163801 Brake_Effort: 17.000000 Current_Velocity: 0.043310
Neural Network Prediction (Estimated): 0.044780 Expected Value (Desired): 0.082287 Error: 0.037507 Throttle_Effort: 11.539800 Brake_Effort: 17.000000 Current_Velocity: 0.069295
Neural Network Prediction (Estimated): 0.047575 Expected Value (Desired): 0.038978 Error: -0.008597 Throttle_Effort: 17.117999 Brake_Effort: 17.000000 Current_Velocity: 0.082285
Neural Network Prediction (Estimated): 0.065334 Expected Value (Desired): 0.025986 Error: -0.039348 Throttle_Effort: 14.173900 Brake_Effort: 17.000000 Current_Velocity: 0.038980
Neural Network Prediction (Estimated): 0.065444 Expected Value (Desired): 0.034647 Error: -0.030797 Throttle_Effort: 14.907899 Brake_Effort: 17.000000 Current_Velocity: 0.025985
Neural Network Prediction (Estimated): 0.085473 Expected Value (Desired): 0.132093 Error: 0.046620 Throttle_Effort: 15.712300 Brake_Effort: 17.000000 Current_Velocity: 0.034645
Neural Network Prediction (Estimated): 0.091511 Expected Value (Desired): 0.240366 Error: 0.148855 Throttle_Effort: 10.545900 Brake_Effort: 17.000000 Current_Velocity: 0.132095
Neural Network Prediction (Estimated): 0.119412 Expected Value (Desired): 0.249028 Error: 0.129616 Throttle_Effort: 9.046300 Brake_Effort: 17.000000 Current_Velocity: 0.240365
Neural Network Prediction (Estimated): 0.111264 Expected Value (Desired): 0.149417 Error: 0.038153 Throttle_Effort: 7.506500 Brake_Effort: 17.000000 Current_Velocity: 0.249030
Neural Network Prediction (Estimated): 0.086089 Expected Value (Desired): 0.071460 Error: -0.014629 Throttle_Effort: 5.761600 Brake_Effort: 17.000000 Current_Velocity: 0.149415
Neural Network Prediction (Estimated): 0.064666 Expected Value (Desired): 0.000000 Error: -0.064666 Throttle_Effort: 12.352100 Brake_Effort: 17.000000 Current_Velocity: 0.071460
Neural Network Prediction (Estimated): 0.059233 Expected Value (Desired): 0.023820 Error: -0.035413 Throttle_Effort: 12.662600 Brake_Effort: 17.000000 Current_Velocity: 0.000000
Neural Network Prediction (Estimated): 0.088203 Expected Value (Desired): 0.082287 Error: -0.005916 Throttle_Effort: 10.095600 Brake_Effort: 17.000000 Current_Velocity: 0.023820
Neural Network Prediction (Estimated): 0.124420 Expected Value (Desired): 0.164575 Error: 0.040155 Throttle_Effort: 9.388200 Brake_Effort: 17.000000 Current_Velocity: 0.082285
Neural Network Prediction (Estimated): 0.152443 Expected Value (Desired): 0.272848 Error: 0.120405 Throttle_Effort: 14.402600 Brake_Effort: 17.000000 Current_Velocity: 0.164575
Neural Network Prediction (Estimated): 0.194565 Expected Value (Desired): 0.253359 Error: 0.058794 Throttle_Effort: 14.388700 Brake_Effort: 17.000000 Current_Velocity: 0.272850
Neural Network Prediction (Estimated): 0.214548 Expected Value (Desired): 0.179733 Error: -0.034815 Throttle_Effort: 16.680500 Brake_Effort: 17.000000 Current_Velocity: 0.253360
Neural Network Prediction (Estimated): 0.208553 Expected Value (Desired): 0.129928 Error: -0.078625 Throttle_Effort: 10.896600 Brake_Effort: 17.000000 Current_Velocity: 0.179735
Neural Network Prediction (Estimated): 0.191797 Expected Value (Desired): 0.160244 Error: -0.031553 Throttle_Effort: 11.730500 Brake_Effort: 17.000000 Current_Velocity: 0.129930
Neural Network Prediction (Estimated): 0.178858 Expected Value (Desired): 0.320488 Error: 0.141630 Throttle_Effort: 13.532700 Brake_Effort: 17.000000 Current_Velocity: 0.160245
Neural Network Prediction (Estimated): 0.227854 Expected Value (Desired): 0.400610 Error: 0.172756 Throttle_Effort: 13.076200 Brake_Effort: 17.000000 Current_Velocity: 0.320490
Neural Network Prediction (Estimated): 0.304492 Expected Value (Desired): 0.391948 Error: 0.087456 Throttle_Effort: 10.054200 Brake_Effort: 17.000000 Current_Velocity: 0.400610
Neural Network Prediction (Estimated): 0.301103 Expected Value (Desired): 0.251193 Error: -0.049910 Throttle_Effort: 16.126800 Brake_Effort: 17.000000 Current_Velocity: 0.391950
Neural Network Prediction (Estimated): 0.287978 Expected Value (Desired): 0.171071 Error: -0.116907 Throttle_Effort: 12.928601 Brake_Effort: 17.000000 Current_Velocity: 0.251195
Neural Network Prediction (Estimated): 0.245559 Expected Value (Desired): 0.227373 Error: -0.018186 Throttle_Effort: 15.071100 Brake_Effort: 17.000000 Current_Velocity: 0.171070
Neural Network Prediction (Estimated): 0.284011 Expected Value (Desired): 0.326984 Error: 0.042973 Throttle_Effort: 16.837500 Brake_Effort: 17.000000 Current_Velocity: 0.227375
Neural Network Prediction (Estimated): 0.341940 Expected Value (Desired): 0.534869 Error: 0.192929 Throttle_Effort: 15.202101 Brake_Effort: 17.000000 Current_Velocity: 0.326985
Neural Network Prediction (Estimated): 0.437858 Expected Value (Desired): 0.558689 Error: 0.120831 Throttle_Effort: 15.639800 Brake_Effort: 17.000000 Current_Velocity: 0.534870
Neural Network Prediction (Estimated): 0.493350 Expected Value (Desired): 0.502387 Error: 0.009037 Throttle_Effort: 9.726700 Brake_Effort: 17.000000 Current_Velocity: 0.558690
Neural Network Prediction (Estimated): 0.486351 Expected Value (Desired): 0.417934 Error: -0.068417 Throttle_Effort: 9.256600 Brake_Effort: 17.000000 Current_Velocity: 0.502385
Neural Network Prediction (Estimated): 0.446202 Expected Value (Desired): 0.329150 Error: -0.117052 Throttle_Effort: 9.957500 Brake_Effort: 17.000000 Current_Velocity: 0.417935
Neural Network Prediction (Estimated): 0.382055 Expected Value (Desired): 0.368128 Error: -0.013927 Throttle_Effort: 10.867900 Brake_Effort: 17.000000 Current_Velocity: 0.329150
Neural Network Prediction (Estimated): 0.384870 Expected Value (Desired): 0.422265 Error: 0.037395 Throttle_Effort: 10.711600 Brake_Effort: 17.000000 Current_Velocity: 0.368130
Neural Network Prediction (Estimated): 0.462509 Expected Value (Desired): 0.482898 Error: 0.020389 Throttle_Effort: 10.193300 Brake_Effort: 17.000000 Current_Velocity: 0.422265
Neural Network Prediction (Estimated): 0.512317 Expected Value (Desired): 0.573847 Error: 0.061530 Throttle_Effort: 7.544700 Brake_Effort: 17.000000 Current_Velocity: 0.482900
Neural Network Prediction (Estimated): 0.529695 Expected Value (Desired): 0.554358 Error: 0.024663 Throttle_Effort: 11.790400 Brake_Effort: 17.000000 Current_Velocity: 0.573845
Neural Network Prediction (Estimated): 0.562730 Expected Value (Desired): 0.547861 Error: -0.014869 Throttle_Effort: 6.752600 Brake_Effort: 17.000000 Current_Velocity: 0.554360
Neural Network Prediction (Estimated): 0.560045 Expected Value (Desired): 0.485063 Error: -0.074982 Throttle_Effort: 6.295200 Brake_Effort: 17.000000 Current_Velocity: 0.547860
Neural Network Prediction (Estimated): 0.525253 Expected Value (Desired): 0.506718 Error: -0.018535 Throttle_Effort: 17.590000 Brake_Effort: 17.000000 Current_Velocity: 0.485065
Neural Network Prediction (Estimated): 0.551088 Expected Value (Desired): 0.556523 Error: 0.005435 Throttle_Effort: 18.381900 Brake_Effort: 17.000000 Current_Velocity: 0.506720
Neural Network Prediction (Estimated): 0.609169 Expected Value (Desired): 0.658300 Error: 0.049131 Throttle_Effort: 18.189600 Brake_Effort: 17.000000 Current_Velocity: 0.556525
Neural Network Prediction (Estimated): 0.658439 Expected Value (Desired): 0.705940 Error: 0.047501 Throttle_Effort: 19.919400 Brake_Effort: 17.000000 Current_Velocity: 0.658300
Neural Network Prediction (Estimated): 0.753016 Expected Value (Desired): 0.796889 Error: 0.043873 Throttle_Effort: 5.549400 Brake_Effort: 17.000000 Current_Velocity: 0.705940
Neural Network Prediction (Estimated): 0.818637 Expected Value (Desired): 0.833702 Error: 0.015065 Throttle_Effort: 7.759500 Brake_Effort: 17.000000 Current_Velocity: 0.796890
Neural Network Prediction (Estimated): 0.811879 Expected Value (Desired): 0.818544 Error: 0.006665 Throttle_Effort: 6.443700 Brake_Effort: 17.000000 Current_Velocity: 0.833700
Neural Network Prediction (Estimated): 0.742074 Expected Value (Desired): 0.775235 Error: 0.033161 Throttle_Effort: 5.699200 Brake_Effort: 17.000000 Current_Velocity: 0.818545
Neural Network Prediction (Estimated): 0.697236 Expected Value (Desired): 0.612825 Error: -0.084411 Throttle_Effort: 7.045800 Brake_Effort: 17.000000 Current_Velocity: 0.775235
Neural Network Prediction (Estimated): 0.626125 Expected Value (Desired): 0.571681 Error: -0.054444 Throttle_Effort: 8.316000 Brake_Effort: 17.000000 Current_Velocity: 0.612825
Neural Network Prediction (Estimated): 0.624785 Expected Value (Desired): 0.632314 Error: 0.007529 Throttle_Effort: 10.975600 Brake_Effort: 17.000000 Current_Velocity: 0.571680
Neural Network Prediction (Estimated): 0.664255 Expected Value (Desired): 0.742753 Error: 0.078498 Throttle_Effort: 17.192100 Brake_Effort: 17.000000 Current_Velocity: 0.632315
Neural Network Prediction (Estimated): 0.785048 Expected Value (Desired): 0.931148 Error: 0.146100 Throttle_Effort: 16.544500 Brake_Effort: 17.000000 Current_Velocity: 0.742755
Neural Network Prediction (Estimated): 0.970480 Expected Value (Desired): 0.974457 Error: 0.003977 Throttle_Effort: 12.580600 Brake_Effort: 17.000000 Current_Velocity: 0.931150
Neural Network Prediction (Estimated): 1.084614 Expected Value (Desired): 0.937644 Error: -0.146970 Throttle_Effort: 2.239800 Brake_Effort: 17.000000 Current_Velocity: 0.974455
Neural Network Prediction (Estimated): 1.044224 Expected Value (Desired): 0.877011 Error: -0.167213 Throttle_Effort: 10.591600 Brake_Effort: 17.000000 Current_Velocity: 0.937645
Neural Network Prediction (Estimated): 0.879013 Expected Value (Desired): 0.885673 Error: 0.006660 Throttle_Effort: 11.055400 Brake_Effort: 17.000000 Current_Velocity: 0.877010
Neural Network Prediction (Estimated): 0.860207 Expected Value (Desired): 0.885673 Error: 0.025466 Throttle_Effort: 12.373500 Brake_Effort: 17.000000 Current_Velocity: 0.885675
Neural Network Prediction (Estimated): 0.853007 Expected Value (Desired): 0.822875 Error: -0.030132 Throttle_Effort: 14.244699 Brake_Effort: 17.000000 Current_Velocity: 0.885675
Neural Network Prediction (Estimated): 0.878482 Expected Value (Desired): 0.853191 Error: -0.025291 Throttle_Effort: 14.115800 Brake_Effort: 17.000000 Current_Velocity: 0.822875
Neural Network Prediction (Estimated): 0.885598 Expected Value (Desired): 0.993946 Error: 0.108348 Throttle_Effort: 15.509100 Brake_Effort: 17.000000 Current_Velocity: 0.853190
Neural Network Prediction (Estimated): 0.976546 Expected Value (Desired): 1.147694 Error: 0.171148 Throttle_Effort: 15.817000 Brake_Effort: 17.000000 Current_Velocity: 0.993945
Neural Network Prediction (Estimated): 1.111738 Expected Value (Desired): 1.171514 Error: 0.059776 Throttle_Effort: 17.661101 Brake_Effort: 17.000000 Current_Velocity: 1.147695
Neural Network Prediction (Estimated): 1.188748 Expected Value (Desired): 1.167183 Error: -0.021565 Throttle_Effort: 12.112300 Brake_Effort: 17.000000 Current_Velocity: 1.171515
Neural Network Prediction (Estimated): 1.214092 Expected Value (Desired): 1.134701 Error: -0.079391 Throttle_Effort: 11.638700 Brake_Effort: 17.000000 Current_Velocity: 1.167185
Neural Network Prediction (Estimated): 1.204861 Expected Value (Desired): 1.093557 Error: -0.111304 Throttle_Effort: 11.211300 Brake_Effort: 17.000000 Current_Velocity: 1.134700
Neural Network Prediction (Estimated): 1.131248 Expected Value (Desired): 1.084895 Error: -0.046353 Throttle_Effort: 9.498900 Brake_Effort: 17.000000 Current_Velocity: 1.093555
Neural Network Prediction (Estimated): 1.131667 Expected Value (Desired): 1.126039 Error: -0.005628 Throttle_Effort: 10.280300 Brake_Effort: 17.000000 Current_Velocity: 1.084895
Neural Network Prediction (Estimated): 1.178270 Expected Value (Desired): 1.113046 Error: -0.065224 Throttle_Effort: 10.629000 Brake_Effort: 17.000000 Current_Velocity: 1.126040
Neural Network Prediction (Estimated): 1.186769 Expected Value (Desired): 1.084895 Error: -0.101874 Throttle_Effort: 11.327100 Brake_Effort: 17.000000 Current_Velocity: 1.113045
Neural Network Prediction (Estimated): 1.218266 Expected Value (Desired): 1.095723 Error: -0.122543 Throttle_Effort: 15.422100 Brake_Effort: 17.000000 Current_Velocity: 1.084895
Neural Network Prediction (Estimated): 1.214640 Expected Value (Desired): 1.156356 Error: -0.058284 Throttle_Effort: 12.585600 Brake_Effort: 17.000000 Current_Velocity: 1.095725
Neural Network Prediction (Estimated): 1.270117 Expected Value (Desired): 1.273290 Error: 0.003173 Throttle_Effort: 11.186100 Brake_Effort: 17.000000 Current_Velocity: 1.156355
Neural Network Prediction (Estimated): 1.308874 Expected Value (Desired): 1.318765 Error: 0.009891 Throttle_Effort: 14.264899 Brake_Effort: 17.000000 Current_Velocity: 1.273290
Neural Network Prediction (Estimated): 1.350594 Expected Value (Desired): 1.359909 Error: 0.009315 Throttle_Effort: 16.579400 Brake_Effort: 17.000000 Current_Velocity: 1.318765
Neural Network Prediction (Estimated): 1.376315 Expected Value (Desired): 1.320931 Error: -0.055384 Throttle_Effort: 15.972500 Brake_Effort: 17.000000 Current_Velocity: 1.359910
Neural Network Prediction (Estimated): 1.398636 Expected Value (Desired): 1.229981 Error: -0.168655 Throttle_Effort: 15.140700 Brake_Effort: 17.000000 Current_Velocity: 1.320930
Neural Network Prediction (Estimated): 1.402062 Expected Value (Desired): 1.299276 Error: -0.102786 Throttle_Effort: 15.943700 Brake_Effort: 17.000000 Current_Velocity: 1.229980
Neural Network Prediction (Estimated): 1.412071 Expected Value (Desired): 1.392391 Error: -0.019680 Throttle_Effort: 16.775800 Brake_Effort: 17.000000 Current_Velocity: 1.299275
Neural Network Prediction (Estimated): 1.478506 Expected Value (Desired): 1.481175 Error: 0.002669 Throttle_Effort: 15.869001 Brake_Effort: 17.000000 Current_Velocity: 1.392390
Neural Network Prediction (Estimated): 1.494484 Expected Value (Desired): 1.585117 Error: 0.090633 Throttle_Effort: 16.204201 Brake_Effort: 17.000000 Current_Velocity: 1.481175
Neural Network Prediction (Estimated): 1.560120 Expected Value (Desired): 1.535311 Error: -0.024809 Throttle_Effort: 10.441800 Brake_Effort: 17.000000 Current_Velocity: 1.585115
Neural Network Prediction (Estimated): 1.503609 Expected Value (Desired): 1.489836 Error: -0.013773 Throttle_Effort: 9.189900 Brake_Effort: 17.000000 Current_Velocity: 1.535310
Neural Network Prediction (Estimated): 1.443992 Expected Value (Desired): 1.468182 Error: 0.024190 Throttle_Effort: 15.127499 Brake_Effort: 17.000000 Current_Velocity: 1.489835
Neural Network Prediction (Estimated): 1.403499 Expected Value (Desired): 1.463851 Error: 0.060352 Throttle_Effort: 15.943000 Brake_Effort: 17.000000 Current_Velocity: 1.468180
Neural Network Prediction (Estimated): 1.464925 Expected Value (Desired): 1.496333 Error: 0.031408 Throttle_Effort: 16.368400 Brake_Effort: 17.000000 Current_Velocity: 1.463850
Neural Network Prediction (Estimated): 1.539490 Expected Value (Desired): 1.496333 Error: -0.043157 Throttle_Effort: 16.774400 Brake_Effort: 17.000000 Current_Velocity: 1.496335
Neural Network Prediction (Estimated): 1.624667 Expected Value (Desired): 1.595944 Error: -0.028723 Throttle_Effort: 16.276699 Brake_Effort: 17.000000 Current_Velocity: 1.496335
Neural Network Prediction (Estimated): 1.688371 Expected Value (Desired): 1.706382 Error: 0.018011 Throttle_Effort: 17.082000 Brake_Effort: 17.000000 Current_Velocity: 1.595945
Neural Network Prediction (Estimated): 1.746483 Expected Value (Desired): 1.751857 Error: 0.005374 Throttle_Effort: 15.246899 Brake_Effort: 17.000000 Current_Velocity: 1.706380
Neural Network Prediction (Estimated): 1.763196 Expected Value (Desired): 1.751857 Error: -0.011339 Throttle_Effort: 13.630000 Brake_Effort: 17.000000 Current_Velocity: 1.751855
Neural Network Prediction (Estimated): 1.755782 Expected Value (Desired): 1.697721 Error: -0.058061 Throttle_Effort: 10.727700 Brake_Effort: 17.000000 Current_Velocity: 1.751855
Neural Network Prediction (Estimated): 1.656131 Expected Value (Desired): 1.630591 Error: -0.025540 Throttle_Effort: 20.701200 Brake_Effort: 17.000000 Current_Velocity: 1.697720
Neural Network Prediction (Estimated): 1.644598 Expected Value (Desired): 1.673901 Error: 0.029303 Throttle_Effort: 21.738601 Brake_Effort: 17.000000 Current_Velocity: 1.630590
Neural Network Prediction (Estimated): 1.744792 Expected Value (Desired): 1.756188 Error: 0.011396 Throttle_Effort: 22.460100 Brake_Effort: 17.000000 Current_Velocity: 1.673900
Neural Network Prediction (Estimated): 1.841985 Expected Value (Desired): 1.805994 Error: -0.035991 Throttle_Effort: 11.492200 Brake_Effort: 17.000000 Current_Velocity: 1.756190
Neural Network Prediction (Estimated): 1.898484 Expected Value (Desired): 1.957576 Error: 0.059092 Throttle_Effort: 15.740401 Brake_Effort: 17.000000 Current_Velocity: 1.805995
Neural Network Prediction (Estimated): 1.971621 Expected Value (Desired): 2.029036 Error: 0.057415 Throttle_Effort: 14.570899 Brake_Effort: 17.000000 Current_Velocity: 1.957575
Neural Network Prediction (Estimated): 2.004966 Expected Value (Desired): 1.979230 Error: -0.025736 Throttle_Effort: 12.330500 Brake_Effort: 17.000000 Current_Velocity: 2.029035
Neural Network Prediction (Estimated): 1.981478 Expected Value (Desired): 1.892612 Error: -0.088866 Throttle_Effort: 10.641000 Brake_Effort: 17.000000 Current_Velocity: 1.979230
Neural Network Prediction (Estimated): 1.920274 Expected Value (Desired): 1.706382 Error: -0.213892 Throttle_Effort: 11.264200 Brake_Effort: 17.000000 Current_Velocity: 1.892610
Neural Network Prediction (Estimated): 1.829863 Expected Value (Desired): 1.736699 Error: -0.093164 Throttle_Effort: 13.006601 Brake_Effort: 17.000000 Current_Velocity: 1.706380
Neural Network Prediction (Estimated): 1.859416 Expected Value (Desired): 1.831979 Error: -0.027436 Throttle_Effort: 15.939900 Brake_Effort: 17.000000 Current_Velocity: 1.736700
Neural Network Prediction (Estimated): 1.956858 Expected Value (Desired): 1.968403 Error: 0.011545 Throttle_Effort: 20.316701 Brake_Effort: 17.000000 Current_Velocity: 1.831980
Neural Network Prediction (Estimated): 2.060007 Expected Value (Desired): 2.039863 Error: -0.020144 Throttle_Effort: 19.172101 Brake_Effort: 17.000000 Current_Velocity: 1.968405
Neural Network Prediction (Estimated): 2.123006 Expected Value (Desired): 2.063683 Error: -0.059323 Throttle_Effort: 18.400601 Brake_Effort: 17.000000 Current_Velocity: 2.039865
Neural Network Prediction (Estimated): 2.147687 Expected Value (Desired): 2.096165 Error: -0.051522 Throttle_Effort: 20.332401 Brake_Effort: 17.000000 Current_Velocity: 2.063685
Neural Network Prediction (Estimated): 2.167642 Expected Value (Desired): 2.178453 Error: 0.010811 Throttle_Effort: 20.068100 Brake_Effort: 17.000000 Current_Velocity: 2.096165
Neural Network Prediction (Estimated): 2.210461 Expected Value (Desired): 2.291057 Error: 0.080596 Throttle_Effort: 19.774100 Brake_Effort: 17.000000 Current_Velocity: 2.178455
Neural Network Prediction (Estimated): 2.285089 Expected Value (Desired): 2.375510 Error: 0.090421 Throttle_Effort: 16.624901 Brake_Effort: 17.000000 Current_Velocity: 2.291055
Neural Network Prediction (Estimated): 2.352593 Expected Value (Desired): 2.371179 Error: 0.018586 Throttle_Effort: 7.608200 Brake_Effort: 17.000000 Current_Velocity: 2.375510
Neural Network Prediction (Estimated): 2.349657 Expected Value (Desired): 2.358186 Error: 0.008529 Throttle_Effort: 6.107600 Brake_Effort: 17.000000 Current_Velocity: 2.371180
Neural Network Prediction (Estimated): 2.303402 Expected Value (Desired): 2.356020 Error: 0.052618 Throttle_Effort: 6.072500 Brake_Effort: 17.000000 Current_Velocity: 2.358185
Neural Network Prediction (Estimated): 2.250315 Expected Value (Desired): 2.265071 Error: 0.014756 Throttle_Effort: 7.785700 Brake_Effort: 17.000000 Current_Velocity: 2.356020
Neural Network Prediction (Estimated): 2.192785 Expected Value (Desired): 2.217431 Error: 0.024646 Throttle_Effort: 13.072900 Brake_Effort: 17.000000 Current_Velocity: 2.265070
Neural Network Prediction (Estimated): 2.207222 Expected Value (Desired): 2.165460 Error: -0.041762 Throttle_Effort: 14.635800 Brake_Effort: 17.000000 Current_Velocity: 2.217430
Neural Network Prediction (Estimated): 2.250956 Expected Value (Desired): 2.152467 Error: -0.098489 Throttle_Effort: 14.889801 Brake_Effort: 17.000000 Current_Velocity: 2.165460
Neural Network Prediction (Estimated): 2.313974 Expected Value (Desired): 2.351690 Error: 0.037716 Throttle_Effort: 17.188001 Brake_Effort: 17.000000 Current_Velocity: 2.152465
Neural Network Prediction (Estimated): 2.456406 Expected Value (Desired): 2.479452 Error: 0.023046 Throttle_Effort: 17.331800 Brake_Effort: 17.000000 Current_Velocity: 2.351690
Neural Network Prediction (Estimated): 2.581102 Expected Value (Desired): 2.613710 Error: 0.032608 Throttle_Effort: 14.222801 Brake_Effort: 17.000000 Current_Velocity: 2.479450
Neural Network Prediction (Estimated): 2.654558 Expected Value (Desired): 2.579063 Error: -0.075495 Throttle_Effort: 12.331500 Brake_Effort: 17.000000 Current_Velocity: 2.613710
Neural Network Prediction (Estimated): 2.629318 Expected Value (Desired): 2.511934 Error: -0.117384 Throttle_Effort: 11.027400 Brake_Effort: 17.000000 Current_Velocity: 2.579065
Neural Network Prediction (Estimated): 2.555381 Expected Value (Desired): 2.377675 Error: -0.177706 Throttle_Effort: 11.561800 Brake_Effort: 17.000000 Current_Velocity: 2.511935
Neural Network Prediction (Estimated): 2.446867 Expected Value (Desired): 2.364682 Error: -0.082186 Throttle_Effort: 12.587801 Brake_Effort: 17.000000 Current_Velocity: 2.377675
Neural Network Prediction (Estimated): 2.445815 Expected Value (Desired): 2.446970 Error: 0.001155 Throttle_Effort: 13.751800 Brake_Effort: 17.000000 Current_Velocity: 2.364680
Neural Network Prediction (Estimated): 2.507889 Expected Value (Desired): 2.589890 Error: 0.082001 Throttle_Effort: 13.866900 Brake_Effort: 17.000000 Current_Velocity: 2.446970
Neural Network Prediction (Estimated): 2.617944 Expected Value (Desired): 2.659185 Error: 0.041241 Throttle_Effort: 13.606800 Brake_Effort: 17.000000 Current_Velocity: 2.589890
Neural Network Prediction (Estimated): 2.690190 Expected Value (Desired): 2.698163 Error: 0.007973 Throttle_Effort: 11.295100 Brake_Effort: 17.000000 Current_Velocity: 2.659185
Neural Network Prediction (Estimated): 2.710056 Expected Value (Desired): 2.661350 Error: -0.048706 Throttle_Effort: 10.056200 Brake_Effort: 17.000000 Current_Velocity: 2.698165
Neural Network Prediction (Estimated): 2.663995 Expected Value (Desired): 2.598552 Error: -0.065443 Throttle_Effort: 9.760100 Brake_Effort: 17.000000 Current_Velocity: 2.661350
Neural Network Prediction (Estimated): 2.636147 Expected Value (Desired): 2.600717 Error: -0.035430 Throttle_Effort: 10.303500 Brake_Effort: 17.000000 Current_Velocity: 2.598550
Neural Network Prediction (Estimated): 2.628400 Expected Value (Desired): 2.631034 Error: 0.002634 Throttle_Effort: 11.489700 Brake_Effort: 17.000000 Current_Velocity: 2.600715
Neural Network Prediction (Estimated): 2.655244 Expected Value (Desired): 2.685170 Error: 0.029926 Throttle_Effort: 11.537700 Brake_Effort: 17.000000 Current_Velocity: 2.631035
Neural Network Prediction (Estimated): 2.710684 Expected Value (Desired): 2.771789 Error: 0.061105 Throttle_Effort: 10.950400 Brake_Effort: 17.000000 Current_Velocity: 2.685170
Neural Network Prediction (Estimated): 2.780012 Expected Value (Desired): 2.810767 Error: 0.030755 Throttle_Effort: 10.068100 Brake_Effort: 17.000000 Current_Velocity: 2.771790
Neural Network Prediction (Estimated): 2.823372 Expected Value (Desired): 2.806436 Error: -0.016936 Throttle_Effort: 8.622700 Brake_Effort: 17.000000 Current_Velocity: 2.810765
Neural Network Prediction (Estimated): 2.832371 Expected Value (Desired): 2.819429 Error: -0.012942 Throttle_Effort: 7.737000 Brake_Effort: 17.000000 Current_Velocity: 2.806435
Neural Network Prediction (Estimated): 2.822707 Expected Value (Desired): 2.832422 Error: 0.009715 Throttle_Effort: 7.642300 Brake_Effort: 17.000000 Current_Velocity: 2.819430
Neural Network Prediction (Estimated): 2.805121 Expected Value (Desired): 2.819429 Error: 0.014308 Throttle_Effort: 7.382800 Brake_Effort: 17.000000 Current_Velocity: 2.832420
Neural Network Prediction (Estimated): 2.837847 Expected Value (Desired): 2.819429 Error: -0.018418 Throttle_Effort: 7.048200 Brake_Effort: 17.000000 Current_Velocity: 2.819430
Neural Network Prediction (Estimated): 2.853272 Expected Value (Desired): 2.825925 Error: -0.027347 Throttle_Effort: 7.244700 Brake_Effort: 17.000000 Current_Velocity: 2.819430
Neural Network Prediction (Estimated): 2.848424 Expected Value (Desired): 2.825925 Error: -0.022499 Throttle_Effort: 7.139100 Brake_Effort: 17.000000 Current_Velocity: 2.825925
Neural Network Prediction (Estimated): 2.858132 Expected Value (Desired): 2.830256 Error: -0.027876 Throttle_Effort: 6.981200 Brake_Effort: 17.000000 Current_Velocity: 2.825925
Neural Network Prediction (Estimated): 2.830874 Expected Value (Desired): 2.841084 Error: 0.010210 Throttle_Effort: 6.935100 Brake_Effort: 17.000000 Current_Velocity: 2.830255
Neural Network Prediction (Estimated): 2.852573 Expected Value (Desired): 2.871400 Error: 0.018827 Throttle_Effort: 6.863100 Brake_Effort: 17.000000 Current_Velocity: 2.841085
Neural Network Prediction (Estimated): 2.868704 Expected Value (Desired): 2.916875 Error: 0.048171 Throttle_Effort: 6.516500 Brake_Effort: 17.000000 Current_Velocity: 2.871400
Neural Network Prediction (Estimated): 2.904193 Expected Value (Desired): 2.923371 Error: 0.019178 Throttle_Effort: 5.975400 Brake_Effort: 17.000000 Current_Velocity: 2.916875
Neural Network Prediction (Estimated): 2.908032 Expected Value (Desired): 2.910378 Error: 0.002346 Throttle_Effort: 5.077400 Brake_Effort: 17.000000 Current_Velocity: 2.923370
Neural Network Prediction (Estimated): 2.901453 Expected Value (Desired): 2.901716 Error: 0.000263 Throttle_Effort: 4.849100 Brake_Effort: 17.000000 Current_Velocity: 2.910380
Neural Network Prediction (Estimated): 2.902519 Expected Value (Desired): 2.901716 Error: -0.000803 Throttle_Effort: 4.928400 Brake_Effort: 17.000000 Current_Velocity: 2.901715
Neural Network Prediction (Estimated): 2.891758 Expected Value (Desired): 2.903882 Error: 0.012124 Throttle_Effort: 4.977300 Brake_Effort: 17.000000 Current_Velocity: 2.901715
Neural Network Prediction (Estimated): 2.883132 Expected Value (Desired): 2.927702 Error: 0.044570 Throttle_Effort: 4.914700 Brake_Effort: 17.000000 Current_Velocity: 2.903880
Neural Network Prediction (Estimated): 2.910818 Expected Value (Desired): 2.955853 Error: 0.045035 Throttle_Effort: 4.949400 Brake_Effort: 17.000000 Current_Velocity: 2.927700
Neural Network Prediction (Estimated): 2.964534 Expected Value (Desired): 2.951522 Error: -0.013012 Throttle_Effort: 4.452600 Brake_Effort: 17.000000 Current_Velocity: 2.955855
Neural Network Prediction (Estimated): 3.013007 Expected Value (Desired): 2.919040 Error: -0.093967 Throttle_Effort: 3.957300 Brake_Effort: 17.000000 Current_Velocity: 2.951520
Neural Network Prediction (Estimated): 3.024015 Expected Value (Desired): 2.919040 Error: -0.104975 Throttle_Effort: 3.846900 Brake_Effort: 17.000000 Current_Velocity: 2.919040
Neural Network Prediction (Estimated): 2.998520 Expected Value (Desired): 2.947191 Error: -0.051329 Throttle_Effort: 4.384300 Brake_Effort: 17.000000 Current_Velocity: 2.919040
Neural Network Prediction (Estimated): 2.977149 Expected Value (Desired): 3.001328 Error: 0.024179 Throttle_Effort: 4.169000 Brake_Effort: 17.000000 Current_Velocity: 2.947190
Neural Network Prediction (Estimated): 2.982028 Expected Value (Desired): 2.992666 Error: 0.010638 Throttle_Effort: 3.638500 Brake_Effort: 17.000000 Current_Velocity: 3.001330
Neural Network Prediction (Estimated): 2.983654 Expected Value (Desired): 2.981838 Error: -0.001816 Throttle_Effort: 2.627500 Brake_Effort: 17.000000 Current_Velocity: 2.992665
Neural Network Prediction (Estimated): 2.947801 Expected Value (Desired): 2.981838 Error: 0.034037 Throttle_Effort: 2.679900 Brake_Effort: 17.000000 Current_Velocity: 2.981840
Neural Network Prediction (Estimated): 2.930900 Expected Value (Desired): 2.932033 Error: 0.001133 Throttle_Effort: 2.668900 Brake_Effort: 17.000000 Current_Velocity: 2.981840
Neural Network Prediction (Estimated): 2.890628 Expected Value (Desired): 2.910378 Error: 0.019750 Throttle_Effort: 2.610700 Brake_Effort: 17.000000 Current_Velocity: 2.932035
Neural Network Prediction (Estimated): 2.892051 Expected Value (Desired): 2.919040 Error: 0.026989 Throttle_Effort: 3.400500 Brake_Effort: 17.000000 Current_Velocity: 2.910380
Neural Network Prediction (Estimated): 2.929395 Expected Value (Desired): 2.936364 Error: 0.006969 Throttle_Effort: 3.757500 Brake_Effort: 17.000000 Current_Velocity: 2.919040
Neural Network Prediction (Estimated): 2.967110 Expected Value (Desired): 2.945026 Error: -0.022084 Throttle_Effort: 3.491000 Brake_Effort: 17.000000 Current_Velocity: 2.936365
Neural Network Prediction (Estimated): 2.994053 Expected Value (Desired): 2.968846 Error: -0.025207 Throttle_Effort: 3.149100 Brake_Effort: 17.000000 Current_Velocity: 2.945025
Neural Network Prediction (Estimated): 2.999899 Expected Value (Desired): 3.007824 Error: 0.007925 Throttle_Effort: 2.971500 Brake_Effort: 17.000000 Current_Velocity: 2.968845
Neural Network Prediction (Estimated): 3.028092 Expected Value (Desired): 3.038140 Error: 0.010048 Throttle_Effort: 2.635500 Brake_Effort: 17.000000 Current_Velocity: 3.007825
Neural Network Prediction (Estimated): 3.031443 Expected Value (Desired): 3.007824 Error: -0.023619 Throttle_Effort: 1.944200 Brake_Effort: 17.000000 Current_Velocity: 3.038140
Neural Network Prediction (Estimated): 3.010668 Expected Value (Desired): 2.914709 Error: -0.095959 Throttle_Effort: 1.379300 Brake_Effort: 17.000000 Current_Velocity: 3.007825
Neural Network Prediction (Estimated): 2.929904 Expected Value (Desired): 2.877896 Error: -0.052008 Throttle_Effort: 1.524800 Brake_Effort: 17.000000 Current_Velocity: 2.914710
Neural Network Prediction (Estimated): 2.865036 Expected Value (Desired): 2.867069 Error: 0.002033 Throttle_Effort: 3.079900 Brake_Effort: 17.000000 Current_Velocity: 2.877895
Neural Network Prediction (Estimated): 2.854968 Expected Value (Desired): 2.860573 Error: 0.005605 Throttle_Effort: 3.443800 Brake_Effort: 17.000000 Current_Velocity: 2.867070
Neural Network Prediction (Estimated): 2.879565 Expected Value (Desired): 2.854076 Error: -0.025489 Throttle_Effort: 3.534000 Brake_Effort: 17.000000 Current_Velocity: 2.860575
Neural Network Prediction (Estimated): 2.913220 Expected Value (Desired): 2.838918 Error: -0.074302 Throttle_Effort: 3.573000 Brake_Effort: 17.000000 Current_Velocity: 2.854075
Neural Network Prediction (Estimated): 2.921759 Expected Value (Desired): 2.778285 Error: -0.143474 Throttle_Effort: 3.573400 Brake_Effort: 17.000000 Current_Velocity: 2.838920
Neural Network Prediction (Estimated): 2.909389 Expected Value (Desired): 2.754465 Error: -0.154924 Throttle_Effort: 3.925100 Brake_Effort: 17.000000 Current_Velocity: 2.778285
Neural Network Prediction (Estimated): 2.873370 Expected Value (Desired): 2.754465 Error: -0.118905 Throttle_Effort: 4.766900 Brake_Effort: 17.000000 Current_Velocity: 2.754465
Neural Network Prediction (Estimated): 2.853848 Expected Value (Desired): 2.754465 Error: -0.099382 Throttle_Effort: 5.169400 Brake_Effort: 17.000000 Current_Velocity: 2.754465
Neural Network Prediction (Estimated): 2.843815 Expected Value (Desired): 2.836753 Error: -0.007062 Throttle_Effort: 5.131700 Brake_Effort: 17.000000 Current_Velocity: 2.754465
Neural Network Prediction (Estimated): 2.885096 Expected Value (Desired): 2.971011 Error: 0.085915 Throttle_Effort: 4.745300 Brake_Effort: 17.000000 Current_Velocity: 2.836755
Neural Network Prediction (Estimated): 2.957127 Expected Value (Desired): 3.020817 Error: 0.063690 Throttle_Effort: 3.393100 Brake_Effort: 17.000000 Current_Velocity: 2.971010
Neural Network Prediction (Estimated): 3.009282 Expected Value (Desired): 3.111766 Error: 0.102484 Throttle_Effort: 1.118800 Brake_Effort: 17.000000 Current_Velocity: 3.020815
Neural Network Prediction (Estimated): 3.006956 Expected Value (Desired): 3.202715 Error: 0.195759 Throttle_Effort: 0.533500 Brake_Effort: 17.000000 Current_Velocity: 3.111765
Neural Network Prediction (Estimated): 2.997824 Expected Value (Desired): 3.220039 Error: 0.222215 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 3.202715
Neural Network Prediction (Estimated): 2.969077 Expected Value (Desired): 3.027313 Error: 0.058236 Throttle_Effort: 0.000000 Brake_Effort: 37.473401 Current_Velocity: 3.220040
Neural Network Prediction (Estimated): 2.824612 Expected Value (Desired): 2.860573 Error: 0.035961 Throttle_Effort: 0.000000 Brake_Effort: 39.752701 Current_Velocity: 3.027315
Neural Network Prediction (Estimated): 2.691882 Expected Value (Desired): 2.533588 Error: -0.158294 Throttle_Effort: 0.000000 Brake_Effort: 33.838499 Current_Velocity: 2.860575
Neural Network Prediction (Estimated): 2.602068 Expected Value (Desired): 2.494610 Error: -0.107458 Throttle_Effort: 0.000000 Brake_Effort: 27.670199 Current_Velocity: 2.533590
Neural Network Prediction (Estimated): 2.602758 Expected Value (Desired): 2.475121 Error: -0.127637 Throttle_Effort: 0.000000 Brake_Effort: 18.171100 Current_Velocity: 2.494610
Neural Network Prediction (Estimated): 2.643966 Expected Value (Desired): 2.462128 Error: -0.181838 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.475120
Neural Network Prediction (Estimated): 2.656845 Expected Value (Desired): 2.524926 Error: -0.131919 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.462130
Neural Network Prediction (Estimated): 2.627378 Expected Value (Desired): 2.730645 Error: 0.103267 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.524925
Neural Network Prediction (Estimated): 2.617044 Expected Value (Desired): 2.867069 Error: 0.250025 Throttle_Effort: 0.000000 Brake_Effort: 18.592300 Current_Velocity: 2.730645
Neural Network Prediction (Estimated): 2.641270 Expected Value (Desired): 2.936364 Error: 0.295094 Throttle_Effort: 0.000000 Brake_Effort: 25.364801 Current_Velocity: 2.867070
Neural Network Prediction (Estimated): 2.686046 Expected Value (Desired): 2.834587 Error: 0.148541 Throttle_Effort: 0.000000 Brake_Effort: 30.018601 Current_Velocity: 2.936365
Neural Network Prediction (Estimated): 2.679156 Expected Value (Desired): 2.654854 Error: -0.024302 Throttle_Effort: 0.000000 Brake_Effort: 30.913699 Current_Velocity: 2.834585
Neural Network Prediction (Estimated): 2.651911 Expected Value (Desired): 2.624538 Error: -0.027373 Throttle_Effort: 0.000000 Brake_Effort: 27.795601 Current_Velocity: 2.654855
Neural Network Prediction (Estimated): 2.624868 Expected Value (Desired): 2.646192 Error: 0.021324 Throttle_Effort: 0.000000 Brake_Effort: 21.837699 Current_Velocity: 2.624540
Neural Network Prediction (Estimated): 2.611367 Expected Value (Desired): 2.704660 Error: 0.093292 Throttle_Effort: 0.000000 Brake_Effort: 20.306499 Current_Velocity: 2.646190
Neural Network Prediction (Estimated): 2.651297 Expected Value (Desired): 2.689501 Error: 0.038204 Throttle_Effort: 0.000000 Brake_Effort: 21.329699 Current_Velocity: 2.704660
Neural Network Prediction (Estimated): 2.645246 Expected Value (Desired): 2.706825 Error: 0.061579 Throttle_Effort: 0.000000 Brake_Effort: 23.043400 Current_Velocity: 2.689500
Neural Network Prediction (Estimated): 2.634408 Expected Value (Desired): 2.665681 Error: 0.031273 Throttle_Effort: 0.000000 Brake_Effort: 22.366001 Current_Velocity: 2.706825
Neural Network Prediction (Estimated): 2.588047 Expected Value (Desired): 2.581228 Error: -0.006819 Throttle_Effort: 0.000000 Brake_Effort: 23.337001 Current_Velocity: 2.665680
Neural Network Prediction (Estimated): 2.524728 Expected Value (Desired): 2.570401 Error: 0.045673 Throttle_Effort: 0.000000 Brake_Effort: 21.803600 Current_Velocity: 2.581230
Neural Network Prediction (Estimated): 2.528760 Expected Value (Desired): 2.583394 Error: 0.054634 Throttle_Effort: 0.000000 Brake_Effort: 19.349800 Current_Velocity: 2.570400
Neural Network Prediction (Estimated): 2.567318 Expected Value (Desired): 2.592056 Error: 0.024738 Throttle_Effort: 0.000000 Brake_Effort: 18.952100 Current_Velocity: 2.583395
Neural Network Prediction (Estimated): 2.565908 Expected Value (Desired): 2.641861 Error: 0.075953 Throttle_Effort: 0.000000 Brake_Effort: 19.405600 Current_Velocity: 2.592055
Neural Network Prediction (Estimated): 2.530138 Expected Value (Desired): 2.579063 Error: 0.048925 Throttle_Effort: 0.000000 Brake_Effort: 20.058200 Current_Velocity: 2.641860
Neural Network Prediction (Estimated): 2.465403 Expected Value (Desired): 2.511934 Error: 0.046531 Throttle_Effort: 0.000000 Brake_Effort: 21.451300 Current_Velocity: 2.579065
Neural Network Prediction (Estimated): 2.426172 Expected Value (Desired): 2.477286 Error: 0.051114 Throttle_Effort: 0.000000 Brake_Effort: 19.602500 Current_Velocity: 2.511935
Neural Network Prediction (Estimated): 2.426588 Expected Value (Desired): 2.464293 Error: 0.037705 Throttle_Effort: 0.000000 Brake_Effort: 17.350601 Current_Velocity: 2.477285
Neural Network Prediction (Estimated): 2.455892 Expected Value (Desired): 2.494610 Error: 0.038718 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.464295
Neural Network Prediction (Estimated): 2.485231 Expected Value (Desired): 2.524926 Error: 0.039695 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.494610
Neural Network Prediction (Estimated): 2.499947 Expected Value (Desired): 2.507603 Error: 0.007656 Throttle_Effort: 0.000000 Brake_Effort: 17.023700 Current_Velocity: 2.524925
Neural Network Prediction (Estimated): 2.492695 Expected Value (Desired): 2.442639 Error: -0.050056 Throttle_Effort: 0.000000 Brake_Effort: 18.584201 Current_Velocity: 2.507605
Neural Network Prediction (Estimated): 2.445140 Expected Value (Desired): 2.444804 Error: -0.000336 Throttle_Effort: 0.000000 Brake_Effort: 17.644200 Current_Velocity: 2.442640
Neural Network Prediction (Estimated): 2.437253 Expected Value (Desired): 2.427481 Error: -0.009772 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.444805
Neural Network Prediction (Estimated): 2.419610 Expected Value (Desired): 2.412322 Error: -0.007288 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.427480
Neural Network Prediction (Estimated): 2.404606 Expected Value (Desired): 2.379841 Error: -0.024765 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.412320
Neural Network Prediction (Estimated): 2.381828 Expected Value (Desired): 2.401495 Error: 0.019667 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.379840
Neural Network Prediction (Estimated): 2.349837 Expected Value (Desired): 2.423150 Error: 0.073313 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.401495
Neural Network Prediction (Estimated): 2.328439 Expected Value (Desired): 2.442639 Error: 0.114200 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.423150
Neural Network Prediction (Estimated): 2.323557 Expected Value (Desired): 2.431812 Error: 0.108255 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.442640
Neural Network Prediction (Estimated): 2.319870 Expected Value (Desired): 2.446970 Error: 0.127100 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.431810
Neural Network Prediction (Estimated): 2.348276 Expected Value (Desired): 2.412322 Error: 0.064046 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.446970
Neural Network Prediction (Estimated): 2.358188 Expected Value (Desired): 2.401495 Error: 0.043307 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.412320
Neural Network Prediction (Estimated): 2.365496 Expected Value (Desired): 2.405826 Error: 0.040330 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.401495
Neural Network Prediction (Estimated): 2.387246 Expected Value (Desired): 2.410157 Error: 0.022911 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.405825
Neural Network Prediction (Estimated): 2.394690 Expected Value (Desired): 2.412322 Error: 0.017632 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.410155
Neural Network Prediction (Estimated): 2.390606 Expected Value (Desired): 2.429646 Error: 0.039040 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.412320
Neural Network Prediction (Estimated): 2.377227 Expected Value (Desired): 2.446970 Error: 0.069743 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.429645
Neural Network Prediction (Estimated): 2.349491 Expected Value (Desired): 2.481617 Error: 0.132126 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.446970
Neural Network Prediction (Estimated): 2.348283 Expected Value (Desired): 2.494610 Error: 0.146327 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.481615
Neural Network Prediction (Estimated): 2.352701 Expected Value (Desired): 2.490279 Error: 0.137578 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.494610
Neural Network Prediction (Estimated): 2.386915 Expected Value (Desired): 2.416653 Error: 0.029738 Throttle_Effort: 0.000000 Brake_Effort: 17.374600 Current_Velocity: 2.490280
Neural Network Prediction (Estimated): 2.361559 Expected Value (Desired): 2.284560 Error: -0.076999 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.416655
Neural Network Prediction (Estimated): 2.302790 Expected Value (Desired): 2.230424 Error: -0.072366 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.284560
Neural Network Prediction (Estimated): 2.250720 Expected Value (Desired): 2.191446 Error: -0.059274 Throttle_Effort: 3.588900 Brake_Effort: 17.000000 Current_Velocity: 2.230425
Neural Network Prediction (Estimated): 2.234947 Expected Value (Desired): 2.234755 Error: -0.000192 Throttle_Effort: 4.532100 Brake_Effort: 17.000000 Current_Velocity: 2.191445
Neural Network Prediction (Estimated): 2.273237 Expected Value (Desired): 2.221762 Error: -0.051475 Throttle_Effort: 4.832000 Brake_Effort: 17.000000 Current_Velocity: 2.234755
Neural Network Prediction (Estimated): 2.304266 Expected Value (Desired): 2.245582 Error: -0.058684 Throttle_Effort: 4.261600 Brake_Effort: 17.000000 Current_Velocity: 2.221760
Neural Network Prediction (Estimated): 2.340079 Expected Value (Desired): 2.243417 Error: -0.096662 Throttle_Effort: 4.636000 Brake_Effort: 17.000000 Current_Velocity: 2.245580
Neural Network Prediction (Estimated): 2.345605 Expected Value (Desired): 2.258575 Error: -0.087030 Throttle_Effort: 4.235400 Brake_Effort: 17.000000 Current_Velocity: 2.243415
Neural Network Prediction (Estimated): 2.323666 Expected Value (Desired): 2.306215 Error: -0.017451 Throttle_Effort: 4.266100 Brake_Effort: 17.000000 Current_Velocity: 2.258575
Neural Network Prediction (Estimated): 2.317033 Expected Value (Desired): 2.347359 Error: 0.030326 Throttle_Effort: 4.060900 Brake_Effort: 17.000000 Current_Velocity: 2.306215
Neural Network Prediction (Estimated): 2.321475 Expected Value (Desired): 2.407992 Error: 0.086517 Throttle_Effort: 3.358300 Brake_Effort: 17.000000 Current_Velocity: 2.347360
Neural Network Prediction (Estimated): 2.333196 Expected Value (Desired): 2.299719 Error: -0.033477 Throttle_Effort: 2.867500 Brake_Effort: 17.000000 Current_Velocity: 2.407990
Neural Network Prediction (Estimated): 2.275902 Expected Value (Desired): 2.191446 Error: -0.084456 Throttle_Effort: 2.749200 Brake_Effort: 17.000000 Current_Velocity: 2.299720
Neural Network Prediction (Estimated): 2.199687 Expected Value (Desired): 2.022540 Error: -0.177147 Throttle_Effort: 4.426700 Brake_Effort: 17.000000 Current_Velocity: 2.191445
Neural Network Prediction (Estimated): 2.105875 Expected Value (Desired): 2.020374 Error: -0.085501 Throttle_Effort: 5.683400 Brake_Effort: 17.000000 Current_Velocity: 2.022540
Neural Network Prediction (Estimated): 2.100268 Expected Value (Desired): 2.143805 Error: 0.043537 Throttle_Effort: 8.805400 Brake_Effort: 17.000000 Current_Velocity: 2.020375
Neural Network Prediction (Estimated): 2.212152 Expected Value (Desired): 2.271568 Error: 0.059416 Throttle_Effort: 8.579700 Brake_Effort: 17.000000 Current_Velocity: 2.143805
Neural Network Prediction (Estimated): 2.320824 Expected Value (Desired): 2.349524 Error: 0.028700 Throttle_Effort: 6.770500 Brake_Effort: 17.000000 Current_Velocity: 2.271570
Neural Network Prediction (Estimated): 2.355160 Expected Value (Desired): 2.449135 Error: 0.093975 Throttle_Effort: 4.781400 Brake_Effort: 17.000000 Current_Velocity: 2.349525
Neural Network Prediction (Estimated): 2.361547 Expected Value (Desired): 2.496775 Error: 0.135228 Throttle_Effort: 3.746300 Brake_Effort: 17.000000 Current_Velocity: 2.449135
Neural Network Prediction (Estimated): 2.341235 Expected Value (Desired): 2.356020 Error: 0.014785 Throttle_Effort: 2.481000 Brake_Effort: 17.000000 Current_Velocity: 2.496775
Neural Network Prediction (Estimated): 2.271331 Expected Value (Desired): 2.249913 Error: -0.021418 Throttle_Effort: 1.863500 Brake_Effort: 17.000000 Current_Velocity: 2.356020
Neural Network Prediction (Estimated): 2.214648 Expected Value (Desired): 2.174122 Error: -0.040526 Throttle_Effort: 4.139300 Brake_Effort: 17.000000 Current_Velocity: 2.249915
Neural Network Prediction (Estimated): 2.174336 Expected Value (Desired): 2.130813 Error: -0.043523 Throttle_Effort: 6.648800 Brake_Effort: 17.000000 Current_Velocity: 2.174120
Neural Network Prediction (Estimated): 2.171061 Expected Value (Desired): 2.154633 Error: -0.016428 Throttle_Effort: 5.325700 Brake_Effort: 17.000000 Current_Velocity: 2.130815
Neural Network Prediction (Estimated): 2.181410 Expected Value (Desired): 2.174122 Error: -0.007288 Throttle_Effort: 6.106900 Brake_Effort: 17.000000 Current_Velocity: 2.154635
Neural Network Prediction (Estimated): 2.180262 Expected Value (Desired): 2.288891 Error: 0.108629 Throttle_Effort: 9.326200 Brake_Effort: 17.000000 Current_Velocity: 2.174120
Neural Network Prediction (Estimated): 2.239052 Expected Value (Desired): 2.377675 Error: 0.138623 Throttle_Effort: 9.637600 Brake_Effort: 17.000000 Current_Velocity: 2.288890
Neural Network Prediction (Estimated): 2.315123 Expected Value (Desired): 2.407992 Error: 0.092869 Throttle_Effort: 8.059900 Brake_Effort: 17.000000 Current_Velocity: 2.377675
Neural Network Prediction (Estimated): 2.381244 Expected Value (Desired): 2.349524 Error: -0.031720 Throttle_Effort: 6.775400 Brake_Effort: 17.000000 Current_Velocity: 2.407990
Neural Network Prediction (Estimated): 2.342275 Expected Value (Desired): 2.278064 Error: -0.064211 Throttle_Effort: 6.013100 Brake_Effort: 17.000000 Current_Velocity: 2.349525
Neural Network Prediction (Estimated): 2.251737 Expected Value (Desired): 2.191446 Error: -0.060291 Throttle_Effort: 6.876400 Brake_Effort: 17.000000 Current_Velocity: 2.278065
Neural Network Prediction (Estimated): 2.181782 Expected Value (Desired): 2.189280 Error: 0.007499 Throttle_Effort: 8.080100 Brake_Effort: 17.000000 Current_Velocity: 2.191445
Neural Network Prediction (Estimated): 2.184892 Expected Value (Desired): 2.219596 Error: 0.034704 Throttle_Effort: 9.349300 Brake_Effort: 17.000000 Current_Velocity: 2.189280
Neural Network Prediction (Estimated): 2.236659 Expected Value (Desired): 2.243417 Error: 0.006758 Throttle_Effort: 8.125100 Brake_Effort: 17.000000 Current_Velocity: 2.219595
Neural Network Prediction (Estimated): 2.270924 Expected Value (Desired): 2.256409 Error: -0.014515 Throttle_Effort: 7.655900 Brake_Effort: 17.000000 Current_Velocity: 2.243415
Neural Network Prediction (Estimated): 2.291430 Expected Value (Desired): 2.243417 Error: -0.048013 Throttle_Effort: 7.753200 Brake_Effort: 17.000000 Current_Velocity: 2.256410
Neural Network Prediction (Estimated): 2.282884 Expected Value (Desired): 2.243417 Error: -0.039467 Throttle_Effort: 8.781200 Brake_Effort: 17.000000 Current_Velocity: 2.243415
Neural Network Prediction (Estimated): 2.292813 Expected Value (Desired): 2.249913 Error: -0.042900 Throttle_Effort: 9.065500 Brake_Effort: 17.000000 Current_Velocity: 2.243415
Neural Network Prediction (Estimated): 2.315134 Expected Value (Desired): 2.273733 Error: -0.041401 Throttle_Effort: 9.126700 Brake_Effort: 17.000000 Current_Velocity: 2.249915
Neural Network Prediction (Estimated): 2.309431 Expected Value (Desired): 2.301884 Error: -0.007547 Throttle_Effort: 9.021400 Brake_Effort: 17.000000 Current_Velocity: 2.273735
Neural Network Prediction (Estimated): 2.296706 Expected Value (Desired): 2.317042 Error: 0.020336 Throttle_Effort: 8.700400 Brake_Effort: 17.000000 Current_Velocity: 2.301885
Neural Network Prediction (Estimated): 2.293234 Expected Value (Desired): 2.349524 Error: 0.056290 Throttle_Effort: 8.286200 Brake_Effort: 17.000000 Current_Velocity: 2.317040
Neural Network Prediction (Estimated): 2.300806 Expected Value (Desired): 2.405826 Error: 0.105020 Throttle_Effort: 8.189100 Brake_Effort: 17.000000 Current_Velocity: 2.349525
Neural Network Prediction (Estimated): 2.351502 Expected Value (Desired): 2.425315 Error: 0.073813 Throttle_Effort: 3.615100 Brake_Effort: 17.000000 Current_Velocity: 2.405825
Neural Network Prediction (Estimated): 2.369760 Expected Value (Desired): 2.423150 Error: 0.053391 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.425315
Neural Network Prediction (Estimated): 2.361810 Expected Value (Desired): 2.407992 Error: 0.046182 Throttle_Effort: 0.000000 Brake_Effort: 45.518801 Current_Velocity: 2.423150
Neural Network Prediction (Estimated): 2.302237 Expected Value (Desired): 2.338697 Error: 0.036460 Throttle_Effort: 0.000000 Brake_Effort: 53.102797 Current_Velocity: 2.407990
Neural Network Prediction (Estimated): 2.203115 Expected Value (Desired): 2.219596 Error: 0.016481 Throttle_Effort: 0.000000 Brake_Effort: 47.648099 Current_Velocity: 2.338695
Neural Network Prediction (Estimated): 2.138867 Expected Value (Desired): 2.206604 Error: 0.067737 Throttle_Effort: 0.000000 Brake_Effort: 27.224699 Current_Velocity: 2.219595
Neural Network Prediction (Estimated): 2.142916 Expected Value (Desired): 2.178453 Error: 0.035537 Throttle_Effort: 0.000000 Brake_Effort: 23.266800 Current_Velocity: 2.206605
Neural Network Prediction (Estimated): 2.155984 Expected Value (Desired): 2.204438 Error: 0.048454 Throttle_Effort: 0.000000 Brake_Effort: 18.300501 Current_Velocity: 2.178455
Neural Network Prediction (Estimated): 2.169947 Expected Value (Desired): 2.267237 Error: 0.097290 Throttle_Effort: 0.000000 Brake_Effort: 26.618999 Current_Velocity: 2.204440
Neural Network Prediction (Estimated): 2.193192 Expected Value (Desired): 2.299719 Error: 0.106527 Throttle_Effort: 0.000000 Brake_Effort: 26.510501 Current_Velocity: 2.267235
Neural Network Prediction (Estimated): 2.171069 Expected Value (Desired): 2.308380 Error: 0.137311 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.299720
Neural Network Prediction (Estimated): 2.127515 Expected Value (Desired): 2.317042 Error: 0.189527 Throttle_Effort: 3.779000 Brake_Effort: 17.000000 Current_Velocity: 2.308380
Neural Network Prediction (Estimated): 2.165302 Expected Value (Desired): 2.304049 Error: 0.138747 Throttle_Effort: 3.694500 Brake_Effort: 17.000000 Current_Velocity: 2.317040
Neural Network Prediction (Estimated): 2.224175 Expected Value (Desired): 2.304049 Error: 0.079874 Throttle_Effort: 3.609900 Brake_Effort: 17.000000 Current_Velocity: 2.304050
Neural Network Prediction (Estimated): 2.268940 Expected Value (Desired): 2.301884 Error: 0.032944 Throttle_Effort: 3.862600 Brake_Effort: 17.000000 Current_Velocity: 2.304050
Neural Network Prediction (Estimated): 2.253519 Expected Value (Desired): 2.338697 Error: 0.085178 Throttle_Effort: 3.876800 Brake_Effort: 17.000000 Current_Velocity: 2.301885
Neural Network Prediction (Estimated): 2.221817 Expected Value (Desired): 2.362517 Error: 0.140701 Throttle_Effort: 3.782900 Brake_Effort: 17.000000 Current_Velocity: 2.338695
Neural Network Prediction (Estimated): 2.261447 Expected Value (Desired): 2.384171 Error: 0.122724 Throttle_Effort: 3.108600 Brake_Effort: 17.000000 Current_Velocity: 2.362515
Neural Network Prediction (Estimated): 2.368400 Expected Value (Desired): 2.399330 Error: 0.030930 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.384170
Neural Network Prediction (Estimated): 2.450189 Expected Value (Desired): 2.410157 Error: -0.040032 Throttle_Effort: 1.549400 Brake_Effort: 17.000000 Current_Velocity: 2.399330
Neural Network Prediction (Estimated): 2.382748 Expected Value (Desired): 2.349524 Error: -0.033224 Throttle_Effort: 1.360000 Brake_Effort: 17.000000 Current_Velocity: 2.410155
Neural Network Prediction (Estimated): 2.294913 Expected Value (Desired): 2.304049 Error: 0.009136 Throttle_Effort: 1.296900 Brake_Effort: 17.000000 Current_Velocity: 2.349525
Neural Network Prediction (Estimated): 2.233545 Expected Value (Desired): 2.258575 Error: 0.025030 Throttle_Effort: 2.278700 Brake_Effort: 17.000000 Current_Velocity: 2.304050
Neural Network Prediction (Estimated): 2.227439 Expected Value (Desired): 2.206604 Error: -0.020835 Throttle_Effort: 2.993800 Brake_Effort: 17.000000 Current_Velocity: 2.258575
Neural Network Prediction (Estimated): 2.249573 Expected Value (Desired): 2.241251 Error: -0.008322 Throttle_Effort: 3.781200 Brake_Effort: 17.000000 Current_Velocity: 2.206605
Neural Network Prediction (Estimated): 2.253620 Expected Value (Desired): 2.262906 Error: 0.009286 Throttle_Effort: 4.574500 Brake_Effort: 17.000000 Current_Velocity: 2.241250
Neural Network Prediction (Estimated): 2.279630 Expected Value (Desired): 2.271568 Error: -0.008062 Throttle_Effort: 4.039300 Brake_Effort: 17.000000 Current_Velocity: 2.262905
Neural Network Prediction (Estimated): 2.262961 Expected Value (Desired): 2.314877 Error: 0.051916 Throttle_Effort: 3.703200 Brake_Effort: 17.000000 Current_Velocity: 2.271570
Neural Network Prediction (Estimated): 2.275012 Expected Value (Desired): 2.351690 Error: 0.076678 Throttle_Effort: 3.491600 Brake_Effort: 17.000000 Current_Velocity: 2.314875
Neural Network Prediction (Estimated): 2.270375 Expected Value (Desired): 2.358186 Error: 0.087811 Throttle_Effort: 2.877200 Brake_Effort: 17.000000 Current_Velocity: 2.351690
Neural Network Prediction (Estimated): 2.274138 Expected Value (Desired): 2.340862 Error: 0.066724 Throttle_Effort: 2.268000 Brake_Effort: 17.000000 Current_Velocity: 2.358185
Neural Network Prediction (Estimated): 2.232489 Expected Value (Desired): 2.256409 Error: 0.023920 Throttle_Effort: 2.050200 Brake_Effort: 17.000000 Current_Velocity: 2.340860
Neural Network Prediction (Estimated): 2.180714 Expected Value (Desired): 2.215266 Error: 0.034552 Throttle_Effort: 2.682800 Brake_Effort: 17.000000 Current_Velocity: 2.256410
Neural Network Prediction (Estimated): 2.149944 Expected Value (Desired): 2.180618 Error: 0.030674 Throttle_Effort: 3.999600 Brake_Effort: 17.000000 Current_Velocity: 2.215265
Neural Network Prediction (Estimated): 2.186319 Expected Value (Desired): 2.193611 Error: 0.007292 Throttle_Effort: 4.688800 Brake_Effort: 17.000000 Current_Velocity: 2.180620
Neural Network Prediction (Estimated): 2.190741 Expected Value (Desired): 2.236920 Error: 0.046179 Throttle_Effort: 5.438300 Brake_Effort: 17.000000 Current_Velocity: 2.193610
Neural Network Prediction (Estimated): 2.223585 Expected Value (Desired): 2.288891 Error: 0.065306 Throttle_Effort: 5.196600 Brake_Effort: 17.000000 Current_Velocity: 2.236920
Neural Network Prediction (Estimated): 2.233604 Expected Value (Desired): 2.297553 Error: 0.063949 Throttle_Effort: 4.583700 Brake_Effort: 17.000000 Current_Velocity: 2.288890
Neural Network Prediction (Estimated): 2.251135 Expected Value (Desired): 2.308380 Error: 0.057245 Throttle_Effort: 3.765100 Brake_Effort: 17.000000 Current_Velocity: 2.297555
Neural Network Prediction (Estimated): 2.241632 Expected Value (Desired): 2.271568 Error: 0.029936 Throttle_Effort: 3.674100 Brake_Effort: 17.000000 Current_Velocity: 2.308380
Neural Network Prediction (Estimated): 2.204836 Expected Value (Desired): 2.271568 Error: 0.066732 Throttle_Effort: 3.777800 Brake_Effort: 17.000000 Current_Velocity: 2.271570
Neural Network Prediction (Estimated): 2.180282 Expected Value (Desired): 2.243417 Error: 0.063135 Throttle_Effort: 4.356300 Brake_Effort: 17.000000 Current_Velocity: 2.271570
Neural Network Prediction (Estimated): 2.166346 Expected Value (Desired): 2.230424 Error: 0.064078 Throttle_Effort: 5.219800 Brake_Effort: 17.000000 Current_Velocity: 2.243415
Neural Network Prediction (Estimated): 2.185219 Expected Value (Desired): 2.217431 Error: 0.032212 Throttle_Effort: 0.157500 Brake_Effort: 17.000000 Current_Velocity: 2.230425
Neural Network Prediction (Estimated): 2.169398 Expected Value (Desired): 2.256409 Error: 0.087011 Throttle_Effort: 3.254300 Brake_Effort: 17.000000 Current_Velocity: 2.217430
Neural Network Prediction (Estimated): 2.199939 Expected Value (Desired): 2.262906 Error: 0.062967 Throttle_Effort: 3.470100 Brake_Effort: 17.000000 Current_Velocity: 2.256410
Neural Network Prediction (Estimated): 2.221982 Expected Value (Desired): 2.230424 Error: 0.008441 Throttle_Effort: 2.861100 Brake_Effort: 17.000000 Current_Velocity: 2.262905
Neural Network Prediction (Estimated): 2.216747 Expected Value (Desired): 2.163295 Error: -0.053452 Throttle_Effort: 2.568400 Brake_Effort: 17.000000 Current_Velocity: 2.230425
Neural Network Prediction (Estimated): 2.157677 Expected Value (Desired): 2.145971 Error: -0.011706 Throttle_Effort: 3.303300 Brake_Effort: 17.000000 Current_Velocity: 2.163295
Neural Network Prediction (Estimated): 2.109819 Expected Value (Desired): 2.161129 Error: 0.051310 Throttle_Effort: 4.370400 Brake_Effort: 17.000000 Current_Velocity: 2.145970
Neural Network Prediction (Estimated): 2.117106 Expected Value (Desired): 2.208769 Error: 0.091663 Throttle_Effort: 4.806800 Brake_Effort: 17.000000 Current_Velocity: 2.161130
Neural Network Prediction (Estimated): 2.169794 Expected Value (Desired): 2.271568 Error: 0.101774 Throttle_Effort: 4.736300 Brake_Effort: 17.000000 Current_Velocity: 2.208770
Neural Network Prediction (Estimated): 2.233594 Expected Value (Desired): 2.258575 Error: 0.024981 Throttle_Effort: 3.945500 Brake_Effort: 17.000000 Current_Velocity: 2.271570
Neural Network Prediction (Estimated): 2.228312 Expected Value (Desired): 2.236920 Error: 0.008609 Throttle_Effort: 2.804000 Brake_Effort: 17.000000 Current_Velocity: 2.258575
Neural Network Prediction (Estimated): 2.202882 Expected Value (Desired): 2.215266 Error: 0.012384 Throttle_Effort: 3.364500 Brake_Effort: 17.000000 Current_Velocity: 2.236920
Neural Network Prediction (Estimated): 2.159348 Expected Value (Desired): 2.197942 Error: 0.038594 Throttle_Effort: 3.727000 Brake_Effort: 17.000000 Current_Velocity: 2.215265
Neural Network Prediction (Estimated): 2.160315 Expected Value (Desired): 2.178453 Error: 0.018138 Throttle_Effort: 3.695900 Brake_Effort: 17.000000 Current_Velocity: 2.197940
Neural Network Prediction (Estimated): 2.142298 Expected Value (Desired): 2.163295 Error: 0.020997 Throttle_Effort: 2.699600 Brake_Effort: 17.000000 Current_Velocity: 2.178455
Neural Network Prediction (Estimated): 2.154817 Expected Value (Desired): 2.161129 Error: 0.006312 Throttle_Effort: 2.745600 Brake_Effort: 17.000000 Current_Velocity: 2.163295
Neural Network Prediction (Estimated): 2.170189 Expected Value (Desired): 2.208769 Error: 0.038580 Throttle_Effort: 4.797000 Brake_Effort: 17.000000 Current_Velocity: 2.161130
Neural Network Prediction (Estimated): 2.186536 Expected Value (Desired): 2.226093 Error: 0.039557 Throttle_Effort: 4.718100 Brake_Effort: 17.000000 Current_Velocity: 2.208770
Neural Network Prediction (Estimated): 2.185132 Expected Value (Desired): 2.230424 Error: 0.045292 Throttle_Effort: 4.071600 Brake_Effort: 17.000000 Current_Velocity: 2.226095
Neural Network Prediction (Estimated): 2.169426 Expected Value (Desired): 2.178453 Error: 0.009027 Throttle_Effort: 3.862200 Brake_Effort: 17.000000 Current_Velocity: 2.230425
Neural Network Prediction (Estimated): 2.148120 Expected Value (Desired): 2.161129 Error: 0.013009 Throttle_Effort: 3.032900 Brake_Effort: 17.000000 Current_Velocity: 2.178455
Neural Network Prediction (Estimated): 2.143275 Expected Value (Desired): 2.176287 Error: 0.033012 Throttle_Effort: 3.935700 Brake_Effort: 17.000000 Current_Velocity: 2.161130
Neural Network Prediction (Estimated): 2.144381 Expected Value (Desired): 2.197942 Error: 0.053561 Throttle_Effort: 4.242400 Brake_Effort: 17.000000 Current_Velocity: 2.176285
Neural Network Prediction (Estimated): 2.150381 Expected Value (Desired): 2.217431 Error: 0.067050 Throttle_Effort: 4.085000 Brake_Effort: 17.000000 Current_Velocity: 2.197940
Neural Network Prediction (Estimated): 2.138545 Expected Value (Desired): 2.187115 Error: 0.048570 Throttle_Effort: 3.830400 Brake_Effort: 17.000000 Current_Velocity: 2.217430
Neural Network Prediction (Estimated): 2.132248 Expected Value (Desired): 2.154633 Error: 0.022385 Throttle_Effort: 3.684900 Brake_Effort: 17.000000 Current_Velocity: 2.187115
Neural Network Prediction (Estimated): 2.147483 Expected Value (Desired): 2.150302 Error: 0.002819 Throttle_Effort: 4.205700 Brake_Effort: 17.000000 Current_Velocity: 2.154635
Neural Network Prediction (Estimated): 2.160184 Expected Value (Desired): 2.156798 Error: -0.003386 Throttle_Effort: 4.805600 Brake_Effort: 17.000000 Current_Velocity: 2.150300
Neural Network Prediction (Estimated): 2.159535 Expected Value (Desired): 2.187115 Error: 0.027580 Throttle_Effort: 4.921500 Brake_Effort: 17.000000 Current_Velocity: 2.156800
Neural Network Prediction (Estimated): 2.158787 Expected Value (Desired): 2.193611 Error: 0.034824 Throttle_Effort: 4.907100 Brake_Effort: 17.000000 Current_Velocity: 2.187115
Neural Network Prediction (Estimated): 2.162054 Expected Value (Desired): 2.189280 Error: 0.027226 Throttle_Effort: 4.486700 Brake_Effort: 17.000000 Current_Velocity: 2.193610
Neural Network Prediction (Estimated): 2.158596 Expected Value (Desired): 2.182784 Error: 0.024189 Throttle_Effort: 3.087200 Brake_Effort: 17.000000 Current_Velocity: 2.189280
Neural Network Prediction (Estimated): 2.169073 Expected Value (Desired): 2.189280 Error: 0.020207 Throttle_Effort: 4.335200 Brake_Effort: 17.000000 Current_Velocity: 2.182785
Neural Network Prediction (Estimated): 2.205564 Expected Value (Desired): 2.217431 Error: 0.011868 Throttle_Effort: 4.462100 Brake_Effort: 17.000000 Current_Velocity: 2.189280
Neural Network Prediction (Estimated): 2.210383 Expected Value (Desired): 2.221762 Error: 0.011379 Throttle_Effort: 4.407900 Brake_Effort: 17.000000 Current_Velocity: 2.217430
Neural Network Prediction (Estimated): 2.187968 Expected Value (Desired): 2.154633 Error: -0.033335 Throttle_Effort: 4.113900 Brake_Effort: 17.000000 Current_Velocity: 2.221760
Neural Network Prediction (Estimated): 2.129386 Expected Value (Desired): 2.104827 Error: -0.024559 Throttle_Effort: 1.898900 Brake_Effort: 17.000000 Current_Velocity: 2.154635
Neural Network Prediction (Estimated): 2.081087 Expected Value (Desired): 2.102662 Error: 0.021575 Throttle_Effort: 2.913900 Brake_Effort: 17.000000 Current_Velocity: 2.104825
Neural Network Prediction (Estimated): 2.073986 Expected Value (Desired): 2.126482 Error: 0.052496 Throttle_Effort: 3.756100 Brake_Effort: 17.000000 Current_Velocity: 2.102660
Neural Network Prediction (Estimated): 2.143304 Expected Value (Desired): 2.122151 Error: -0.021153 Throttle_Effort: 5.584300 Brake_Effort: 17.000000 Current_Velocity: 2.126480
Neural Network Prediction (Estimated): 2.173318 Expected Value (Desired): 2.132978 Error: -0.040340 Throttle_Effort: 4.213200 Brake_Effort: 17.000000 Current_Velocity: 2.122150
Neural Network Prediction (Estimated): 2.164900 Expected Value (Desired): 2.148136 Error: -0.016764 Throttle_Effort: 4.498600 Brake_Effort: 17.000000 Current_Velocity: 2.132980
Neural Network Prediction (Estimated): 2.123634 Expected Value (Desired): 2.132978 Error: 0.009344 Throttle_Effort: 5.128300 Brake_Effort: 17.000000 Current_Velocity: 2.148135
Neural Network Prediction (Estimated): 2.142995 Expected Value (Desired): 2.161129 Error: 0.018134 Throttle_Effort: 4.902800 Brake_Effort: 17.000000 Current_Velocity: 2.132980
Neural Network Prediction (Estimated): 2.163969 Expected Value (Desired): 2.195776 Error: 0.031807 Throttle_Effort: 5.440000 Brake_Effort: 17.000000 Current_Velocity: 2.161130
Neural Network Prediction (Estimated): 2.199411 Expected Value (Desired): 2.197942 Error: -0.001469 Throttle_Effort: 4.473200 Brake_Effort: 17.000000 Current_Velocity: 2.195775
Neural Network Prediction (Estimated): 2.199481 Expected Value (Desired): 2.169791 Error: -0.029690 Throttle_Effort: 2.119400 Brake_Effort: 17.000000 Current_Velocity: 2.197940
Neural Network Prediction (Estimated): 2.135488 Expected Value (Desired): 2.161129 Error: 0.025641 Throttle_Effort: 1.517100 Brake_Effort: 17.000000 Current_Velocity: 2.169790
Neural Network Prediction (Estimated): 2.092963 Expected Value (Desired): 2.161129 Error: 0.068166 Throttle_Effort: 4.479300 Brake_Effort: 17.000000 Current_Velocity: 2.161130
Neural Network Prediction (Estimated): 2.104908 Expected Value (Desired): 2.165460 Error: 0.060552 Throttle_Effort: 4.661500 Brake_Effort: 17.000000 Current_Velocity: 2.161130
Neural Network Prediction (Estimated): 2.114458 Expected Value (Desired): 2.161129 Error: 0.046671 Throttle_Effort: 4.661800 Brake_Effort: 17.000000 Current_Velocity: 2.165460
Neural Network Prediction (Estimated): 2.118372 Expected Value (Desired): 2.184949 Error: 0.066577 Throttle_Effort: 2.756200 Brake_Effort: 17.000000 Current_Velocity: 2.161130
Neural Network Prediction (Estimated): 2.126898 Expected Value (Desired): 2.169791 Error: 0.042893 Throttle_Effort: 5.157100 Brake_Effort: 17.000000 Current_Velocity: 2.184950
Neural Network Prediction (Estimated): 2.128654 Expected Value (Desired): 2.161129 Error: 0.032475 Throttle_Effort: 3.901000 Brake_Effort: 17.000000 Current_Velocity: 2.169790
Neural Network Prediction (Estimated): 2.150641 Expected Value (Desired): 2.182784 Error: 0.032143 Throttle_Effort: 0.666900 Brake_Effort: 17.000000 Current_Velocity: 2.161130
Neural Network Prediction (Estimated): 2.149688 Expected Value (Desired): 2.210935 Error: 0.061247 Throttle_Effort: 4.875200 Brake_Effort: 17.000000 Current_Velocity: 2.182785
Neural Network Prediction (Estimated): 2.157591 Expected Value (Desired): 2.223927 Error: 0.066336 Throttle_Effort: 4.612400 Brake_Effort: 17.000000 Current_Velocity: 2.210935
Neural Network Prediction (Estimated): 2.168249 Expected Value (Desired): 2.139474 Error: -0.028775 Throttle_Effort: 4.461100 Brake_Effort: 17.000000 Current_Velocity: 2.223925
Neural Network Prediction (Estimated): 2.153143 Expected Value (Desired): 2.109158 Error: -0.043985 Throttle_Effort: 4.965600 Brake_Effort: 17.000000 Current_Velocity: 2.139475
Neural Network Prediction (Estimated): 2.110796 Expected Value (Desired): 2.070180 Error: -0.040616 Throttle_Effort: 6.489700 Brake_Effort: 17.000000 Current_Velocity: 2.109160
Neural Network Prediction (Estimated): 2.086771 Expected Value (Desired): 2.139474 Error: 0.052703 Throttle_Effort: 5.901000 Brake_Effort: 17.000000 Current_Velocity: 2.070180
Neural Network Prediction (Estimated): 2.140227 Expected Value (Desired): 2.265071 Error: 0.124844 Throttle_Effort: 6.329500 Brake_Effort: 17.000000 Current_Velocity: 2.139475
Neural Network Prediction (Estimated): 2.228913 Expected Value (Desired): 2.288891 Error: 0.059978 Throttle_Effort: 6.036300 Brake_Effort: 17.000000 Current_Velocity: 2.265070
Neural Network Prediction (Estimated): 2.284367 Expected Value (Desired): 2.297553 Error: 0.013186 Throttle_Effort: 3.791300 Brake_Effort: 17.000000 Current_Velocity: 2.288890
Neural Network Prediction (Estimated): 2.259586 Expected Value (Desired): 2.243417 Error: -0.016169 Throttle_Effort: 4.276400 Brake_Effort: 17.000000 Current_Velocity: 2.297555
Neural Network Prediction (Estimated): 2.222547 Expected Value (Desired): 2.189280 Error: -0.033267 Throttle_Effort: 2.515300 Brake_Effort: 17.000000 Current_Velocity: 2.243415
Neural Network Prediction (Estimated): 2.153386 Expected Value (Desired): 2.152467 Error: -0.000919 Throttle_Effort: 7.012400 Brake_Effort: 17.000000 Current_Velocity: 2.189280
Neural Network Prediction (Estimated): 2.149945 Expected Value (Desired): 2.178453 Error: 0.028508 Throttle_Effort: 7.916200 Brake_Effort: 17.000000 Current_Velocity: 2.152465
Neural Network Prediction (Estimated): 2.173317 Expected Value (Desired): 2.182784 Error: 0.009467 Throttle_Effort: 8.834400 Brake_Effort: 17.000000 Current_Velocity: 2.178455
Neural Network Prediction (Estimated): 2.204828 Expected Value (Desired): 2.232589 Error: 0.027761 Throttle_Effort: 8.615700 Brake_Effort: 17.000000 Current_Velocity: 2.182785
Neural Network Prediction (Estimated): 2.235456 Expected Value (Desired): 2.262906 Error: 0.027450 Throttle_Effort: 8.581400 Brake_Effort: 17.000000 Current_Velocity: 2.232590
Neural Network Prediction (Estimated): 2.280994 Expected Value (Desired): 2.299719 Error: 0.018725 Throttle_Effort: 7.799000 Brake_Effort: 17.000000 Current_Velocity: 2.262905
Neural Network Prediction (Estimated): 2.303244 Expected Value (Desired): 2.327869 Error: 0.024625 Throttle_Effort: 7.398900 Brake_Effort: 17.000000 Current_Velocity: 2.299720
Neural Network Prediction (Estimated): 2.308518 Expected Value (Desired): 2.286726 Error: -0.021792 Throttle_Effort: 6.922700 Brake_Effort: 17.000000 Current_Velocity: 2.327870
Neural Network Prediction (Estimated): 2.266562 Expected Value (Desired): 2.245582 Error: -0.020980 Throttle_Effort: 6.567600 Brake_Effort: 17.000000 Current_Velocity: 2.286725
Neural Network Prediction (Estimated): 2.214603 Expected Value (Desired): 2.200107 Error: -0.014496 Throttle_Effort: 7.227200 Brake_Effort: 17.000000 Current_Velocity: 2.245580
Neural Network Prediction (Estimated): 2.176276 Expected Value (Desired): 2.182784 Error: 0.006508 Throttle_Effort: 7.857900 Brake_Effort: 17.000000 Current_Velocity: 2.200105
Neural Network Prediction (Estimated): 2.153697 Expected Value (Desired): 2.243417 Error: 0.089720 Throttle_Effort: 8.501000 Brake_Effort: 17.000000 Current_Velocity: 2.182785
Neural Network Prediction (Estimated): 2.191074 Expected Value (Desired): 2.280229 Error: 0.089155 Throttle_Effort: 8.776700 Brake_Effort: 17.000000 Current_Velocity: 2.243415
Neural Network Prediction (Estimated): 2.246132 Expected Value (Desired): 2.319208 Error: 0.073076 Throttle_Effort: 7.809600 Brake_Effort: 17.000000 Current_Velocity: 2.280230
Neural Network Prediction (Estimated): 2.292408 Expected Value (Desired): 2.353855 Error: 0.061446 Throttle_Effort: 8.153600 Brake_Effort: 17.000000 Current_Velocity: 2.319210
Neural Network Prediction (Estimated): 2.314907 Expected Value (Desired): 2.347359 Error: 0.032452 Throttle_Effort: 5.702100 Brake_Effort: 17.000000 Current_Velocity: 2.353855
Neural Network Prediction (Estimated): 2.290549 Expected Value (Desired): 2.323539 Error: 0.032990 Throttle_Effort: 8.733300 Brake_Effort: 17.000000 Current_Velocity: 2.347360
Neural Network Prediction (Estimated): 2.271482 Expected Value (Desired): 2.299719 Error: 0.028237 Throttle_Effort: 4.550900 Brake_Effort: 17.000000 Current_Velocity: 2.323540
Neural Network Prediction (Estimated): 2.250977 Expected Value (Desired): 2.353855 Error: 0.102878 Throttle_Effort: 4.901500 Brake_Effort: 17.000000 Current_Velocity: 2.299720
Neural Network Prediction (Estimated): 2.263960 Expected Value (Desired): 2.394999 Error: 0.131039 Throttle_Effort: 4.898200 Brake_Effort: 17.000000 Current_Velocity: 2.353855
Neural Network Prediction (Estimated): 2.297751 Expected Value (Desired): 2.416653 Error: 0.118901 Throttle_Effort: 3.890900 Brake_Effort: 17.000000 Current_Velocity: 2.395000
Neural Network Prediction (Estimated): 2.320707 Expected Value (Desired): 2.401495 Error: 0.080788 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.416655
Neural Network Prediction (Estimated): 2.305204 Expected Value (Desired): 2.323539 Error: 0.018335 Throttle_Effort: 5.349600 Brake_Effort: 17.000000 Current_Velocity: 2.401495
Neural Network Prediction (Estimated): 2.280339 Expected Value (Desired): 2.267237 Error: -0.013102 Throttle_Effort: 5.850300 Brake_Effort: 17.000000 Current_Velocity: 2.323540
Neural Network Prediction (Estimated): 2.253940 Expected Value (Desired): 2.234755 Error: -0.019185 Throttle_Effort: 7.053500 Brake_Effort: 17.000000 Current_Velocity: 2.267235
Neural Network Prediction (Estimated): 2.258471 Expected Value (Desired): 2.223927 Error: -0.034544 Throttle_Effort: 7.988700 Brake_Effort: 17.000000 Current_Velocity: 2.234755
Neural Network Prediction (Estimated): 2.286620 Expected Value (Desired): 2.280229 Error: -0.006391 Throttle_Effort: 8.640100 Brake_Effort: 17.000000 Current_Velocity: 2.223925
Neural Network Prediction (Estimated): 2.331585 Expected Value (Desired): 2.403661 Error: 0.072076 Throttle_Effort: 8.571100 Brake_Effort: 17.000000 Current_Velocity: 2.280230
Neural Network Prediction (Estimated): 2.414417 Expected Value (Desired): 2.479452 Error: 0.065035 Throttle_Effort: 7.707700 Brake_Effort: 17.000000 Current_Velocity: 2.403660
Neural Network Prediction (Estimated): 2.474445 Expected Value (Desired): 2.529257 Error: 0.054812 Throttle_Effort: 5.685300 Brake_Effort: 17.000000 Current_Velocity: 2.479450
Neural Network Prediction (Estimated): 2.476789 Expected Value (Desired): 2.557408 Error: 0.080619 Throttle_Effort: 4.441800 Brake_Effort: 17.000000 Current_Velocity: 2.529255
Neural Network Prediction (Estimated): 2.439580 Expected Value (Desired): 2.496775 Error: 0.057194 Throttle_Effort: 3.759700 Brake_Effort: 17.000000 Current_Velocity: 2.557410
Neural Network Prediction (Estimated): 2.381754 Expected Value (Desired): 2.451301 Error: 0.069547 Throttle_Effort: 3.380500 Brake_Effort: 17.000000 Current_Velocity: 2.496775
Neural Network Prediction (Estimated): 2.327283 Expected Value (Desired): 2.371179 Error: 0.043896 Throttle_Effort: 4.328000 Brake_Effort: 17.000000 Current_Velocity: 2.451300
Neural Network Prediction (Estimated): 2.310740 Expected Value (Desired): 2.306215 Error: -0.004525 Throttle_Effort: 4.820900 Brake_Effort: 17.000000 Current_Velocity: 2.371180
Neural Network Prediction (Estimated): 2.296371 Expected Value (Desired): 2.297553 Error: 0.001182 Throttle_Effort: 6.008000 Brake_Effort: 17.000000 Current_Velocity: 2.306215
Neural Network Prediction (Estimated): 2.328591 Expected Value (Desired): 2.323539 Error: -0.005052 Throttle_Effort: 6.994200 Brake_Effort: 17.000000 Current_Velocity: 2.297555
Neural Network Prediction (Estimated): 2.382331 Expected Value (Desired): 2.366848 Error: -0.015483 Throttle_Effort: 7.274100 Brake_Effort: 17.000000 Current_Velocity: 2.323540
Neural Network Prediction (Estimated): 2.432528 Expected Value (Desired): 2.483783 Error: 0.051255 Throttle_Effort: 6.970300 Brake_Effort: 17.000000 Current_Velocity: 2.366850
Neural Network Prediction (Estimated): 2.496356 Expected Value (Desired): 2.520595 Error: 0.024239 Throttle_Effort: 6.051800 Brake_Effort: 17.000000 Current_Velocity: 2.483785
Neural Network Prediction (Estimated): 2.510171 Expected Value (Desired): 2.527092 Error: 0.016921 Throttle_Effort: 4.332500 Brake_Effort: 17.000000 Current_Velocity: 2.520595
Neural Network Prediction (Estimated): 2.487907 Expected Value (Desired): 2.505437 Error: 0.017530 Throttle_Effort: 3.710800 Brake_Effort: 17.000000 Current_Velocity: 2.527090
Neural Network Prediction (Estimated): 2.440298 Expected Value (Desired): 2.390668 Error: -0.049630 Throttle_Effort: 3.444100 Brake_Effort: 17.000000 Current_Velocity: 2.505435
Neural Network Prediction (Estimated): 2.358061 Expected Value (Desired): 2.332200 Error: -0.025861 Throttle_Effort: 4.210800 Brake_Effort: 17.000000 Current_Velocity: 2.390670
Neural Network Prediction (Estimated): 2.306971 Expected Value (Desired): 2.310546 Error: 0.003575 Throttle_Effort: 5.939700 Brake_Effort: 17.000000 Current_Velocity: 2.332200
Neural Network Prediction (Estimated): 2.313561 Expected Value (Desired): 2.312711 Error: -0.000850 Throttle_Effort: 6.992700 Brake_Effort: 17.000000 Current_Velocity: 2.310545
Neural Network Prediction (Estimated): 2.347148 Expected Value (Desired): 2.364682 Error: 0.017534 Throttle_Effort: 7.428000 Brake_Effort: 17.000000 Current_Velocity: 2.312710
Neural Network Prediction (Estimated): 2.406019 Expected Value (Desired): 2.455632 Error: 0.049613 Throttle_Effort: 7.249100 Brake_Effort: 17.000000 Current_Velocity: 2.364680
Neural Network Prediction (Estimated): 2.481114 Expected Value (Desired): 2.548746 Error: 0.067632 Throttle_Effort: 6.455400 Brake_Effort: 17.000000 Current_Velocity: 2.455630
Neural Network Prediction (Estimated): 2.517797 Expected Value (Desired): 2.566070 Error: 0.048274 Throttle_Effort: 5.087200 Brake_Effort: 17.000000 Current_Velocity: 2.548745
Neural Network Prediction (Estimated): 2.526399 Expected Value (Desired): 2.522761 Error: -0.003638 Throttle_Effort: 3.220400 Brake_Effort: 17.000000 Current_Velocity: 2.566070
Neural Network Prediction (Estimated): 2.470444 Expected Value (Desired): 2.479452 Error: 0.009008 Throttle_Effort: 3.220000 Brake_Effort: 17.000000 Current_Velocity: 2.522760
Neural Network Prediction (Estimated): 2.419142 Expected Value (Desired): 2.414488 Error: -0.004653 Throttle_Effort: 3.873600 Brake_Effort: 17.000000 Current_Velocity: 2.479450
Neural Network Prediction (Estimated): 2.374461 Expected Value (Desired): 2.420984 Error: 0.046523 Throttle_Effort: 4.452100 Brake_Effort: 17.000000 Current_Velocity: 2.414490
Neural Network Prediction (Estimated): 2.371531 Expected Value (Desired): 2.427481 Error: 0.055950 Throttle_Effort: 5.705200 Brake_Effort: 17.000000 Current_Velocity: 2.420985
Neural Network Prediction (Estimated): 2.398370 Expected Value (Desired): 2.446970 Error: 0.048600 Throttle_Effort: 5.625900 Brake_Effort: 17.000000 Current_Velocity: 2.427480
Neural Network Prediction (Estimated): 2.432498 Expected Value (Desired): 2.475121 Error: 0.042623 Throttle_Effort: 5.525600 Brake_Effort: 17.000000 Current_Velocity: 2.446970
Neural Network Prediction (Estimated): 2.447013 Expected Value (Desired): 2.511934 Error: 0.064921 Throttle_Effort: 5.261500 Brake_Effort: 17.000000 Current_Velocity: 2.475120
Neural Network Prediction (Estimated): 2.475159 Expected Value (Desired): 2.542250 Error: 0.067091 Throttle_Effort: 4.889400 Brake_Effort: 17.000000 Current_Velocity: 2.511935
Neural Network Prediction (Estimated): 2.482765 Expected Value (Desired): 2.605048 Error: 0.122283 Throttle_Effort: 4.354300 Brake_Effort: 17.000000 Current_Velocity: 2.542250
Neural Network Prediction (Estimated): 2.495758 Expected Value (Desired): 2.605048 Error: 0.109290 Throttle_Effort: 3.863500 Brake_Effort: 17.000000 Current_Velocity: 2.605050
Neural Network Prediction (Estimated): 2.507538 Expected Value (Desired): 2.576897 Error: 0.069359 Throttle_Effort: 2.661000 Brake_Effort: 17.000000 Current_Velocity: 2.605050
Neural Network Prediction (Estimated): 2.494616 Expected Value (Desired): 2.462128 Error: -0.032488 Throttle_Effort: 2.548500 Brake_Effort: 17.000000 Current_Velocity: 2.576895
Neural Network Prediction (Estimated): 2.440814 Expected Value (Desired): 2.358186 Error: -0.082628 Throttle_Effort: 3.298300 Brake_Effort: 17.000000 Current_Velocity: 2.462130
Neural Network Prediction (Estimated): 2.377881 Expected Value (Desired): 2.353855 Error: -0.024026 Throttle_Effort: 5.041800 Brake_Effort: 17.000000 Current_Velocity: 2.358185
Neural Network Prediction (Estimated): 2.362585 Expected Value (Desired): 2.392833 Error: 0.030248 Throttle_Effort: 6.819000 Brake_Effort: 17.000000 Current_Velocity: 2.353855
Neural Network Prediction (Estimated): 2.397791 Expected Value (Desired): 2.466459 Error: 0.068668 Throttle_Effort: 7.159800 Brake_Effort: 17.000000 Current_Velocity: 2.392835
Neural Network Prediction (Estimated): 2.458220 Expected Value (Desired): 2.520595 Error: 0.062375 Throttle_Effort: 5.282700 Brake_Effort: 17.000000 Current_Velocity: 2.466460
Neural Network Prediction (Estimated): 2.505771 Expected Value (Desired): 2.563905 Error: 0.058134 Throttle_Effort: 0.700900 Brake_Effort: 17.000000 Current_Velocity: 2.520595
Neural Network Prediction (Estimated): 2.503152 Expected Value (Desired): 2.563905 Error: 0.060753 Throttle_Effort: 4.271000 Brake_Effort: 17.000000 Current_Velocity: 2.563905
Neural Network Prediction (Estimated): 2.497986 Expected Value (Desired): 2.501106 Error: 0.003120 Throttle_Effort: 3.397300 Brake_Effort: 17.000000 Current_Velocity: 2.563905
Neural Network Prediction (Estimated): 2.447476 Expected Value (Desired): 2.362517 Error: -0.084959 Throttle_Effort: 3.629800 Brake_Effort: 17.000000 Current_Velocity: 2.501105
Neural Network Prediction (Estimated): 2.370436 Expected Value (Desired): 2.327869 Error: -0.042567 Throttle_Effort: 4.638200 Brake_Effort: 17.000000 Current_Velocity: 2.362515
Neural Network Prediction (Estimated): 2.345531 Expected Value (Desired): 2.334366 Error: -0.011165 Throttle_Effort: 6.962400 Brake_Effort: 17.000000 Current_Velocity: 2.327870
Neural Network Prediction (Estimated): 2.370120 Expected Value (Desired): 2.371179 Error: 0.001059 Throttle_Effort: 7.751700 Brake_Effort: 17.000000 Current_Velocity: 2.334365
Neural Network Prediction (Estimated): 2.436603 Expected Value (Desired): 2.509768 Error: 0.073165 Throttle_Effort: 7.554700 Brake_Effort: 17.000000 Current_Velocity: 2.371180
Neural Network Prediction (Estimated): 2.537542 Expected Value (Desired): 2.576897 Error: 0.039355 Throttle_Effort: 6.961200 Brake_Effort: 17.000000 Current_Velocity: 2.509770
Neural Network Prediction (Estimated): 2.582322 Expected Value (Desired): 2.635365 Error: 0.053043 Throttle_Effort: 4.617400 Brake_Effort: 17.000000 Current_Velocity: 2.576895
Neural Network Prediction (Estimated): 2.575694 Expected Value (Desired): 2.622372 Error: 0.046678 Throttle_Effort: 3.558300 Brake_Effort: 17.000000 Current_Velocity: 2.635365
Neural Network Prediction (Estimated): 2.530436 Expected Value (Desired): 2.553077 Error: 0.022641 Throttle_Effort: 2.908900 Brake_Effort: 17.000000 Current_Velocity: 2.622370
Neural Network Prediction (Estimated): 2.447026 Expected Value (Desired): 2.498941 Error: 0.051915 Throttle_Effort: 3.123800 Brake_Effort: 17.000000 Current_Velocity: 2.553075
Neural Network Prediction (Estimated): 2.389393 Expected Value (Desired): 2.423150 Error: 0.033757 Throttle_Effort: 4.195900 Brake_Effort: 17.000000 Current_Velocity: 2.498940
Neural Network Prediction (Estimated): 2.357650 Expected Value (Desired): 2.403661 Error: 0.046011 Throttle_Effort: 4.890100 Brake_Effort: 17.000000 Current_Velocity: 2.423150
Neural Network Prediction (Estimated): 2.377602 Expected Value (Desired): 2.401495 Error: 0.023893 Throttle_Effort: 5.805700 Brake_Effort: 17.000000 Current_Velocity: 2.403660
Neural Network Prediction (Estimated): 2.416320 Expected Value (Desired): 2.459963 Error: 0.043643 Throttle_Effort: 6.110000 Brake_Effort: 17.000000 Current_Velocity: 2.401495
Neural Network Prediction (Estimated): 2.477388 Expected Value (Desired): 2.477286 Error: -0.000102 Throttle_Effort: 6.383400 Brake_Effort: 17.000000 Current_Velocity: 2.459965
Neural Network Prediction (Estimated): 2.507061 Expected Value (Desired): 2.488114 Error: -0.018947 Throttle_Effort: 5.366900 Brake_Effort: 17.000000 Current_Velocity: 2.477285
Neural Network Prediction (Estimated): 2.506277 Expected Value (Desired): 2.553077 Error: 0.046800 Throttle_Effort: 5.134100 Brake_Effort: 17.000000 Current_Velocity: 2.488115
Neural Network Prediction (Estimated): 2.518037 Expected Value (Desired): 2.557408 Error: 0.039371 Throttle_Effort: 4.941300 Brake_Effort: 17.000000 Current_Velocity: 2.553075
Neural Network Prediction (Estimated): 2.503001 Expected Value (Desired): 2.550912 Error: 0.047911 Throttle_Effort: 3.845900 Brake_Effort: 17.000000 Current_Velocity: 2.557410
Neural Network Prediction (Estimated): 2.479939 Expected Value (Desired): 2.563905 Error: 0.083966 Throttle_Effort: 3.705300 Brake_Effort: 17.000000 Current_Velocity: 2.550910
Neural Network Prediction (Estimated): 2.480059 Expected Value (Desired): 2.490279 Error: 0.010220 Throttle_Effort: 3.700200 Brake_Effort: 17.000000 Current_Velocity: 2.563905
Neural Network Prediction (Estimated): 2.441524 Expected Value (Desired): 2.436142 Error: -0.005382 Throttle_Effort: 3.545100 Brake_Effort: 17.000000 Current_Velocity: 2.490280
Neural Network Prediction (Estimated): 2.403336 Expected Value (Desired): 2.388502 Error: -0.014834 Throttle_Effort: 4.733900 Brake_Effort: 17.000000 Current_Velocity: 2.436140
Neural Network Prediction (Estimated): 2.381148 Expected Value (Desired): 2.366848 Error: -0.014300 Throttle_Effort: 5.586500 Brake_Effort: 17.000000 Current_Velocity: 2.388500
Neural Network Prediction (Estimated): 2.386969 Expected Value (Desired): 2.446970 Error: 0.060001 Throttle_Effort: 6.238300 Brake_Effort: 17.000000 Current_Velocity: 2.366850
Neural Network Prediction (Estimated): 2.430062 Expected Value (Desired): 2.522761 Error: 0.092699 Throttle_Effort: 6.527300 Brake_Effort: 17.000000 Current_Velocity: 2.446970
Neural Network Prediction (Estimated): 2.509264 Expected Value (Desired): 2.587725 Error: 0.078461 Throttle_Effort: 5.313500 Brake_Effort: 17.000000 Current_Velocity: 2.522760
Neural Network Prediction (Estimated): 2.559214 Expected Value (Desired): 2.589890 Error: 0.030676 Throttle_Effort: 4.101000 Brake_Effort: 17.000000 Current_Velocity: 2.587725
Neural Network Prediction (Estimated): 2.563768 Expected Value (Desired): 2.550912 Error: -0.012856 Throttle_Effort: 3.371200 Brake_Effort: 17.000000 Current_Velocity: 2.589890
Neural Network Prediction (Estimated): 2.511631 Expected Value (Desired): 2.540085 Error: 0.028454 Throttle_Effort: 3.350100 Brake_Effort: 17.000000 Current_Velocity: 2.550910
Neural Network Prediction (Estimated): 2.471946 Expected Value (Desired): 2.533588 Error: 0.061641 Throttle_Effort: 4.034200 Brake_Effort: 17.000000 Current_Velocity: 2.540085
Neural Network Prediction (Estimated): 2.449301 Expected Value (Desired): 2.483783 Error: 0.034482 Throttle_Effort: 4.207600 Brake_Effort: 17.000000 Current_Velocity: 2.533590
Neural Network Prediction (Estimated): 2.425797 Expected Value (Desired): 2.405826 Error: -0.019970 Throttle_Effort: 4.469000 Brake_Effort: 17.000000 Current_Velocity: 2.483785
Neural Network Prediction (Estimated): 2.400799 Expected Value (Desired): 2.410157 Error: 0.009358 Throttle_Effort: 5.249700 Brake_Effort: 17.000000 Current_Velocity: 2.405825
Neural Network Prediction (Estimated): 2.418894 Expected Value (Desired): 2.418819 Error: -0.000075 Throttle_Effort: 6.595300 Brake_Effort: 17.000000 Current_Velocity: 2.410155
Neural Network Prediction (Estimated): 2.460044 Expected Value (Desired): 2.488114 Error: 0.028070 Throttle_Effort: 6.567400 Brake_Effort: 17.000000 Current_Velocity: 2.418820
Neural Network Prediction (Estimated): 2.519541 Expected Value (Desired): 2.535754 Error: 0.016213 Throttle_Effort: 6.178600 Brake_Effort: 17.000000 Current_Velocity: 2.488115
Neural Network Prediction (Estimated): 2.559607 Expected Value (Desired): 2.546581 Error: -0.013026 Throttle_Effort: 5.144600 Brake_Effort: 17.000000 Current_Velocity: 2.535755
Neural Network Prediction (Estimated): 2.557012 Expected Value (Desired): 2.548746 Error: -0.008266 Throttle_Effort: 4.290400 Brake_Effort: 17.000000 Current_Velocity: 2.546580
Neural Network Prediction (Estimated): 2.522733 Expected Value (Desired): 2.559574 Error: 0.036841 Throttle_Effort: 4.087300 Brake_Effort: 17.000000 Current_Velocity: 2.548745
Neural Network Prediction (Estimated): 2.501585 Expected Value (Desired): 2.527092 Error: 0.025506 Throttle_Effort: 4.008200 Brake_Effort: 17.000000 Current_Velocity: 2.559575
Neural Network Prediction (Estimated): 2.465145 Expected Value (Desired): 2.503272 Error: 0.038127 Throttle_Effort: 3.859500 Brake_Effort: 17.000000 Current_Velocity: 2.527090
Neural Network Prediction (Estimated): 2.451212 Expected Value (Desired): 2.438308 Error: -0.012904 Throttle_Effort: 4.362900 Brake_Effort: 17.000000 Current_Velocity: 2.503270
Neural Network Prediction (Estimated): 2.416995 Expected Value (Desired): 2.384171 Error: -0.032824 Throttle_Effort: 4.481700 Brake_Effort: 17.000000 Current_Velocity: 2.438310
Neural Network Prediction (Estimated): 2.395231 Expected Value (Desired): 2.392833 Error: -0.002398 Throttle_Effort: 5.439900 Brake_Effort: 17.000000 Current_Velocity: 2.384170
Neural Network Prediction (Estimated): 2.401493 Expected Value (Desired): 2.392833 Error: -0.008660 Throttle_Effort: 6.240200 Brake_Effort: 17.000000 Current_Velocity: 2.392835
Neural Network Prediction (Estimated): 2.434020 Expected Value (Desired): 2.438308 Error: 0.004288 Throttle_Effort: 6.091700 Brake_Effort: 17.000000 Current_Velocity: 2.392835
Neural Network Prediction (Estimated): 2.464544 Expected Value (Desired): 2.574732 Error: 0.110188 Throttle_Effort: 6.255400 Brake_Effort: 17.000000 Current_Velocity: 2.438310
Neural Network Prediction (Estimated): 2.535089 Expected Value (Desired): 2.607214 Error: 0.072125 Throttle_Effort: 5.225600 Brake_Effort: 17.000000 Current_Velocity: 2.574730
Neural Network Prediction (Estimated): 2.571598 Expected Value (Desired): 2.607214 Error: 0.035616 Throttle_Effort: 3.206800 Brake_Effort: 17.000000 Current_Velocity: 2.607215
Neural Network Prediction (Estimated): 2.561089 Expected Value (Desired): 2.600717 Error: 0.039629 Throttle_Effort: 2.638400 Brake_Effort: 17.000000 Current_Velocity: 2.607215
Neural Network Prediction (Estimated): 2.528855 Expected Value (Desired): 2.505437 Error: -0.023418 Throttle_Effort: 2.586500 Brake_Effort: 17.000000 Current_Velocity: 2.600715
Neural Network Prediction (Estimated): 2.461701 Expected Value (Desired): 2.418819 Error: -0.042882 Throttle_Effort: 3.067300 Brake_Effort: 17.000000 Current_Velocity: 2.505435
Neural Network Prediction (Estimated): 2.406737 Expected Value (Desired): 2.410157 Error: 0.003420 Throttle_Effort: 4.507800 Brake_Effort: 17.000000 Current_Velocity: 2.418820
Neural Network Prediction (Estimated): 2.402513 Expected Value (Desired): 2.407992 Error: 0.005479 Throttle_Effort: 6.133400 Brake_Effort: 17.000000 Current_Velocity: 2.410155
Neural Network Prediction (Estimated): 2.431674 Expected Value (Desired): 2.483783 Error: 0.052109 Throttle_Effort: 6.300800 Brake_Effort: 17.000000 Current_Velocity: 2.407990
Neural Network Prediction (Estimated): 2.482640 Expected Value (Desired): 2.561739 Error: 0.079099 Throttle_Effort: 6.049900 Brake_Effort: 17.000000 Current_Velocity: 2.483785
Neural Network Prediction (Estimated): 2.539783 Expected Value (Desired): 2.600717 Error: 0.060934 Throttle_Effort: 4.899800 Brake_Effort: 17.000000 Current_Velocity: 2.561740
Neural Network Prediction (Estimated): 2.562737 Expected Value (Desired): 2.598552 Error: 0.035815 Throttle_Effort: 3.641700 Brake_Effort: 17.000000 Current_Velocity: 2.600715
Neural Network Prediction (Estimated): 2.536117 Expected Value (Desired): 2.576897 Error: 0.040780 Throttle_Effort: 2.789500 Brake_Effort: 17.000000 Current_Velocity: 2.598550
Neural Network Prediction (Estimated): 2.504463 Expected Value (Desired): 2.548746 Error: 0.044283 Throttle_Effort: 2.886400 Brake_Effort: 17.000000 Current_Velocity: 2.576895
Neural Network Prediction (Estimated): 2.480657 Expected Value (Desired): 2.494610 Error: 0.013953 Throttle_Effort: 3.204700 Brake_Effort: 17.000000 Current_Velocity: 2.548745
Neural Network Prediction (Estimated): 2.457502 Expected Value (Desired): 2.503272 Error: 0.045770 Throttle_Effort: 3.534000 Brake_Effort: 17.000000 Current_Velocity: 2.494610
Neural Network Prediction (Estimated): 2.460714 Expected Value (Desired): 2.446970 Error: -0.013744 Throttle_Effort: 4.573700 Brake_Effort: 17.000000 Current_Velocity: 2.503270
Neural Network Prediction (Estimated): 2.462135 Expected Value (Desired): 2.514099 Error: 0.051964 Throttle_Effort: 4.690800 Brake_Effort: 17.000000 Current_Velocity: 2.446970
Neural Network Prediction (Estimated): 2.482254 Expected Value (Desired): 2.566070 Error: 0.083817 Throttle_Effort: 5.474000 Brake_Effort: 17.000000 Current_Velocity: 2.514100
Neural Network Prediction (Estimated): 2.519655 Expected Value (Desired): 2.594221 Error: 0.074566 Throttle_Effort: 4.428600 Brake_Effort: 17.000000 Current_Velocity: 2.566070
Neural Network Prediction (Estimated): 2.544050 Expected Value (Desired): 2.633199 Error: 0.089149 Throttle_Effort: 3.488200 Brake_Effort: 17.000000 Current_Velocity: 2.594220
Neural Network Prediction (Estimated): 2.551574 Expected Value (Desired): 2.576897 Error: 0.025322 Throttle_Effort: 2.982900 Brake_Effort: 17.000000 Current_Velocity: 2.633200
Neural Network Prediction (Estimated): 2.525032 Expected Value (Desired): 2.496775 Error: -0.028257 Throttle_Effort: 2.430400 Brake_Effort: 17.000000 Current_Velocity: 2.576895
Neural Network Prediction (Estimated): 2.479386 Expected Value (Desired): 2.446970 Error: -0.032416 Throttle_Effort: 3.179900 Brake_Effort: 17.000000 Current_Velocity: 2.496775
Neural Network Prediction (Estimated): 2.439108 Expected Value (Desired): 2.444804 Error: 0.005696 Throttle_Effort: 4.500900 Brake_Effort: 17.000000 Current_Velocity: 2.446970
Neural Network Prediction (Estimated): 2.442233 Expected Value (Desired): 2.522761 Error: 0.080528 Throttle_Effort: 5.084200 Brake_Effort: 17.000000 Current_Velocity: 2.444805
Neural Network Prediction (Estimated): 2.490993 Expected Value (Desired): 2.522761 Error: 0.031768 Throttle_Effort: 5.077800 Brake_Effort: 17.000000 Current_Velocity: 2.522760
Neural Network Prediction (Estimated): 2.522038 Expected Value (Desired): 2.570401 Error: 0.048363 Throttle_Effort: 3.755100 Brake_Effort: 17.000000 Current_Velocity: 2.522760
Neural Network Prediction (Estimated): 2.541391 Expected Value (Desired): 2.585559 Error: 0.044168 Throttle_Effort: 4.025700 Brake_Effort: 17.000000 Current_Velocity: 2.570400
Neural Network Prediction (Estimated): 2.543729 Expected Value (Desired): 2.600717 Error: 0.056988 Throttle_Effort: 3.428600 Brake_Effort: 17.000000 Current_Velocity: 2.585560
Neural Network Prediction (Estimated): 2.538508 Expected Value (Desired): 2.594221 Error: 0.055713 Throttle_Effort: 3.181600 Brake_Effort: 17.000000 Current_Velocity: 2.600715
Neural Network Prediction (Estimated): 2.521976 Expected Value (Desired): 2.576897 Error: 0.054921 Throttle_Effort: 2.859800 Brake_Effort: 17.000000 Current_Velocity: 2.594220
Neural Network Prediction (Estimated): 2.512057 Expected Value (Desired): 2.533588 Error: 0.021531 Throttle_Effort: 2.903400 Brake_Effort: 17.000000 Current_Velocity: 2.576895
Neural Network Prediction (Estimated): 2.486298 Expected Value (Desired): 2.537919 Error: 0.051621 Throttle_Effort: 3.250100 Brake_Effort: 17.000000 Current_Velocity: 2.533590
Neural Network Prediction (Estimated): 2.487008 Expected Value (Desired): 2.522761 Error: 0.035753 Throttle_Effort: 3.863800 Brake_Effort: 17.000000 Current_Velocity: 2.537920
Neural Network Prediction (Estimated): 2.502960 Expected Value (Desired): 2.524926 Error: 0.021966 Throttle_Effort: 3.754700 Brake_Effort: 17.000000 Current_Velocity: 2.522760
Neural Network Prediction (Estimated): 2.510263 Expected Value (Desired): 2.568236 Error: 0.057973 Throttle_Effort: 4.083100 Brake_Effort: 17.000000 Current_Velocity: 2.524925
Neural Network Prediction (Estimated): 2.531433 Expected Value (Desired): 2.598552 Error: 0.067119 Throttle_Effort: 3.853500 Brake_Effort: 17.000000 Current_Velocity: 2.568235
Neural Network Prediction (Estimated): 2.557123 Expected Value (Desired): 2.633199 Error: 0.076076 Throttle_Effort: 3.191400 Brake_Effort: 17.000000 Current_Velocity: 2.598550
Neural Network Prediction (Estimated): 2.563642 Expected Value (Desired): 2.618041 Error: 0.054399 Throttle_Effort: 2.733900 Brake_Effort: 17.000000 Current_Velocity: 2.633200
Neural Network Prediction (Estimated): 2.548461 Expected Value (Desired): 2.550912 Error: 0.002450 Throttle_Effort: 2.018200 Brake_Effort: 17.000000 Current_Velocity: 2.618040
Neural Network Prediction (Estimated): 2.495779 Expected Value (Desired): 2.494610 Error: -0.001169 Throttle_Effort: 2.425600 Brake_Effort: 17.000000 Current_Velocity: 2.550910
Neural Network Prediction (Estimated): 2.453265 Expected Value (Desired): 2.494610 Error: 0.041345 Throttle_Effort: 3.427800 Brake_Effort: 17.000000 Current_Velocity: 2.494610
Neural Network Prediction (Estimated): 2.448346 Expected Value (Desired): 2.529257 Error: 0.080911 Throttle_Effort: 4.388400 Brake_Effort: 17.000000 Current_Velocity: 2.494610
Neural Network Prediction (Estimated): 2.486001 Expected Value (Desired): 2.542250 Error: 0.056249 Throttle_Effort: 4.584300 Brake_Effort: 17.000000 Current_Velocity: 2.529255
Neural Network Prediction (Estimated): 2.528183 Expected Value (Desired): 2.555243 Error: 0.027060 Throttle_Effort: 4.145900 Brake_Effort: 17.000000 Current_Velocity: 2.542250
Neural Network Prediction (Estimated): 2.546793 Expected Value (Desired): 2.524926 Error: -0.021867 Throttle_Effort: 3.940300 Brake_Effort: 17.000000 Current_Velocity: 2.555245
Neural Network Prediction (Estimated): 2.528279 Expected Value (Desired): 2.509768 Error: -0.018511 Throttle_Effort: 3.578200 Brake_Effort: 17.000000 Current_Velocity: 2.524925
Neural Network Prediction (Estimated): 2.500039 Expected Value (Desired): 2.533588 Error: 0.033549 Throttle_Effort: 4.086500 Brake_Effort: 17.000000 Current_Velocity: 2.509770
Neural Network Prediction (Estimated): 2.495595 Expected Value (Desired): 2.548746 Error: 0.053151 Throttle_Effort: 4.164400 Brake_Effort: 17.000000 Current_Velocity: 2.533590
Neural Network Prediction (Estimated): 2.516401 Expected Value (Desired): 2.566070 Error: 0.049669 Throttle_Effort: 3.802800 Brake_Effort: 17.000000 Current_Velocity: 2.548745
Neural Network Prediction (Estimated): 2.528979 Expected Value (Desired): 2.576897 Error: 0.047918 Throttle_Effort: 3.568600 Brake_Effort: 17.000000 Current_Velocity: 2.566070
Neural Network Prediction (Estimated): 2.544218 Expected Value (Desired): 2.570401 Error: 0.026183 Throttle_Effort: 3.259200 Brake_Effort: 17.000000 Current_Velocity: 2.576895
Neural Network Prediction (Estimated): 2.546782 Expected Value (Desired): 2.524926 Error: -0.021856 Throttle_Effort: 3.152700 Brake_Effort: 17.000000 Current_Velocity: 2.570400
Neural Network Prediction (Estimated): 2.512293 Expected Value (Desired): 2.514099 Error: 0.001806 Throttle_Effort: 3.264700 Brake_Effort: 17.000000 Current_Velocity: 2.524925
Neural Network Prediction (Estimated): 2.481927 Expected Value (Desired): 2.533588 Error: 0.051661 Throttle_Effort: 4.073600 Brake_Effort: 17.000000 Current_Velocity: 2.514100
Neural Network Prediction (Estimated): 2.474030 Expected Value (Desired): 2.520595 Error: 0.046566 Throttle_Effort: 4.342400 Brake_Effort: 17.000000 Current_Velocity: 2.533590
Neural Network Prediction (Estimated): 2.482411 Expected Value (Desired): 2.511934 Error: 0.029523 Throttle_Effort: 4.163400 Brake_Effort: 17.000000 Current_Velocity: 2.520595
Neural Network Prediction (Estimated): 2.486447 Expected Value (Desired): 2.509768 Error: 0.023321 Throttle_Effort: 4.353800 Brake_Effort: 17.000000 Current_Velocity: 2.511935
Neural Network Prediction (Estimated): 2.505117 Expected Value (Desired): 2.516265 Error: 0.011148 Throttle_Effort: 4.495000 Brake_Effort: 17.000000 Current_Velocity: 2.509770
Neural Network Prediction (Estimated): 2.525287 Expected Value (Desired): 2.535754 Error: 0.010467 Throttle_Effort: 4.573900 Brake_Effort: 17.000000 Current_Velocity: 2.516265
Neural Network Prediction (Estimated): 2.536125 Expected Value (Desired): 2.527092 Error: -0.009033 Throttle_Effort: 4.411100 Brake_Effort: 17.000000 Current_Velocity: 2.535755
Neural Network Prediction (Estimated): 2.524760 Expected Value (Desired): 2.574732 Error: 0.049972 Throttle_Effort: 4.126000 Brake_Effort: 17.000000 Current_Velocity: 2.527090
Neural Network Prediction (Estimated): 2.517913 Expected Value (Desired): 2.607214 Error: 0.089301 Throttle_Effort: 4.470100 Brake_Effort: 17.000000 Current_Velocity: 2.574730
Neural Network Prediction (Estimated): 2.527812 Expected Value (Desired): 2.628868 Error: 0.101056 Throttle_Effort: 3.685900 Brake_Effort: 17.000000 Current_Velocity: 2.607215
Neural Network Prediction (Estimated): 2.526347 Expected Value (Desired): 2.570401 Error: 0.044054 Throttle_Effort: 3.206400 Brake_Effort: 17.000000 Current_Velocity: 2.628870
Neural Network Prediction (Estimated): 2.505439 Expected Value (Desired): 2.535754 Error: 0.030315 Throttle_Effort: 2.917200 Brake_Effort: 17.000000 Current_Velocity: 2.570400
Neural Network Prediction (Estimated): 2.478529 Expected Value (Desired): 2.516265 Error: 0.037736 Throttle_Effort: 3.781300 Brake_Effort: 17.000000 Current_Velocity: 2.535755
Neural Network Prediction (Estimated): 2.471200 Expected Value (Desired): 2.436142 Error: -0.035058 Throttle_Effort: 4.464200 Brake_Effort: 17.000000 Current_Velocity: 2.516265
Neural Network Prediction (Estimated): 2.451189 Expected Value (Desired): 2.483783 Error: 0.032594 Throttle_Effort: 5.033600 Brake_Effort: 17.000000 Current_Velocity: 2.436140
Neural Network Prediction (Estimated): 2.477246 Expected Value (Desired): 2.540085 Error: 0.062839 Throttle_Effort: 6.171700 Brake_Effort: 17.000000 Current_Velocity: 2.483785
Neural Network Prediction (Estimated): 2.521717 Expected Value (Desired): 2.594221 Error: 0.072504 Throttle_Effort: 5.483200 Brake_Effort: 17.000000 Current_Velocity: 2.540085
Neural Network Prediction (Estimated): 2.558455 Expected Value (Desired): 2.661350 Error: 0.102895 Throttle_Effort: 4.616600 Brake_Effort: 17.000000 Current_Velocity: 2.594220
Neural Network Prediction (Estimated): 2.591310 Expected Value (Desired): 2.637530 Error: 0.046221 Throttle_Effort: 2.758500 Brake_Effort: 17.000000 Current_Velocity: 2.661350
Neural Network Prediction (Estimated): 2.574079 Expected Value (Desired): 2.509768 Error: -0.064311 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.637530
Neural Network Prediction (Estimated): 2.482343 Expected Value (Desired): 2.466459 Error: -0.015884 Throttle_Effort: 2.668300 Brake_Effort: 17.000000 Current_Velocity: 2.509770
Neural Network Prediction (Estimated): 2.424999 Expected Value (Desired): 2.464293 Error: 0.039294 Throttle_Effort: 5.098000 Brake_Effort: 17.000000 Current_Velocity: 2.466460
Neural Network Prediction (Estimated): 2.421261 Expected Value (Desired): 2.494610 Error: 0.073349 Throttle_Effort: 5.578000 Brake_Effort: 17.000000 Current_Velocity: 2.464295
Neural Network Prediction (Estimated): 2.456580 Expected Value (Desired): 2.561739 Error: 0.105159 Throttle_Effort: 5.595300 Brake_Effort: 17.000000 Current_Velocity: 2.494610
Neural Network Prediction (Estimated): 2.513444 Expected Value (Desired): 2.589890 Error: 0.076446 Throttle_Effort: 5.276500 Brake_Effort: 17.000000 Current_Velocity: 2.561740
Neural Network Prediction (Estimated): 2.560459 Expected Value (Desired): 2.652688 Error: 0.092229 Throttle_Effort: 4.116000 Brake_Effort: 17.000000 Current_Velocity: 2.589890
Neural Network Prediction (Estimated): 2.601047 Expected Value (Desired): 2.657019 Error: 0.055972 Throttle_Effort: 2.542900 Brake_Effort: 17.000000 Current_Velocity: 2.652690
Neural Network Prediction (Estimated): 2.607202 Expected Value (Desired): 2.644027 Error: 0.036825 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.657020
Neural Network Prediction (Estimated): 2.557344 Expected Value (Desired): 2.605048 Error: 0.047704 Throttle_Effort: 2.231500 Brake_Effort: 17.000000 Current_Velocity: 2.644025
Neural Network Prediction (Estimated): 2.509477 Expected Value (Desired): 2.509768 Error: 0.000291 Throttle_Effort: 2.256100 Brake_Effort: 17.000000 Current_Velocity: 2.605050
Neural Network Prediction (Estimated): 2.453969 Expected Value (Desired): 2.436142 Error: -0.017828 Throttle_Effort: 3.082600 Brake_Effort: 17.000000 Current_Velocity: 2.509770
Neural Network Prediction (Estimated): 2.409981 Expected Value (Desired): 2.462128 Error: 0.052147 Throttle_Effort: 4.513200 Brake_Effort: 17.000000 Current_Velocity: 2.436140
Neural Network Prediction (Estimated): 2.437763 Expected Value (Desired): 2.501106 Error: 0.063343 Throttle_Effort: 6.003600 Brake_Effort: 17.000000 Current_Velocity: 2.462130
Neural Network Prediction (Estimated): 2.499170 Expected Value (Desired): 2.563905 Error: 0.064735 Throttle_Effort: 5.661500 Brake_Effort: 17.000000 Current_Velocity: 2.501105
Neural Network Prediction (Estimated): 2.565756 Expected Value (Desired): 2.605048 Error: 0.039292 Throttle_Effort: 4.972900 Brake_Effort: 17.000000 Current_Velocity: 2.563905
Neural Network Prediction (Estimated): 2.603199 Expected Value (Desired): 2.641861 Error: 0.038661 Throttle_Effort: 4.021900 Brake_Effort: 17.000000 Current_Velocity: 2.605050
Neural Network Prediction (Estimated): 2.597878 Expected Value (Desired): 2.648358 Error: 0.050480 Throttle_Effort: 3.373300 Brake_Effort: 17.000000 Current_Velocity: 2.641860
Neural Network Prediction (Estimated): 2.569512 Expected Value (Desired): 2.559574 Error: -0.009938 Throttle_Effort: 2.611100 Brake_Effort: 17.000000 Current_Velocity: 2.648360
Neural Network Prediction (Estimated): 2.510955 Expected Value (Desired): 2.527092 Error: 0.016137 Throttle_Effort: 2.913000 Brake_Effort: 17.000000 Current_Velocity: 2.559575
Neural Network Prediction (Estimated): 2.472693 Expected Value (Desired): 2.494610 Error: 0.021917 Throttle_Effort: 4.058900 Brake_Effort: 17.000000 Current_Velocity: 2.527090
Neural Network Prediction (Estimated): 2.480785 Expected Value (Desired): 2.485948 Error: 0.005163 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.494610
Neural Network Prediction (Estimated): 2.491110 Expected Value (Desired): 2.535754 Error: 0.044644 Throttle_Effort: 0.000000 Brake_Effort: 27.757901 Current_Velocity: 2.485950
Neural Network Prediction (Estimated): 2.490127 Expected Value (Desired): 2.596387 Error: 0.106260 Throttle_Effort: 0.000000 Brake_Effort: 22.277001 Current_Velocity: 2.535755
Neural Network Prediction (Estimated): 2.503726 Expected Value (Desired): 2.576897 Error: 0.073171 Throttle_Effort: 0.000000 Brake_Effort: 23.798500 Current_Velocity: 2.596385
Neural Network Prediction (Estimated): 2.495475 Expected Value (Desired): 2.542250 Error: 0.046775 Throttle_Effort: 0.000000 Brake_Effort: 25.935701 Current_Velocity: 2.576895
Neural Network Prediction (Estimated): 2.450689 Expected Value (Desired): 2.438308 Error: -0.012381 Throttle_Effort: 0.000000 Brake_Effort: 25.539899 Current_Velocity: 2.542250
Neural Network Prediction (Estimated): 2.380575 Expected Value (Desired): 2.349524 Error: -0.031051 Throttle_Effort: 0.000000 Brake_Effort: 23.883300 Current_Velocity: 2.438310
Neural Network Prediction (Estimated): 2.332928 Expected Value (Desired): 2.349524 Error: 0.016596 Throttle_Effort: 0.000000 Brake_Effort: 20.751099 Current_Velocity: 2.349525
Neural Network Prediction (Estimated): 2.334611 Expected Value (Desired): 2.345193 Error: 0.010582 Throttle_Effort: 0.000000 Brake_Effort: 17.365700 Current_Velocity: 2.349525
Neural Network Prediction (Estimated): 2.353766 Expected Value (Desired): 2.278064 Error: -0.075702 Throttle_Effort: 0.000000 Brake_Effort: 17.373399 Current_Velocity: 2.345195
Neural Network Prediction (Estimated): 2.338780 Expected Value (Desired): 2.232589 Error: -0.106191 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.278065
Neural Network Prediction (Estimated): 2.311099 Expected Value (Desired): 2.347359 Error: 0.036260 Throttle_Effort: 3.304600 Brake_Effort: 17.000000 Current_Velocity: 2.232590
Neural Network Prediction (Estimated): 2.343514 Expected Value (Desired): 2.459963 Error: 0.116449 Throttle_Effort: 3.258700 Brake_Effort: 17.000000 Current_Velocity: 2.347360
Neural Network Prediction (Estimated): 2.415608 Expected Value (Desired): 2.631034 Error: 0.215426 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.459965
Neural Network Prediction (Estimated): 2.496737 Expected Value (Desired): 2.678674 Error: 0.181937 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.631035
Neural Network Prediction (Estimated): 2.515823 Expected Value (Desired): 2.641861 Error: 0.126038 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.678675
Neural Network Prediction (Estimated): 2.501975 Expected Value (Desired): 2.605048 Error: 0.103073 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.641860
Neural Network Prediction (Estimated): 2.441616 Expected Value (Desired): 2.553077 Error: 0.111461 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.605050
Neural Network Prediction (Estimated): 2.402474 Expected Value (Desired): 2.511934 Error: 0.109460 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.553075
Neural Network Prediction (Estimated): 2.370853 Expected Value (Desired): 2.496775 Error: 0.125922 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.511935
Neural Network Prediction (Estimated): 2.387958 Expected Value (Desired): 2.490279 Error: 0.102321 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.496775
Neural Network Prediction (Estimated): 2.427522 Expected Value (Desired): 2.483783 Error: 0.056261 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.490280
Neural Network Prediction (Estimated): 2.433017 Expected Value (Desired): 2.462128 Error: 0.029111 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.483785
Neural Network Prediction (Estimated): 2.420917 Expected Value (Desired): 2.459963 Error: 0.039046 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.462130
Neural Network Prediction (Estimated): 2.401428 Expected Value (Desired): 2.444804 Error: 0.043376 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.459965
Neural Network Prediction (Estimated): 2.394180 Expected Value (Desired): 2.438308 Error: 0.044128 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.444805
Neural Network Prediction (Estimated): 2.376552 Expected Value (Desired): 2.416653 Error: 0.040101 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.438310
Neural Network Prediction (Estimated): 2.367769 Expected Value (Desired): 2.410157 Error: 0.042388 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.416655
Neural Network Prediction (Estimated): 2.361784 Expected Value (Desired): 2.403661 Error: 0.041877 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.410155
Neural Network Prediction (Estimated): 2.354505 Expected Value (Desired): 2.394999 Error: 0.040494 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.403660
Neural Network Prediction (Estimated): 2.326029 Expected Value (Desired): 2.358186 Error: 0.032157 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.395000
Neural Network Prediction (Estimated): 2.308646 Expected Value (Desired): 2.338697 Error: 0.030051 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.358185
Neural Network Prediction (Estimated): 2.282287 Expected Value (Desired): 2.343028 Error: 0.060741 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.338695
Neural Network Prediction (Estimated): 2.299402 Expected Value (Desired): 2.308380 Error: 0.008977 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.343030
Neural Network Prediction (Estimated): 2.289048 Expected Value (Desired): 2.282395 Error: -0.006653 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.308380
Neural Network Prediction (Estimated): 2.294255 Expected Value (Desired): 2.312711 Error: 0.018456 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.282395
Neural Network Prediction (Estimated): 2.304109 Expected Value (Desired): 2.351690 Error: 0.047581 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.312710
Neural Network Prediction (Estimated): 2.307312 Expected Value (Desired): 2.410157 Error: 0.102844 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.351690
Neural Network Prediction (Estimated): 2.309499 Expected Value (Desired): 2.427481 Error: 0.117982 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.410155
Neural Network Prediction (Estimated): 2.300489 Expected Value (Desired): 2.440473 Error: 0.139984 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.427480
Neural Network Prediction (Estimated): 2.295657 Expected Value (Desired): 2.425315 Error: 0.129658 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.440475
Neural Network Prediction (Estimated): 2.288372 Expected Value (Desired): 2.418819 Error: 0.130447 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.425315
Neural Network Prediction (Estimated): 2.284567 Expected Value (Desired): 2.403661 Error: 0.119094 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.418820
Neural Network Prediction (Estimated): 2.297052 Expected Value (Desired): 2.414488 Error: 0.117436 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.403660
Neural Network Prediction (Estimated): 2.314903 Expected Value (Desired): 2.425315 Error: 0.110412 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.414490
Neural Network Prediction (Estimated): 2.321733 Expected Value (Desired): 2.418819 Error: 0.097086 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.425315
Neural Network Prediction (Estimated): 2.325640 Expected Value (Desired): 2.427481 Error: 0.101841 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.418820
Neural Network Prediction (Estimated): 2.318168 Expected Value (Desired): 2.410157 Error: 0.091989 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.427480
Neural Network Prediction (Estimated): 2.312541 Expected Value (Desired): 2.386337 Error: 0.073796 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.410155
Neural Network Prediction (Estimated): 2.303391 Expected Value (Desired): 2.327869 Error: 0.024478 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.386335
Neural Network Prediction (Estimated): 2.270012 Expected Value (Desired): 2.275898 Error: 0.005886 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.327870
Neural Network Prediction (Estimated): 2.251080 Expected Value (Desired): 2.299719 Error: 0.048639 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.275900
Neural Network Prediction (Estimated): 2.239955 Expected Value (Desired): 2.271568 Error: 0.031613 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.299720
Neural Network Prediction (Estimated): 2.238077 Expected Value (Desired): 2.282395 Error: 0.044318 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.271570
Neural Network Prediction (Estimated): 2.241246 Expected Value (Desired): 2.299719 Error: 0.058473 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.282395
Neural Network Prediction (Estimated): 2.251091 Expected Value (Desired): 2.301884 Error: 0.050793 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.299720
Neural Network Prediction (Estimated): 2.249420 Expected Value (Desired): 2.304049 Error: 0.054629 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.301885
Neural Network Prediction (Estimated): 2.247772 Expected Value (Desired): 2.310546 Error: 0.062774 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.304050
Neural Network Prediction (Estimated): 2.249279 Expected Value (Desired): 2.340862 Error: 0.091583 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.310545
Neural Network Prediction (Estimated): 2.258191 Expected Value (Desired): 2.327869 Error: 0.069678 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.340860
Neural Network Prediction (Estimated): 2.239745 Expected Value (Desired): 2.338697 Error: 0.098952 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.327870
Neural Network Prediction (Estimated): 2.247441 Expected Value (Desired): 2.327869 Error: 0.080428 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.338695
Neural Network Prediction (Estimated): 2.252365 Expected Value (Desired): 2.334366 Error: 0.082001 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.327870
Neural Network Prediction (Estimated): 2.252293 Expected Value (Desired): 2.349524 Error: 0.097231 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.334365
Neural Network Prediction (Estimated): 2.261197 Expected Value (Desired): 2.332200 Error: 0.071003 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.349525
Neural Network Prediction (Estimated): 2.252131 Expected Value (Desired): 2.351690 Error: 0.099559 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.332200
Neural Network Prediction (Estimated): 2.247883 Expected Value (Desired): 2.349524 Error: 0.101641 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.351690
Neural Network Prediction (Estimated): 2.249067 Expected Value (Desired): 2.343028 Error: 0.093961 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.349525
Neural Network Prediction (Estimated): 2.253320 Expected Value (Desired): 2.327869 Error: 0.074549 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.343030
Neural Network Prediction (Estimated): 2.241279 Expected Value (Desired): 2.338697 Error: 0.097418 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.327870
Neural Network Prediction (Estimated): 2.245070 Expected Value (Desired): 2.330035 Error: 0.084965 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.338695
Neural Network Prediction (Estimated): 2.258934 Expected Value (Desired): 2.321373 Error: 0.062438 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.330035
Neural Network Prediction (Estimated): 2.255658 Expected Value (Desired): 2.317042 Error: 0.061384 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.321375
Neural Network Prediction (Estimated): 2.253874 Expected Value (Desired): 2.271568 Error: 0.017694 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.317040
Neural Network Prediction (Estimated): 2.240470 Expected Value (Desired): 2.249913 Error: 0.009443 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.271570
Neural Network Prediction (Estimated): 2.217743 Expected Value (Desired): 2.223927 Error: 0.006184 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.249915
Neural Network Prediction (Estimated): 2.192456 Expected Value (Desired): 2.236920 Error: 0.044464 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.223925
Neural Network Prediction (Estimated): 2.192626 Expected Value (Desired): 2.230424 Error: 0.037798 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.236920
Neural Network Prediction (Estimated): 2.195660 Expected Value (Desired): 2.232589 Error: 0.036929 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.230425
Neural Network Prediction (Estimated): 2.207052 Expected Value (Desired): 2.234755 Error: 0.027703 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.232590
Neural Network Prediction (Estimated): 2.198713 Expected Value (Desired): 2.228258 Error: 0.029545 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.234755
Neural Network Prediction (Estimated): 2.196483 Expected Value (Desired): 2.228258 Error: 0.031775 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.228260
Neural Network Prediction (Estimated): 2.167713 Expected Value (Desired): 2.221762 Error: 0.054049 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.228260
Neural Network Prediction (Estimated): 2.158054 Expected Value (Desired): 2.213100 Error: 0.055046 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.221760
Neural Network Prediction (Estimated): 2.145694 Expected Value (Desired): 2.217431 Error: 0.071738 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.213100
Neural Network Prediction (Estimated): 2.151528 Expected Value (Desired): 2.217431 Error: 0.065903 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.217430
Neural Network Prediction (Estimated): 2.160136 Expected Value (Desired): 2.206604 Error: 0.046468 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.217430
Neural Network Prediction (Estimated): 2.167992 Expected Value (Desired): 2.210935 Error: 0.042943 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.206605
Neural Network Prediction (Estimated): 2.180707 Expected Value (Desired): 2.210935 Error: 0.030229 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.210935
Neural Network Prediction (Estimated): 2.184605 Expected Value (Desired): 2.217431 Error: 0.032826 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.210935
Neural Network Prediction (Estimated): 2.192438 Expected Value (Desired): 2.191446 Error: -0.000992 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.217430
Neural Network Prediction (Estimated): 2.171516 Expected Value (Desired): 2.189280 Error: 0.017764 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.191445
Neural Network Prediction (Estimated): 2.146391 Expected Value (Desired): 2.191446 Error: 0.045055 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.189280
Neural Network Prediction (Estimated): 2.135588 Expected Value (Desired): 2.187115 Error: 0.051527 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.191445
Neural Network Prediction (Estimated): 2.131082 Expected Value (Desired): 2.189280 Error: 0.058198 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.187115
Neural Network Prediction (Estimated): 2.125279 Expected Value (Desired): 2.189280 Error: 0.064001 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.189280
Neural Network Prediction (Estimated): 2.131660 Expected Value (Desired): 2.191446 Error: 0.059786 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.189280
Neural Network Prediction (Estimated): 2.121202 Expected Value (Desired): 2.193611 Error: 0.072408 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.191445
Neural Network Prediction (Estimated): 2.122655 Expected Value (Desired): 2.215266 Error: 0.092611 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.193610
Neural Network Prediction (Estimated): 2.124385 Expected Value (Desired): 2.215266 Error: 0.090881 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.215265
Neural Network Prediction (Estimated): 2.125005 Expected Value (Desired): 2.206604 Error: 0.081599 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.215265
Neural Network Prediction (Estimated): 2.121792 Expected Value (Desired): 2.217431 Error: 0.095639 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.206605
Neural Network Prediction (Estimated): 2.116028 Expected Value (Desired): 2.221762 Error: 0.105734 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.217430
Neural Network Prediction (Estimated): 2.128709 Expected Value (Desired): 2.234755 Error: 0.106046 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.221760
Neural Network Prediction (Estimated): 2.137207 Expected Value (Desired): 2.236920 Error: 0.099713 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.234755
Neural Network Prediction (Estimated): 2.148530 Expected Value (Desired): 2.236920 Error: 0.088390 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.236920
Neural Network Prediction (Estimated): 2.149660 Expected Value (Desired): 2.221762 Error: 0.072102 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.236920
Neural Network Prediction (Estimated): 2.150402 Expected Value (Desired): 2.197942 Error: 0.047540 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.221760
Neural Network Prediction (Estimated): 2.133767 Expected Value (Desired): 2.158964 Error: 0.025197 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.197940
Neural Network Prediction (Estimated): 2.123934 Expected Value (Desired): 2.109158 Error: -0.014776 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.158965
Neural Network Prediction (Estimated): 2.095647 Expected Value (Desired): 2.083173 Error: -0.012474 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.109160
Neural Network Prediction (Estimated): 2.080276 Expected Value (Desired): 2.061518 Error: -0.018758 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.083175
Neural Network Prediction (Estimated): 2.071128 Expected Value (Desired): 2.055022 Error: -0.016106 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.061520
Neural Network Prediction (Estimated): 2.067633 Expected Value (Desired): 2.059352 Error: -0.008281 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.055020
Neural Network Prediction (Estimated): 2.068327 Expected Value (Desired): 2.094000 Error: 0.025673 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.059350
Neural Network Prediction (Estimated): 2.074073 Expected Value (Desired): 2.081007 Error: 0.006934 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.094000
Neural Network Prediction (Estimated): 2.068134 Expected Value (Desired): 2.094000 Error: 0.025866 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.081005
Neural Network Prediction (Estimated): 2.073517 Expected Value (Desired): 2.104827 Error: 0.031310 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.094000
Neural Network Prediction (Estimated): 2.069360 Expected Value (Desired): 2.126482 Error: 0.057122 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.104825
Neural Network Prediction (Estimated): 2.059483 Expected Value (Desired): 2.109158 Error: 0.049675 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.126480
Neural Network Prediction (Estimated): 2.050701 Expected Value (Desired): 2.130813 Error: 0.080112 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.109160
Neural Network Prediction (Estimated): 2.046857 Expected Value (Desired): 2.132978 Error: 0.086121 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.130815
Neural Network Prediction (Estimated): 2.041007 Expected Value (Desired): 2.145971 Error: 0.104964 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.132980
Neural Network Prediction (Estimated): 2.045251 Expected Value (Desired): 2.161129 Error: 0.115878 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.145970
Neural Network Prediction (Estimated): 2.054176 Expected Value (Desired): 2.135144 Error: 0.080968 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.161130
Neural Network Prediction (Estimated): 2.046455 Expected Value (Desired): 2.117820 Error: 0.071365 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.135145
Neural Network Prediction (Estimated): 2.035592 Expected Value (Desired): 2.057187 Error: 0.021595 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.117820
Neural Network Prediction (Estimated): 2.007925 Expected Value (Desired): 1.979230 Error: -0.028695 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.057185
Neural Network Prediction (Estimated): 1.967096 Expected Value (Desired): 1.948914 Error: -0.018182 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 1.979230
Neural Network Prediction (Estimated): 1.951404 Expected Value (Desired): 1.966238 Error: 0.014834 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 1.948915
Neural Network Prediction (Estimated): 1.968311 Expected Value (Desired): 1.992223 Error: 0.023912 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 1.966240
Neural Network Prediction (Estimated): 1.992339 Expected Value (Desired): 1.990058 Error: -0.002281 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 1.992225
Neural Network Prediction (Estimated): 1.998233 Expected Value (Desired): 2.005216 Error: 0.006983 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 1.990060
Neural Network Prediction (Estimated): 1.994978 Expected Value (Desired): 2.029036 Error: 0.034058 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.005215
Neural Network Prediction (Estimated): 1.991661 Expected Value (Desired): 2.059352 Error: 0.067691 Throttle_Effort: 0.002000 Brake_Effort: 17.000000 Current_Velocity: 2.029035
Neural Network Prediction (Estimated): 1.994559 Expected Value (Desired): 2.063683 Error: 0.069124 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.059350
Neural Network Prediction (Estimated): 1.993323 Expected Value (Desired): 2.076676 Error: 0.083352 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.063685
Neural Network Prediction (Estimated): 1.995015 Expected Value (Desired): 2.059352 Error: 0.064337 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.076675
Neural Network Prediction (Estimated): 1.988741 Expected Value (Desired): 1.987892 Error: -0.000849 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.059350
Neural Network Prediction (Estimated): 1.961937 Expected Value (Desired): 1.942418 Error: -0.019519 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 1.987890
Neural Network Prediction (Estimated): 1.934763 Expected Value (Desired): 1.935921 Error: 0.001158 Throttle_Effort: 0.987600 Brake_Effort: 17.000000 Current_Velocity: 1.942420
Neural Network Prediction (Estimated): 1.930526 Expected Value (Desired): 1.966238 Error: 0.035712 Throttle_Effort: 1.969900 Brake_Effort: 17.000000 Current_Velocity: 1.935920
Neural Network Prediction (Estimated): 1.953514 Expected Value (Desired): 1.966238 Error: 0.012724 Throttle_Effort: 2.049800 Brake_Effort: 17.000000 Current_Velocity: 1.966240
Neural Network Prediction (Estimated): 1.968695 Expected Value (Desired): 2.000885 Error: 0.032190 Throttle_Effort: 1.718100 Brake_Effort: 17.000000 Current_Velocity: 1.966240
Neural Network Prediction (Estimated): 1.980432 Expected Value (Desired): 2.022540 Error: 0.042108 Throttle_Effort: 1.925400 Brake_Effort: 17.000000 Current_Velocity: 2.000885
Neural Network Prediction (Estimated): 1.983712 Expected Value (Desired): 1.955410 Error: -0.028302 Throttle_Effort: 1.426900 Brake_Effort: 17.000000 Current_Velocity: 2.022540
Neural Network Prediction (Estimated): 1.948342 Expected Value (Desired): 1.925094 Error: -0.023248 Throttle_Effort: 1.485400 Brake_Effort: 17.000000 Current_Velocity: 1.955410
Neural Network Prediction (Estimated): 1.910374 Expected Value (Desired): 1.912101 Error: 0.001727 Throttle_Effort: 2.291600 Brake_Effort: 17.000000 Current_Velocity: 1.925095
Neural Network Prediction (Estimated): 1.892614 Expected Value (Desired): 1.901274 Error: 0.008660 Throttle_Effort: 2.874800 Brake_Effort: 17.000000 Current_Velocity: 1.912100
Neural Network Prediction (Estimated): 1.891850 Expected Value (Desired): 1.927259 Error: 0.035409 Throttle_Effort: 3.160200 Brake_Effort: 17.000000 Current_Velocity: 1.901275
Neural Network Prediction (Estimated): 1.913062 Expected Value (Desired): 1.964072 Error: 0.051010 Throttle_Effort: 3.400600 Brake_Effort: 17.000000 Current_Velocity: 1.927260
Neural Network Prediction (Estimated): 1.941799 Expected Value (Desired): 1.966238 Error: 0.024439 Throttle_Effort: 3.400400 Brake_Effort: 17.000000 Current_Velocity: 1.964070
Neural Network Prediction (Estimated): 1.953205 Expected Value (Desired): 1.972734 Error: 0.019529 Throttle_Effort: 2.790100 Brake_Effort: 17.000000 Current_Velocity: 1.966240
Neural Network Prediction (Estimated): 1.947983 Expected Value (Desired): 1.966238 Error: 0.018255 Throttle_Effort: 3.778100 Brake_Effort: 17.000000 Current_Velocity: 1.972735
Neural Network Prediction (Estimated): 1.946016 Expected Value (Desired): 1.940252 Error: -0.005764 Throttle_Effort: 0.615800 Brake_Effort: 17.000000 Current_Velocity: 1.966240
Neural Network Prediction (Estimated): 1.920092 Expected Value (Desired): 1.944583 Error: 0.024491 Throttle_Effort: 0.951100 Brake_Effort: 17.000000 Current_Velocity: 1.940250
Neural Network Prediction (Estimated): 1.889392 Expected Value (Desired): 1.916432 Error: 0.027040 Throttle_Effort: 5.977900 Brake_Effort: 17.000000 Current_Velocity: 1.944585
Neural Network Prediction (Estimated): 1.886349 Expected Value (Desired): 1.909936 Error: 0.023587 Throttle_Effort: 5.779300 Brake_Effort: 17.000000 Current_Velocity: 1.916430
Neural Network Prediction (Estimated): 1.897384 Expected Value (Desired): 1.901274 Error: 0.003890 Throttle_Effort: 6.260600 Brake_Effort: 17.000000 Current_Velocity: 1.909935
Neural Network Prediction (Estimated): 1.910692 Expected Value (Desired): 1.890447 Error: -0.020245 Throttle_Effort: 6.293800 Brake_Effort: 17.000000 Current_Velocity: 1.901275
Neural Network Prediction (Estimated): 1.933396 Expected Value (Desired): 1.883950 Error: -0.049446 Throttle_Effort: 1.562600 Brake_Effort: 17.000000 Current_Velocity: 1.890445
Neural Network Prediction (Estimated): 1.921856 Expected Value (Desired): 1.933756 Error: 0.011900 Throttle_Effort: 1.792600 Brake_Effort: 17.000000 Current_Velocity: 1.883950
Neural Network Prediction (Estimated): 1.920017 Expected Value (Desired): 2.013878 Error: 0.093862 Throttle_Effort: 1.565700 Brake_Effort: 17.000000 Current_Velocity: 1.933755
Neural Network Prediction (Estimated): 1.938551 Expected Value (Desired): 2.042029 Error: 0.103478 Throttle_Effort: 0.110200 Brake_Effort: 17.000000 Current_Velocity: 2.013880
Neural Network Prediction (Estimated): 1.929127 Expected Value (Desired): 2.000885 Error: 0.071758 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.042030
Neural Network Prediction (Estimated): 1.892761 Expected Value (Desired): 1.870957 Error: -0.021804 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 2.000885
Neural Network Prediction (Estimated): 1.823292 Expected Value (Desired): 1.786504 Error: -0.036788 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 1.870955
Neural Network Prediction (Estimated): 1.772273 Expected Value (Desired): 1.771346 Error: -0.000927 Throttle_Effort: 1.039200 Brake_Effort: 17.000000 Current_Velocity: 1.786505
Neural Network Prediction (Estimated): 1.782957 Expected Value (Desired): 1.773512 Error: -0.009445 Throttle_Effort: 1.460100 Brake_Effort: 17.000000 Current_Velocity: 1.771345
Neural Network Prediction (Estimated): 1.804433 Expected Value (Desired): 1.912101 Error: 0.107668 Throttle_Effort: 8.058800 Brake_Effort: 17.000000 Current_Velocity: 1.773510
Neural Network Prediction (Estimated): 1.903605 Expected Value (Desired): 1.964072 Error: 0.060467 Throttle_Effort: 7.356000 Brake_Effort: 17.000000 Current_Velocity: 1.912100
Neural Network Prediction (Estimated): 1.979136 Expected Value (Desired): 1.940252 Error: -0.038884 Throttle_Effort: 4.247600 Brake_Effort: 17.000000 Current_Velocity: 1.964070
Neural Network Prediction (Estimated): 1.977005 Expected Value (Desired): 1.914267 Error: -0.062738 Throttle_Effort: 3.399100 Brake_Effort: 17.000000 Current_Velocity: 1.940250
Neural Network Prediction (Estimated): 1.937742 Expected Value (Desired): 1.901274 Error: -0.036468 Throttle_Effort: 3.811000 Brake_Effort: 17.000000 Current_Velocity: 1.914265
Neural Network Prediction (Estimated): 1.897150 Expected Value (Desired): 1.922928 Error: 0.025778 Throttle_Effort: 3.814700 Brake_Effort: 17.000000 Current_Velocity: 1.901275
Neural Network Prediction (Estimated): 1.892659 Expected Value (Desired): 1.909936 Error: 0.017277 Throttle_Effort: 2.617000 Brake_Effort: 17.000000 Current_Velocity: 1.922930
Neural Network Prediction (Estimated): 1.884580 Expected Value (Desired): 1.912101 Error: 0.027521 Throttle_Effort: 2.224200 Brake_Effort: 17.000000 Current_Velocity: 1.909935
Neural Network Prediction (Estimated): 1.866838 Expected Value (Desired): 1.886116 Error: 0.019278 Throttle_Effort: 2.538000 Brake_Effort: 17.000000 Current_Velocity: 1.912100
Neural Network Prediction (Estimated): 1.855214 Expected Value (Desired): 1.834145 Error: -0.021069 Throttle_Effort: 2.113200 Brake_Effort: 17.000000 Current_Velocity: 1.886115
Neural Network Prediction (Estimated): 1.845425 Expected Value (Desired): 1.825483 Error: -0.019942 Throttle_Effort: 0.376800 Brake_Effort: 17.000000 Current_Velocity: 1.834145
Neural Network Prediction (Estimated): 1.837018 Expected Value (Desired): 1.814655 Error: -0.022364 Throttle_Effort: 1.302700 Brake_Effort: 17.000000 Current_Velocity: 1.825485
Neural Network Prediction (Estimated): 1.842990 Expected Value (Desired): 1.847137 Error: 0.004147 Throttle_Effort: 1.469100 Brake_Effort: 17.000000 Current_Velocity: 1.814655
Neural Network Prediction (Estimated): 1.852868 Expected Value (Desired): 1.892612 Error: 0.039744 Throttle_Effort: 3.025900 Brake_Effort: 17.000000 Current_Velocity: 1.847135
Neural Network Prediction (Estimated): 1.867762 Expected Value (Desired): 1.894777 Error: 0.027015 Throttle_Effort: 7.018700 Brake_Effort: 17.000000 Current_Velocity: 1.892610
Neural Network Prediction (Estimated): 1.891851 Expected Value (Desired): 1.907770 Error: 0.015919 Throttle_Effort: 6.450100 Brake_Effort: 17.000000 Current_Velocity: 1.894775
Neural Network Prediction (Estimated): 1.906456 Expected Value (Desired): 1.873123 Error: -0.033333 Throttle_Effort: 5.612600 Brake_Effort: 17.000000 Current_Velocity: 1.907770
Neural Network Prediction (Estimated): 1.901984 Expected Value (Desired): 1.860130 Error: -0.041854 Throttle_Effort: 5.734900 Brake_Effort: 17.000000 Current_Velocity: 1.873125
Neural Network Prediction (Estimated): 1.899998 Expected Value (Desired): 1.920763 Error: 0.020765 Throttle_Effort: 6.394700 Brake_Effort: 17.000000 Current_Velocity: 1.860130
Neural Network Prediction (Estimated): 1.914466 Expected Value (Desired): 1.966238 Error: 0.051772 Throttle_Effort: 7.651800 Brake_Effort: 17.000000 Current_Velocity: 1.920765
Neural Network Prediction (Estimated): 1.943915 Expected Value (Desired): 1.981396 Error: 0.037481 Throttle_Effort: 6.710000 Brake_Effort: 17.000000 Current_Velocity: 1.966240
Neural Network Prediction (Estimated): 1.955936 Expected Value (Desired): 1.966238 Error: 0.010302 Throttle_Effort: 4.350400 Brake_Effort: 17.000000 Current_Velocity: 1.981395
Neural Network Prediction (Estimated): 1.939389 Expected Value (Desired): 1.909936 Error: -0.029454 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 1.966240
Neural Network Prediction (Estimated): 1.891740 Expected Value (Desired): 1.868792 Error: -0.022948 Throttle_Effort: 0.000000 Brake_Effort: 17.000000 Current_Velocity: 1.909935
Neural Network Prediction (Estimated): 1.845512 Expected Value (Desired): 1.862296 Error: 0.016784 Throttle_Effort: 0.271500 Brake_Effort: 17.000000 Current_Velocity: 1.868790
Neural Network Prediction (Estimated): 1.826172 Expected Value (Desired): 1.853634 Error: 0.027462 Throttle_Effort: 1.168300 Brake_Effort: 17.000000 Current_Velocity: 1.862295
Neural Network Prediction (Estimated): 1.827653 Expected Value (Desired): 1.827648 Error: -0.000005 Throttle_Effort: 2.643900 Brake_Effort: 17.000000 Current_Velocity: 1.853635
Neural Network Prediction (Estimated): 1.829196 Expected Value (Desired): 1.818986 Error: -0.010210 Throttle_Effort: 2.809800 Brake_Effort: 17.000000 Current_Velocity: 1.827650
Neural Network Prediction (Estimated): 1.841362 Expected Value (Desired): 1.812490 Error: -0.028872 Throttle_Effort: 1.925200 Brake_Effort: 17.000000 Current_Velocity: 1.818985
Neural Network Prediction (Estimated): 1.838363 Expected Value (Desired): 1.836310 Error: -0.002053 Throttle_Effort: 5.158200 Brake_Effort: 17.000000 Current_Velocity: 1.812490
Neural Network Prediction (Estimated): 1.852060 Expected Value (Desired): 1.896943 Error: 0.044883 Throttle_Effort: 5.370100 Brake_Effort: 17.000000 Current_Velocity: 1.836310
Neural Network Prediction (Estimated): 1.896451 Expected Value (Desired): 1.909936 Error: 0.013485 Throttle_Effort: 5.616900 Brake_Effort: 17.000000 Current_Velocity: 1.896945
Neural Network Prediction (Estimated): 1.929169 Expected Value (Desired): 1.903439 Error: -0.025730 Throttle_Effort: 2.747400 Brake_Effort: 17.000000 Current_Velocity: 1.909935
Neural Network Prediction (Estimated): 1.910362 Expected Value (Desired): 1.929425 Error: 0.019063 Throttle_Effort: 2.749500 Brake_Effort: 17.000000 Current_Velocity: 1.903440
Neural Network Prediction (Estimated): 1.892390 Expected Value (Desired): 1.940252 Error: 0.047862 Throttle_Effort: 2.899700 Brake_Effort: 17.000000 Current_Velocity: 1.929425
Neural Network Prediction (Estimated): 1.877049 Expected Value (Desired): 1.959741 Error: 0.082692 Throttle_Effort: 1.871400 Brake_Effort: 17.000000 Current_Velocity: 1.940250
Neural Network Prediction (Estimated): 1.873132 Expected Value (Desired): 1.990058 Error: 0.116926 Throttle_Effort: 3.009400 Brake_Effort: 17.000000 Current_Velocity: 1.959740
Neural Network Prediction (Estimated): 1.895500 Expected Value (Desired): 1.951079 Error: 0.055579 Throttle_Effort: 1.860300 Brake_Effort: 17.000000 Current_Velocity: 1.990060
Neural Network Prediction (Estimated): 1.882399 Expected Value (Desired): 1.883950 Error: 0.001551 Throttle_Effort: 5.465300 Brake_Effort: 17.000000 Current_Velocity: 1.951080
Neural Network Prediction (Estimated): 1.872539 Expected Value (Desired): 1.844972 Error: -0.027567 Throttle_Effort: 6.848400 Brake_Effort: 17.000000 Current_Velocity: 1.883950
Neural Network Prediction (Estimated): 1.889659 Expected Value (Desired): 1.827648 Error: -0.062011 Throttle_Effort: 3.902300 Brake_Effort: 17.000000 Current_Velocity: 1.844970
Neural Network Prediction (Estimated): 1.887240 Expected Value (Desired): 1.905605 Error: 0.018365 Throttle_Effort: 5.574400 Brake_Effort: 17.000000 Current_Velocity: 1.827650
Neural Network Prediction (Estimated): 1.906157 Expected Value (Desired): 1.994389 Error: 0.088232 Throttle_Effort: 9.659100 Brake_Effort: 17.000000 Current_Velocity: 1.905605
Neural Network Prediction (Estimated): 1.976535 Expected Value (Desired): 2.044194 Error: 0.067659 Throttle_Effort: 4.128100 Brake_Effort: 17.000000 Current_Velocity: 1.994390
Neural Network Prediction (Estimated): 2.008293 Expected Value (Desired): 2.013878 Error: 0.005585 Throttle_Effort: 1.022300 Brake_Effort: 17.000000 Current_Velocity: 2.044195
Neural Network Prediction (Estimated): 1.967704 Expected Value (Desired): 1.957576 Error: -0.010128 Throttle_Effort: 3.621400 Brake_Effort: 17.000000 Current_Velocity: 2.013880
Neural Network Prediction (Estimated): 1.910506 Expected Value (Desired): 1.946749 Error: 0.036243 Throttle_Effort: 4.195600 Brake_Effort: 17.000000 Current_Velocity: 1.957575
Neural Network Prediction (Estimated): 1.883260 Expected Value (Desired): 1.905605 Error: 0.022345 Throttle_Effort: 5.674900 Brake_Effort: 17.000000 Current_Velocity: 1.946750
Neural Network Prediction (Estimated): 1.883875 Expected Value (Desired): 1.855799 Error: -0.028076 Throttle_Effort: 4.670500 Brake_Effort: 17.000000 Current_Velocity: 1.905605
Neural Network Prediction (Estimated): 1.877319 Expected Value (Desired): 1.838476 Error: -0.038843 Throttle_Effort: 5.467900 Brake_Effort: 17.000000 Current_Velocity: 1.855800
Neural Network Prediction (Estimated): 1.891191 Expected Value (Desired): 1.899108 Error: 0.007917 Throttle_Effort: 6.345900 Brake_Effort: 17.000000 Current_Velocity: 1.838475
Neural Network Prediction (Estimated): 1.941561 Expected Value (Desired): 1.944583 Error: 0.003022 Throttle_Effort: 7.868700 Brake_Effort: 17.000000 Current_Velocity: 1.899110
Neural Network Prediction (Estimated): 1.998368 Expected Value (Desired): 2.033367 Error: 0.034999 Throttle_Effort: 7.059700 Brake_Effort: 17.000000 Current_Velocity: 1.944585
Neural Network Prediction (Estimated): 2.045830 Expected Value (Desired): 2.048525 Error: 0.002695 Throttle_Effort: 6.094900 Brake_Effort: 17.000000 Current_Velocity: 2.033365
Neural Network Prediction (Estimated): 2.034514 Expected Value (Desired): 2.018209 Error: -0.016305 Throttle_Effort: 4.880700 Brake_Effort: 17.000000 Current_Velocity: 2.048525
Neural Network Prediction (Estimated): 1.992244 Expected Value (Desired): 1.974900 Error: -0.017344 Throttle_Effort: 4.956900 Brake_Effort: 17.000000 Current_Velocity: 2.018210
Neural Network Prediction (Estimated): 1.948623 Expected Value (Desired): 1.957576 Error: 0.008953 Throttle_Effort: 3.390100 Brake_Effort: 17.000000 Current_Velocity: 1.974900
Neural Network Prediction (Estimated): 1.904079 Expected Value (Desired): 1.981396 Error: 0.077317 Throttle_Effort: 3.773400 Brake_Effort: 17.000000 Current_Velocity: 1.957575
Neural Network Prediction (Estimated): 1.906459 Expected Value (Desired): 1.961907 Error: 0.055448 Throttle_Effort: 3.061200 Brake_Effort: 17.000000 Current_Velocity: 1.981395
Neural Network Prediction (Estimated): 1.924406 Expected Value (Desired): 1.966238 Error: 0.041832 Throttle_Effort: 2.307400 Brake_Effort: 17.000000 Current_Velocity: 1.961905
Neural Network Prediction (Estimated): 1.924146 Expected Value (Desired): 1.914267 Error: -0.009879 Throttle_Effort: 6.990400 Brake_Effort: 17.000000 Current_Velocity: 1.966240
Neural Network Prediction (Estimated): 1.937079 Expected Value (Desired): 1.879619 Error: -0.057460 Throttle_Effort: 6.136300 Brake_Effort: 17.000000 Current_Velocity: 1.914265
Neural Network Prediction (Estimated): 1.948979 Expected Value (Desired): 1.890447 Error: -0.058532 Throttle_Effort: 3.377200 Brake_Effort: 17.000000 Current_Velocity: 1.879620
Neural Network Prediction (Estimated): 1.937961 Expected Value (Desired): 1.907770 Error: -0.030191 Throttle_Effort: 9.050300 Brake_Effort: 17.000000 Current_Velocity: 1.890445
Neural Network Prediction (Estimated): 1.964026 Expected Value (Desired): 2.031201 Error: 0.067175 Throttle_Effort: 9.000600 Brake_Effort: 17.000000 Current_Velocity: 1.907770
Neural Network Prediction (Estimated): 2.039886 Expected Value (Desired): 2.098331 Error: 0.058445 Throttle_Effort: 8.470300 Brake_Effort: 17.000000 Current_Velocity: 2.031200
Neural Network Prediction (Estimated): 2.098357 Expected Value (Desired): 2.098331 Error: -0.000026 Throttle_Effort: 6.725800 Brake_Effort: 17.000000 Current_Velocity: 2.098330
Neural Network Prediction (Estimated): 2.108922 Expected Value (Desired): 2.063683 Error: -0.045239 Throttle_Effort: 5.667500 Brake_Effort: 17.000000 Current_Velocity: 2.098330
Neural Network Prediction (Estimated): 2.058885 Expected Value (Desired): 1.966238 Error: -0.092647 Throttle_Effort: 5.501600 Brake_Effort: 17.000000 Current_Velocity: 2.063685
Neural Network Prediction (Estimated): 1.977075 Expected Value (Desired): 1.920763 Error: -0.056312 Throttle_Effort: 6.112800 Brake_Effort: 17.000000 Current_Velocity: 1.966240
Neural Network Prediction (Estimated): 1.935565 Expected Value (Desired): 1.959741 Error: 0.024176 Throttle_Effort: 6.639300 Brake_Effort: 17.000000 Current_Velocity: 1.920765
Neural Network Prediction (Estimated): 1.934282 Expected Value (Desired): 1.994389 Error: 0.060107 Throttle_Effort: 7.465200 Brake_Effort: 17.000000 Current_Velocity: 1.959740
Neural Network Prediction (Estimated): 1.960853 Expected Value (Desired): 2.081007 Error: 0.120155 Throttle_Effort: 8.245500 Brake_Effort: 17.000000 Current_Velocity: 1.994390
Neural Network Prediction (Estimated): 2.038726 Expected Value (Desired): 2.132978 Error: 0.094252 Throttle_Effort: 7.638500 Brake_Effort: 17.000000 Current_Velocity: 2.081005
Neural Network Prediction (Estimated): 2.100349 Expected Value (Desired): 2.132978 Error: 0.032629 Throttle_Effort: 6.425200 Brake_Effort: 17.000000 Current_Velocity: 2.132980
Neural Network Prediction (Estimated): 2.108630 Expected Value (Desired): 2.104827 Error: -0.003803 Throttle_Effort: 5.608100 Brake_Effort: 17.000000 Current_Velocity: 2.132980
Neural Network Prediction (Estimated): 2.084462 Expected Value (Desired): 2.050691 Error: -0.033771 Throttle_Effort: 5.492200 Brake_Effort: 17.000000 Current_Velocity: 2.104825
Neural Network Prediction (Estimated): 2.048270 Expected Value (Desired): 2.026871 Error: -0.021399 Throttle_Effort: 6.145700 Brake_Effort: 17.000000 Current_Velocity: 2.050690
Neural Network Prediction (Estimated): 2.024719 Expected Value (Desired): 2.059352 Error: 0.034633 Throttle_Effort: 7.034100 Brake_Effort: 17.000000 Current_Velocity: 2.026870
Neural Network Prediction (Estimated): 2.042518 Expected Value (Desired): 2.074511 Error: 0.031993 Throttle_Effort: 7.664100 Brake_Effort: 17.000000 Current_Velocity: 2.059350
Neural Network Prediction (Estimated): 2.072874 Expected Value (Desired): 2.128647 Error: 0.055773 Throttle_Effort: 7.173000 Brake_Effort: 17.000000 Current_Velocity: 2.074510
Neural Network Prediction (Estimated): 2.116641 Expected Value (Desired): 2.115654 Error: -0.000987 Throttle_Effort: 6.893200 Brake_Effort: 17.000000 Current_Velocity: 2.128645
Neural Network Prediction (Estimated): 2.114596 Expected Value (Desired): 2.117820 Error: 0.003224 Throttle_Effort: 6.187300 Brake_Effort: 17.000000 Current_Velocity: 2.115655
Neural Network Prediction (Estimated): 2.101098 Expected Value (Desired): 2.139474 Error: 0.038376 Throttle_Effort: 6.475500 Brake_Effort: 17.000000 Current_Velocity: 2.117820
Neural Network Prediction (Estimated): 2.088864 Expected Value (Desired): 2.161129 Error: 0.072265 Throttle_Effort: 6.606000 Brake_Effort: 17.000000 Current_Velocity: 2.139475
Neural Network Prediction (Estimated): 2.102870 Expected Value (Desired): 2.178453 Error: 0.075583 Throttle_Effort: 6.370900 Brake_Effort: 17.000000 Current_Velocity: 2.161130
Neural Network Prediction (Estimated): 2.133629 Expected Value (Desired): 2.189280 Error: 0.055651 Throttle_Effort: 6.109500 Brake_Effort: 17.000000 Current_Velocity: 2.178455
Neural Network Prediction (Estimated): 2.152503 Expected Value (Desired): 2.184949 Error: 0.032446 Throttle_Effort: 5.873100 Brake_Effort: 17.000000 Current_Velocity: 2.189280
Neural Network Prediction (Estimated): 2.156815 Expected Value (Desired): 2.156798 Error: -0.000017 Throttle_Effort: 5.698900 Brake_Effort: 17.000000 Current_Velocity: 2.184950
Neural Network Prediction (Estimated): 2.150048 Expected Value (Desired): 2.180618 Error: 0.030570 Throttle_Effort: 5.936600 Brake_Effort: 17.000000 Current_Velocity: 2.156800
Neural Network Prediction (Estimated): 2.148376 Expected Value (Desired): 2.176287 Error: 0.027911 Throttle_Effort: 6.395700 Brake_Effort: 17.000000 Current_Velocity: 2.180620
Neural Network Prediction (Estimated): 2.153257 Expected Value (Desired): 2.180618 Error: 0.027361 Throttle_Effort: 6.035300 Brake_Effort: 17.000000 Current_Velocity: 2.176285
Neural Network Prediction (Estimated): 2.162909 Expected Value (Desired): 2.213100 Error: 0.050191 Throttle_Effort: 6.539700 Brake_Effort: 17.000000 Current_Velocity: 2.180620
Neural Network Prediction (Estimated): 2.182192 Expected Value (Desired): 2.234755 Error: 0.052563 Throttle_Effort: 5.772300 Brake_Effort: 17.000000 Current_Velocity: 2.213100
Neural Network Prediction (Estimated): 2.205451 Expected Value (Desired): 2.215266 Error: 0.009815 Throttle_Effort: 5.390500 Brake_Effort: 17.000000 Current_Velocity: 2.234755
Neural Network Prediction (Estimated): 2.198397 Expected Value (Desired): 2.202273 Error: 0.003875 Throttle_Effort: 6.403600 Brake_Effort: 17.000000 Current_Velocity: 2.215265
Neural Network Prediction (Estimated): 2.189810 Expected Value (Desired): 2.241251 Error: 0.051441 Throttle_Effort: 5.254900 Brake_Effort: 17.000000 Current_Velocity: 2.202275
Neural Network Prediction (Estimated): 2.202918 Expected Value (Desired): 2.260740 Error: 0.057822 Throttle_Effort: 5.618500 Brake_Effort: 17.000000 Current_Velocity: 2.241250
Neural Network Prediction (Estimated): 2.221081 Expected Value (Desired): 2.258575 Error: 0.037494 Throttle_Effort: 6.253600 Brake_Effort: 17.000000 Current_Velocity: 2.260740
Neural Network Prediction (Estimated): 2.247831 Expected Value (Desired): 2.254244 Error: 0.006413 Throttle_Effort: 6.032900 Brake_Effort: 17.000000 Current_Velocity: 2.258575
Neural Network Prediction (Estimated): 2.247577 Expected Value (Desired): 2.252078 Error: 0.004501 Throttle_Effort: 4.975700 Brake_Effort: 17.000000 Current_Velocity: 2.254245
Neural Network Prediction (Estimated): 2.242361 Expected Value (Desired): 2.273733 Error: 0.031372 Throttle_Effort: 5.314600 Brake_Effort: 17.000000 Current_Velocity: 2.252080
Neural Network Prediction (Estimated): 2.257497 Expected Value (Desired): 2.323539 Error: 0.066042 Throttle_Effort: 6.109200 Brake_Effort: 17.000000 Current_Velocity: 2.273735
Neural Network Prediction (Estimated): 2.268888 Expected Value (Desired): 2.327869 Error: 0.058981 Throttle_Effort: 5.917100 Brake_Effort: 17.000000 Current_Velocity: 2.323540
Neural Network Prediction (Estimated): 2.271644 Expected Value (Desired): 2.343028 Error: 0.071384 Throttle_Effort: 5.033000 Brake_Effort: 17.000000 Current_Velocity: 2.327870
Neural Network Prediction (Estimated): 2.277539 Expected Value (Desired): 2.327869 Error: 0.050330 Throttle_Effort: 4.967300 Brake_Effort: 17.000000 Current_Velocity: 2.343030
Neural Network Prediction (Estimated): 2.255946 Expected Value (Desired): 2.353855 Error: 0.097909 Throttle_Effort: 4.786000 Brake_Effort: 17.000000 Current_Velocity: 2.327870
Neural Network Prediction (Estimated): 2.261680 Expected Value (Desired): 2.356020 Error: 0.094340 Throttle_Effort: 5.109700 Brake_Effort: 17.000000 Current_Velocity: 2.353855
Neural Network Prediction (Estimated): 2.277912 Expected Value (Desired): 2.340862 Error: 0.062950 Throttle_Effort: 4.591800 Brake_Effort: 17.000000 Current_Velocity: 2.356020
Neural Network Prediction (Estimated): 2.275633 Expected Value (Desired): 2.299719 Error: 0.024086 Throttle_Effort: 4.677300 Brake_Effort: 17.000000 Current_Velocity: 2.340860
Neural Network Prediction (Estimated): 2.280574 Expected Value (Desired): 2.297553 Error: 0.016979 Throttle_Effort: 4.976200 Brake_Effort: 17.000000 Current_Velocity: 2.299720
Neural Network Prediction (Estimated): 2.293806 Expected Value (Desired): 2.310546 Error: 0.016740 Throttle_Effort: 5.826500 Brake_Effort: 17.000000 Current_Velocity: 2.297555
Neural Network Prediction (Estimated): 2.316040 Expected Value (Desired): 2.349524 Error: 0.033484 Throttle_Effort: 5.942700 Brake_Effort: 17.000000 Current_Velocity: 2.310545
Neural Network Prediction (Estimated): 2.352695 Expected Value (Desired): 2.403661 Error: 0.050967 Throttle_Effort: 5.689500 Brake_Effort: 17.000000 Current_Velocity: 2.349525
Neural Network Prediction (Estimated): 2.381113 Expected Value (Desired): 2.362517 Error: -0.018596 Throttle_Effort: 5.116500 Brake_Effort: 17.000000 Current_Velocity: 2.403660
Neural Network Prediction (Estimated): 2.372489 Expected Value (Desired): 2.349524 Error: -0.022965 Throttle_Effort: 4.136700 Brake_Effort: 17.000000 Current_Velocity: 2.362515
Neural Network Prediction (Estimated): 2.343846 Expected Value (Desired): 2.364682 Error: 0.020836 Throttle_Effort: 4.943000 Brake_Effort: 17.000000 Current_Velocity: 2.349525
Neural Network Prediction (Estimated): 2.330428 Expected Value (Desired): 2.375510 Error: 0.045082 Throttle_Effort: 5.051500 Brake_Effort: 17.000000 Current_Velocity: 2.364680
Neural Network Prediction (Estimated): 2.322484 Expected Value (Desired): 2.401495 Error: 0.079011 Throttle_Effort: 4.850500 Brake_Effort: 17.000000 Current_Velocity: 2.375510
Neural Network Prediction (Estimated): 2.322692 Expected Value (Desired): 2.379841 Error: 0.057149 Throttle_Effort: 4.759200 Brake_Effort: 17.000000 Current_Velocity: 2.401495
Neural Network Prediction (Estimated): 2.326562 Expected Value (Desired): 2.412322 Error: 0.085760 Throttle_Effort: 4.214900 Brake_Effort: 17.000000 Current_Velocity: 2.379840
Neural Network Prediction (Estimated): 2.330838 Expected Value (Desired): 2.414488 Error: 0.083650 Throttle_Effort: 4.362900 Brake_Effort: 17.000000 Current_Velocity: 2.412320
Neural Network Prediction (Estimated): 2.348844 Expected Value (Desired): 2.414488 Error: 0.065644 Throttle_Effort: 3.931600 Brake_Effort: 17.000000 Current_Velocity: 2.414490
Neural Network Prediction (Estimated): 2.370886 Expected Value (Desired): 2.414488 Error: 0.043602 Throttle_Effort: 3.905500 Brake_Effort: 17.000000 Current_Velocity: 2.414490
Neural Network Prediction (Estimated): 2.377319 Expected Value (Desired): 2.353855 Error: -0.023464 Throttle_Effort: 3.916900 Brake_Effort: 17.000000 Current_Velocity: 2.414490
Neural Network Prediction (Estimated): 2.358902 Expected Value (Desired): 2.351690 Error: -0.007212 Throttle_Effort: 4.228600 Brake_Effort: 17.000000 Current_Velocity: 2.353855
Neural Network Prediction (Estimated): 2.352099 Expected Value (Desired): 2.364682 Error: 0.012583 Throttle_Effort: 5.137000 Brake_Effort: 17.000000 Current_Velocity: 2.351690
Neural Network Prediction (Estimated): 2.349543 Expected Value (Desired): 2.375510 Error: 0.025967 Throttle_Effort: 5.252200 Brake_Effort: 17.000000 Current_Velocity: 2.364680