forked from openai/baselines
-
Notifications
You must be signed in to change notification settings - Fork 0
/
benchmarks_mujoco1M.htm
5640 lines (5573 loc) · 153 KB
/
benchmarks_mujoco1M.htm
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
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="https://cloud.githubusercontent.com/assets/306655/25257645/38a30806-25ee-11e7-82d5-eae86a9dfad0.png">
<title>bench viewer</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js"
integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb"
crossorigin="anonymous"></script>
<script scr="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js"
integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.12/js/jquery.dataTables.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.13/js/dataTables.bootstrap4.min.js"></script>
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css"
integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ"
crossorigin="anonymous">
<link href="https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.12/css/dataTables.bootstrap4.min.css"
rel="stylesheet"/>
<style>
.navbar {
border-radius: 0;
}
.benchmark-title {
padding: 3rem 1.5rem;
text-align: center;
margin-top: 40px;
}
.ci-section {
margin-top: 20px;
text-align: center;
}
.bmrun-link {
font-family: Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
color: #fff; !important;
text-decoration: none; !important;
padding: 0.5em .4em;
}
.bmrun-link:hover {
color: #fff; !important;
text-decoration: none; !important;
}
</style>
</head>
<body>
<div class="container">
<div class="benchmark-title">
<h1>Mujoco1M Comparison</h1>
</div>
<div style="text-align: center">
<br />
</div>
<table class="table sortable-data-table">
<thead>
<tr>
<th> bmrun________________________ </th>
<td> </td>
<td>user</td>
<td>mean</td>
<td>HalfCheetah</td>
<td>Hopper</td>
<td>InvertedPendulum</td>
<td>Swimmer</td>
<td>InvertedDoublePendulum</td>
<td>Reacher</td>
<td>Walker2d</td>
<td>commit</td>
</tr>
</thead>
<tr>
<td style="display: flex">
<div style="display: flex">
trpo_mpi
</div>
</td>
<td><div style="background-color:rgba(102, 194, 165, 1.0)"> </div></td>
<td>cron</td>
<td>1896.01</td>
<td>1289.7</td>
<td>1912.9</td>
<td>905.1</td>
<td>94.96</td>
<td>6731.63</td>
<td>-4.82</td>
<td>2342.63</td>
<td>ea68f3b</td>
</tr>
<tr>
<td style="display: flex">
<div style="display: flex">
ppo2
</div>
</td>
<td><div style="background-color:rgba(252, 141, 98, 1.0)"> </div></td>
<td>cron</td>
<td>2203.79</td>
<td>1668.58</td>
<td>2316.16</td>
<td>809.43</td>
<td>111.19</td>
<td>7102.91</td>
<td>-6.71</td>
<td>3424.95</td>
<td>ea68f3b</td>
</tr>
</table>
</form>
<div style="margin-top: 60px; text-align: center">
<h3>Learning Curves</h3>
X-axis: timesteps
Y-axis: Reward (avg. 6 seeds)
<br />
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Created with matplotlib (http://matplotlib.org/) -->
<svg height="144pt" version="1.1" viewBox="0 0 576 144" width="576pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<style type="text/css">
*{stroke-linecap:butt;stroke-linejoin:round;}
</style>
</defs>
<g id="figure_1">
<g id="patch_1">
<path d="M 0 144
L 576 144
L 576 0
L 0 0
z
" style="fill:#ffffff;"/>
</g>
<g id="axes_1">
<g id="patch_2">
<path d="M 50.18 110.74
L 558.72 110.74
L 558.72 29.04
L 50.18 29.04
z
" style="fill:#eaeaf2;"/>
</g>
<g id="matplotlib.axis_1">
<g id="xtick_1">
<g id="line2d_1">
<path clip-path="url(#p02d2395807)" d="M 73.295455 110.74
L 73.295455 29.04
" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="text_1">
<text style="fill:#262626;font-family:DejaVu Sans;font-size:11px;font-style:normal;font-weight:normal;text-anchor:middle;" transform="rotate(-0, 73.295455, 128.598281)" x="73.295455" y="128.598281">0</text>
</g>
</g>
<g id="xtick_2">
<g id="line2d_2">
<path clip-path="url(#p02d2395807)" d="M 165.757273 110.74
L 165.757273 29.04
" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="text_2">
<text style="fill:#262626;font-family:DejaVu Sans;font-size:11px;font-style:normal;font-weight:normal;text-anchor:middle;" transform="rotate(-0, 165.757273, 128.598281)" x="165.757273" y="128.598281">200000</text>
</g>
</g>
<g id="xtick_3">
<g id="line2d_3">
<path clip-path="url(#p02d2395807)" d="M 258.219091 110.74
L 258.219091 29.04
" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="text_3">
<text style="fill:#262626;font-family:DejaVu Sans;font-size:11px;font-style:normal;font-weight:normal;text-anchor:middle;" transform="rotate(-0, 258.219091, 128.598281)" x="258.219091" y="128.598281">400000</text>
</g>
</g>
<g id="xtick_4">
<g id="line2d_4">
<path clip-path="url(#p02d2395807)" d="M 350.680909 110.74
L 350.680909 29.04
" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="text_4">
<text style="fill:#262626;font-family:DejaVu Sans;font-size:11px;font-style:normal;font-weight:normal;text-anchor:middle;" transform="rotate(-0, 350.680909, 128.598281)" x="350.680909" y="128.598281">600000</text>
</g>
</g>
<g id="xtick_5">
<g id="line2d_5">
<path clip-path="url(#p02d2395807)" d="M 443.142727 110.74
L 443.142727 29.04
" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="text_5">
<text style="fill:#262626;font-family:DejaVu Sans;font-size:11px;font-style:normal;font-weight:normal;text-anchor:middle;" transform="rotate(-0, 443.142727, 128.598281)" x="443.142727" y="128.598281">800000</text>
</g>
</g>
<g id="xtick_6">
<g id="line2d_6">
<path clip-path="url(#p02d2395807)" d="M 535.604545 110.74
L 535.604545 29.04
" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="text_6">
<text style="fill:#262626;font-family:DejaVu Sans;font-size:11px;font-style:normal;font-weight:normal;text-anchor:middle;" transform="rotate(-0, 535.604545, 128.598281)" x="535.604545" y="128.598281">1000000</text>
</g>
</g>
</g>
<g id="matplotlib.axis_2">
<g id="ytick_1">
<g id="line2d_7">
<path clip-path="url(#p02d2395807)" d="M 50.18 88.95753
L 558.72 88.95753
" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="text_7">
<text style="fill:#262626;font-family:DejaVu Sans;font-size:11px;font-style:normal;font-weight:normal;text-anchor:end;" transform="rotate(-0, 40.68, 93.136671)" x="40.68" y="93.136671">0</text>
</g>
</g>
<g id="ytick_2">
<g id="line2d_8">
<path clip-path="url(#p02d2395807)" d="M 50.18 59.339296
L 558.72 59.339296
" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="text_8">
<text style="fill:#262626;font-family:DejaVu Sans;font-size:11px;font-style:normal;font-weight:normal;text-anchor:end;" transform="rotate(-0, 40.68, 63.518437)" x="40.68" y="63.518437">1000</text>
</g>
</g>
<g id="ytick_3">
<g id="line2d_9">
<path clip-path="url(#p02d2395807)" d="M 50.18 29.721062
L 558.72 29.721062
" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="text_9">
<text style="fill:#262626;font-family:DejaVu Sans;font-size:11px;font-style:normal;font-weight:normal;text-anchor:end;" transform="rotate(-0, 40.68, 33.900203)" x="40.68" y="33.900203">2000</text>
</g>
</g>
</g>
<g id="PolyCollection_1">
<defs>
<path d="M 73.295455 -37.31157
L 73.295455 -36.973636
L 77.965243 -37.356997
L 82.635032 -38.255191
L 87.304821 -39.337429
L 91.97461 -40.251313
L 96.644399 -41.152114
L 101.314187 -41.929064
L 105.983976 -42.8402
L 110.653765 -43.624841
L 115.323554 -44.497803
L 119.993343 -45.441087
L 124.663131 -46.618507
L 129.33292 -47.776861
L 134.002709 -49.06716
L 138.672498 -50.637667
L 143.342287 -52.269166
L 148.012075 -53.878332
L 152.681864 -55.549523
L 157.351653 -57.107979
L 162.021442 -58.283023
L 166.69123 -59.345264
L 171.361019 -60.362432
L 176.030808 -61.32307
L 180.700597 -62.301845
L 185.370386 -63.496477
L 190.040174 -64.419542
L 194.709963 -64.850142
L 199.379752 -65.797793
L 204.049541 -66.44581
L 208.71933 -67.571074
L 213.389118 -68.105954
L 218.058907 -68.828961
L 222.728696 -69.701075
L 227.398485 -70.855281
L 232.068274 -71.569836
L 236.738062 -72.038543
L 241.407851 -72.929641
L 246.07764 -73.214729
L 250.747429 -73.276355
L 255.417218 -74.422954
L 260.087006 -74.889193
L 264.756795 -75.578244
L 269.426584 -75.568404
L 274.096373 -75.967529
L 278.766162 -76.769988
L 283.43595 -77.744633
L 288.105739 -78.559108
L 292.775528 -78.637835
L 297.445317 -78.829771
L 302.115106 -79.271193
L 306.784894 -79.898097
L 311.454683 -79.864413
L 316.124472 -79.79336
L 320.794261 -80.1474
L 325.46405 -81.106086
L 330.133838 -81.671172
L 334.803627 -82.223741
L 339.473416 -82.505782
L 344.143205 -82.589994
L 348.812994 -82.724927
L 353.482782 -83.082244
L 358.152571 -83.598793
L 362.82236 -83.347367
L 367.492149 -82.935964
L 372.161938 -83.465991
L 376.831726 -84.122864
L 381.501515 -84.44283
L 386.171304 -84.916994
L 390.841093 -85.184299
L 395.510882 -85.400416
L 400.18067 -85.338571
L 404.850459 -85.493067
L 409.520248 -85.722369
L 414.190037 -85.852065
L 418.859826 -86.132398
L 423.529614 -86.408689
L 428.199403 -86.555138
L 432.869192 -86.409044
L 437.538981 -86.722423
L 442.20877 -87.047276
L 446.878558 -86.542176
L 451.548347 -86.544975
L 456.218136 -86.231046
L 460.887925 -87.24441
L 465.557713 -87.517835
L 470.227502 -87.3436
L 474.897291 -87.194368
L 479.56708 -87.581183
L 484.236869 -87.988118
L 488.906657 -88.570532
L 493.576446 -88.885826
L 498.246235 -89.067762
L 502.916024 -89.347828
L 507.585813 -89.474069
L 512.255601 -89.697272
L 516.92539 -89.939309
L 521.595179 -89.779396
L 526.264968 -89.759534
L 530.934757 -89.479632
L 535.604545 -89.524025
L 535.604545 -96.858363
L 535.604545 -96.858363
L 530.934757 -96.909599
L 526.264968 -97.237693
L 521.595179 -97.216196
L 516.92539 -98.058602
L 512.255601 -97.8682
L 507.585813 -97.03415
L 502.916024 -97.030916
L 498.246235 -96.770152
L 493.576446 -96.35246
L 488.906657 -95.914137
L 484.236869 -94.590392
L 479.56708 -93.301828
L 474.897291 -92.775159
L 470.227502 -92.771615
L 465.557713 -92.467111
L 460.887925 -92.0393
L 456.218136 -90.362435
L 451.548347 -90.372152
L 446.878558 -89.907309
L 442.20877 -90.314741
L 437.538981 -89.746831
L 432.869192 -89.419492
L 428.199403 -89.911428
L 423.529614 -90.011093
L 418.859826 -89.484812
L 414.190037 -88.873399
L 409.520248 -89.074846
L 404.850459 -88.525932
L 400.18067 -88.001397
L 395.510882 -88.721627
L 390.841093 -88.518373
L 386.171304 -87.726429
L 381.501515 -86.450187
L 376.831726 -85.817993
L 372.161938 -85.162476
L 367.492149 -84.870637
L 362.82236 -85.349041
L 358.152571 -85.716266
L 353.482782 -84.789349
L 348.812994 -84.469229
L 344.143205 -84.552819
L 339.473416 -84.743521
L 334.803627 -84.298449
L 330.133838 -83.562525
L 325.46405 -83.037995
L 320.794261 -82.176345
L 316.124472 -81.388185
L 311.454683 -81.30475
L 306.784894 -81.233503
L 302.115106 -80.695383
L 297.445317 -80.233316
L 292.775528 -79.853009
L 288.105739 -79.760754
L 283.43595 -79.137477
L 278.766162 -78.490497
L 274.096373 -77.982383
L 269.426584 -77.678117
L 264.756795 -77.276161
L 260.087006 -76.69018
L 255.417218 -76.213693
L 250.747429 -75.39797
L 246.07764 -75.081423
L 241.407851 -74.59592
L 236.738062 -73.629391
L 232.068274 -73.180189
L 227.398485 -72.548316
L 222.728696 -71.831468
L 218.058907 -71.196417
L 213.389118 -70.610151
L 208.71933 -69.975155
L 204.049541 -69.040954
L 199.379752 -68.326489
L 194.709963 -67.480358
L 190.040174 -66.755508
L 185.370386 -65.752793
L 180.700597 -64.879737
L 176.030808 -63.957948
L 171.361019 -62.954479
L 166.69123 -61.960903
L 162.021442 -60.742294
L 157.351653 -59.354389
L 152.681864 -57.749828
L 148.012075 -56.062256
L 143.342287 -54.212197
L 138.672498 -52.51573
L 134.002709 -50.819448
L 129.33292 -49.293556
L 124.663131 -47.841408
L 119.993343 -46.514359
L 115.323554 -45.406313
L 110.653765 -44.382968
L 105.983976 -43.395605
L 101.314187 -42.303044
L 96.644399 -41.376931
L 91.97461 -40.49386
L 87.304821 -39.570032
L 82.635032 -38.59557
L 77.965243 -37.792993
L 73.295455 -37.31157
z
" id="m8bfe232d2f" style="stroke:#66c2a5;stroke-opacity:0.3;"/>
</defs>
<g clip-path="url(#p02d2395807)">
<use style="fill:#66c2a5;fill-opacity:0.3;stroke:#66c2a5;stroke-opacity:0.3;" x="0" xlink:href="#m8bfe232d2f" y="144"/>
</g>
</g>
<g id="PolyCollection_2">
<defs>
<path d="M 73.295455 -37.936565
L 73.295455 -37.507225
L 77.960574 -38.151883
L 82.625693 -39.520775
L 87.290812 -41.336162
L 91.955931 -43.057341
L 96.62105 -44.827669
L 101.286169 -46.886453
L 105.951288 -49.107187
L 110.616407 -51.658185
L 115.281526 -54.472999
L 119.946645 -57.399835
L 124.611764 -60.448088
L 129.276883 -63.722964
L 133.942002 -66.816129
L 138.607121 -69.436657
L 143.27224 -71.618872
L 147.937359 -73.673267
L 152.602478 -75.476516
L 157.267597 -76.804871
L 161.932716 -78.020961
L 166.597835 -79.13982
L 171.262954 -80.12155
L 175.928073 -81.072284
L 180.593192 -81.793566
L 185.258311 -82.721798
L 189.92343 -83.554561
L 194.588549 -84.247832
L 199.253668 -84.797693
L 203.918787 -85.375484
L 208.583906 -85.995383
L 213.249025 -86.587263
L 217.914144 -87.02332
L 222.579263 -87.54455
L 227.244382 -88.11797
L 231.909501 -88.561995
L 236.57462 -88.861715
L 241.239739 -89.299993
L 245.904858 -89.634621
L 250.569977 -89.947359
L 255.235096 -90.335395
L 259.900215 -90.706295
L 264.565334 -90.906004
L 269.230453 -91.210892
L 273.895572 -91.538186
L 278.560691 -91.780749
L 283.22581 -91.923266
L 287.890929 -92.233
L 292.556048 -92.662204
L 297.221167 -92.921633
L 301.886286 -93.098923
L 306.551405 -93.281126
L 311.216524 -93.345369
L 315.881643 -93.452875
L 320.546762 -93.613482
L 325.211881 -93.784956
L 329.877 -94.110941
L 334.542119 -94.264392
L 339.207238 -94.442227
L 343.872357 -94.782744
L 348.537476 -94.954865
L 353.202595 -95.090908
L 357.867714 -95.093912
L 362.532833 -95.284458
L 367.197952 -95.345314
L 371.863071 -95.423403
L 376.52819 -95.650218
L 381.193309 -95.6138
L 385.858428 -95.478463
L 390.523547 -95.701569
L 395.188666 -95.996218
L 399.853785 -96.148838
L 404.518904 -96.446619
L 409.184023 -96.587681
L 413.849142 -96.767963
L 418.514261 -96.879951
L 423.17938 -97.010458
L 427.844499 -97.116301
L 432.509618 -97.212985
L 437.174737 -97.241614
L 441.839856 -97.2882
L 446.504975 -97.411194
L 451.170094 -97.54594
L 455.835213 -97.548422
L 460.500332 -97.594029
L 465.165451 -97.674555
L 469.83057 -97.718607
L 474.495689 -97.760626
L 479.160808 -97.704036
L 483.825927 -97.784366
L 488.491046 -97.84785
L 493.156165 -97.887289
L 497.821284 -97.903355
L 502.486403 -97.871585
L 507.151522 -97.798089
L 511.816641 -97.781431
L 516.48176 -97.852965
L 521.146879 -97.922329
L 525.811998 -97.931275
L 530.477117 -97.869201
L 535.142236 -97.849593
L 535.142236 -111.16987
L 535.142236 -111.16987
L 530.477117 -111.234802
L 525.811998 -111.228268
L 521.146879 -111.073995
L 516.48176 -110.909206
L 511.816641 -110.724836
L 507.151522 -110.803349
L 502.486403 -110.865885
L 497.821284 -111.246364
L 493.156165 -111.087302
L 488.491046 -110.534326
L 483.825927 -110.444285
L 479.160808 -110.483933
L 474.495689 -110.310768
L 469.83057 -110.113375
L 465.165451 -109.687569
L 460.500332 -109.377507
L 455.835213 -109.482366
L 451.170094 -109.633639
L 446.504975 -109.277477
L 441.839856 -108.937771
L 437.174737 -109.134084
L 432.509618 -109.154539
L 427.844499 -108.992945
L 423.17938 -108.778607
L 418.514261 -108.532976
L 413.849142 -108.107012
L 409.184023 -107.369689
L 404.518904 -107.484314
L 399.853785 -107.32254
L 395.188666 -106.788939
L 390.523547 -106.210706
L 385.858428 -106.3857
L 381.193309 -106.458519
L 376.52819 -106.687087
L 371.863071 -106.306528
L 367.197952 -105.874156
L 362.532833 -105.066831
L 357.867714 -104.783111
L 353.202595 -104.83163
L 348.537476 -104.962801
L 343.872357 -104.621262
L 339.207238 -104.048929
L 334.542119 -103.879596
L 329.877 -103.871474
L 325.211881 -103.696834
L 320.546762 -102.959412
L 315.881643 -102.085941
L 311.216524 -101.843237
L 306.551405 -101.372331
L 301.886286 -100.32741
L 297.221167 -100.460339
L 292.556048 -100.122952
L 287.890929 -99.289466
L 283.22581 -97.796561
L 278.560691 -97.791982
L 273.895572 -97.385853
L 269.230453 -96.466062
L 264.565334 -96.868378
L 259.900215 -96.841085
L 255.235096 -96.31664
L 250.569977 -95.526814
L 245.904858 -94.995822
L 241.239739 -94.584188
L 236.57462 -93.67669
L 231.909501 -93.398508
L 227.244382 -92.545488
L 222.579263 -91.801701
L 217.914144 -91.129884
L 213.249025 -89.995941
L 208.583906 -89.426691
L 203.918787 -88.752101
L 199.253668 -87.842255
L 194.588549 -87.199231
L 189.92343 -86.12586
L 185.258311 -84.62184
L 180.593192 -83.336846
L 175.928073 -82.720667
L 171.262954 -81.925152
L 166.597835 -80.822191
L 161.932716 -79.558661
L 157.267597 -78.290624
L 152.602478 -76.950794
L 147.937359 -75.066093
L 143.27224 -73.028779
L 138.607121 -71.012118
L 133.942002 -68.63356
L 129.276883 -65.950491
L 124.611764 -62.870081
L 119.946645 -59.681194
L 115.281526 -56.414398
L 110.616407 -53.300348
L 105.951288 -50.326507
L 101.286169 -47.719532
L 96.62105 -45.404915
L 91.955931 -43.449881
L 87.290812 -41.688435
L 82.625693 -39.882832
L 77.960574 -38.490283
L 73.295455 -37.936565
z
" id="m1bd2687842" style="stroke:#fc8d62;stroke-opacity:0.3;"/>
</defs>
<g clip-path="url(#p02d2395807)">
<use style="fill:#fc8d62;fill-opacity:0.3;stroke:#fc8d62;stroke-opacity:0.3;" x="0" xlink:href="#m1bd2687842" y="144"/>
</g>
</g>
<g id="line2d_10">
<path clip-path="url(#p02d2395807)" d="M 73.295455 106.857397
L 77.965243 106.425005
L 82.635032 105.574619
L 87.304821 104.54627
L 91.97461 103.627413
L 96.644399 102.735478
L 101.314187 101.883946
L 105.983976 100.882097
L 110.653765 99.996095
L 115.323554 99.047942
L 119.993343 98.022277
L 124.663131 96.770043
L 129.33292 95.464791
L 134.002709 94.056696
L 138.672498 92.423301
L 143.342287 90.759319
L 148.012075 89.029706
L 152.681864 87.350325
L 157.351653 85.768816
L 162.021442 84.487341
L 166.69123 83.346916
L 171.361019 82.341545
L 176.030808 81.359491
L 180.700597 80.409209
L 185.370386 79.375365
L 190.040174 78.412475
L 194.709963 77.83475
L 199.379752 76.937859
L 204.049541 76.256618
L 208.71933 75.226886
L 213.389118 74.641948
L 218.058907 73.987311
L 222.728696 73.233729
L 227.398485 72.298201
L 232.068274 71.624988
L 236.738062 71.166033
L 241.407851 70.23722
L 246.07764 69.851924
L 250.747429 69.662838
L 255.417218 68.681676
L 260.087006 68.210313
L 264.756795 67.572798
L 269.426584 67.376739
L 274.096373 67.025044
L 278.766162 66.369758
L 283.43595 65.558945
L 288.105739 64.840069
L 292.775528 64.754578
L 297.445317 64.468457
L 302.115106 64.016712
L 306.784894 63.4342
L 311.454683 63.415418
L 316.124472 63.409228
L 320.794261 62.838127
L 325.46405 61.92796
L 330.133838 61.383152
L 334.803627 60.738905
L 339.473416 60.375349
L 344.143205 60.428594
L 348.812994 60.402922
L 353.482782 60.064204
L 358.152571 59.34247
L 362.82236 59.651796
L 367.492149 60.096699
L 372.161938 59.685767
L 376.831726 59.029572
L 381.501515 58.553492
L 386.171304 57.678289
L 390.841093 57.148664
L 395.510882 56.938978
L 400.18067 57.330016
L 404.850459 56.990501
L 409.520248 56.601393
L 414.190037 56.637268
L 418.859826 56.191395
L 423.529614 55.790109
L 428.199403 55.766717
L 432.869192 56.085732
L 437.538981 55.765373
L 442.20877 55.318991
L 446.878558 55.775257
L 451.548347 55.541437
L 456.218136 55.70326
L 460.887925 54.358145
L 465.557713 54.007527
L 470.227502 53.942393
L 474.897291 54.015236
L 479.56708 53.558494
L 484.236869 52.710745
L 488.906657 51.757666
L 493.576446 51.380857
L 498.246235 51.081043
L 502.916024 50.810628
L 507.585813 50.74589
L 512.255601 50.217264
L 516.92539 50.001045
L 521.595179 50.502204
L 526.264968 50.501386
L 530.934757 50.805384
L 535.604545 50.808806
" style="fill:none;stroke:#66c2a5;stroke-linecap:round;stroke-width:1.5;"/>
</g>
<g id="line2d_11">
<path clip-path="url(#p02d2395807)" d="M 73.295455 106.278105
L 77.960574 105.678917
L 82.625693 104.298197
L 87.290812 102.487702
L 91.955931 100.746389
L 96.62105 98.883708
L 101.286169 96.697007
L 105.951288 94.283153
L 110.616407 91.520734
L 115.281526 88.556302
L 119.946645 85.459485
L 124.611764 82.340916
L 129.276883 79.163272
L 133.942002 76.275156
L 138.607121 73.775612
L 143.27224 71.676175
L 147.937359 69.63032
L 152.602478 67.786345
L 157.267597 66.452252
L 161.932716 65.210189
L 166.597835 64.018994
L 171.262954 62.976649
L 175.928073 62.103525
L 180.593192 61.434794
L 185.258311 60.328181
L 189.92343 59.15979
L 194.588549 58.276469
L 199.253668 57.680026
L 203.918787 56.936208
L 208.583906 56.288963
L 213.249025 55.708398
L 217.914144 54.923398
L 222.579263 54.326875
L 227.244382 53.668271
L 231.909501 53.019749
L 236.57462 52.730798
L 241.239739 52.057909
L 245.904858 51.684778
L 250.569977 51.262913
L 255.235096 50.673983
L 259.900215 50.22631
L 264.565334 50.112809
L 269.230453 50.161523
L 273.895572 49.53798
L 278.560691 49.213635
L 283.22581 49.140086
L 287.890929 48.238767
L 292.556048 47.607422
L 297.221167 47.309014
L 301.886286 47.286834
L 306.551405 46.673272
L 311.216524 46.405697
L 315.881643 46.230592
L 320.546762 45.713553
L 325.211881 45.259105
L 329.877 45.008793
L 334.542119 44.928006
L 339.207238 44.754422
L 343.872357 44.297997
L 348.537476 44.041167
L 353.202595 44.038731
L 357.867714 44.061488
L 362.532833 43.824356
L 367.197952 43.390265
L 371.863071 43.135034
L 376.52819 42.831347
L 381.193309 42.96384
L 385.858428 43.067918
L 390.523547 43.043862
L 395.188666 42.607422
L 399.853785 42.264311
L 404.518904 42.034533
L 409.184023 42.021315
L 413.849142 41.562512
L 418.514261 41.293537
L 423.17938 41.105467
L 427.844499 40.945377
L 432.509618 40.816238
L 437.174737 40.812151
L 441.839856 40.887014
L 446.504975 40.655664
L 451.170094 40.410211
L 455.835213 40.484606
L 460.500332 40.514232
L 465.165451 40.318938
L 469.83057 40.084009
L 474.495689 39.964303
L 479.160808 39.906015
L 483.825927 39.885674
L 488.491046 39.808912
L 493.156165 39.512705
L 497.821284 39.425141
L 502.486403 39.631265
L 507.151522 39.699281
L 511.816641 39.746866
L 516.48176 39.618914
L 521.146879 39.501838
L 525.811998 39.420229
L 530.477117 39.447998
L 535.142236 39.490269
" style="fill:none;stroke:#fc8d62;stroke-linecap:round;stroke-width:1.5;"/>
</g>
<g id="patch_3">
<path d="M 50.18 110.74
L 50.18 29.04
" style="fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;stroke-width:1.25;"/>
</g>
<g id="patch_4">
<path d="M 558.72 110.74
L 558.72 29.04
" style="fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;stroke-width:1.25;"/>
</g>
<g id="patch_5">
<path d="M 50.18 110.74
L 558.72 110.74
" style="fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;stroke-width:1.25;"/>
</g>
<g id="patch_6">
<path d="M 50.18 29.04
L 558.72 29.04
" style="fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;stroke-width:1.25;"/>
</g>
<g id="text_10">
<text style="fill:#262626;font-family:DejaVu Sans;font-size:12px;font-style:normal;font-weight:normal;text-anchor:middle;" transform="rotate(-0, 304.45, 23.04)" x="304.45" y="23.04">HalfCheetah</text>
</g>
</g>
</g>
<defs>
<clipPath id="p02d2395807">
<rect height="81.7" width="508.54" x="50.18" y="29.04"/>
</clipPath>
</defs>
</svg>
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Created with matplotlib (http://matplotlib.org/) -->
<svg height="144pt" version="1.1" viewBox="0 0 576 144" width="576pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<style type="text/css">
*{stroke-linecap:butt;stroke-linejoin:round;}
</style>
</defs>
<g id="figure_1">
<g id="patch_1">
<path d="M 0 144
L 576 144
L 576 0
L 0 0
z
" style="fill:#ffffff;"/>
</g>
<g id="axes_1">
<g id="patch_2">
<path d="M 50.18 110.74
L 558.72 110.74
L 558.72 29.04
L 50.18 29.04
z
" style="fill:#eaeaf2;"/>
</g>
<g id="matplotlib.axis_1">
<g id="xtick_1">
<g id="line2d_1">
<path clip-path="url(#p24a6f96763)" d="M 73.295455 110.74
L 73.295455 29.04
" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="text_1">
<text style="fill:#262626;font-family:DejaVu Sans;font-size:11px;font-style:normal;font-weight:normal;text-anchor:middle;" transform="rotate(-0, 73.295455, 128.598281)" x="73.295455" y="128.598281">0</text>
</g>
</g>
<g id="xtick_2">
<g id="line2d_2">
<path clip-path="url(#p24a6f96763)" d="M 165.759862 110.74
L 165.759862 29.04
" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="text_2">
<text style="fill:#262626;font-family:DejaVu Sans;font-size:11px;font-style:normal;font-weight:normal;text-anchor:middle;" transform="rotate(-0, 165.759862, 128.598281)" x="165.759862" y="128.598281">200000</text>
</g>
</g>
<g id="xtick_3">