-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdsOGR.nb
8328 lines (8274 loc) · 354 KB
/
dsOGR.nb
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
(* Content-type: application/vnd.wolfram.mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 13.1' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 158, 7]
NotebookDataLength[ 353927, 8320]
NotebookOptionsPosition[ 350590, 8257]
NotebookOutlinePosition[ 351021, 8274]
CellTagsIndexPosition[ 350978, 8271]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[BoxData[
RowBox[{"(*", " ",
RowBox[{
RowBox[{
RowBox[{"materials", ":", " ", "https", ":"}], "//",
RowBox[{
RowBox[{
RowBox[{"arxiv", ".", "org"}], "/", "pdf"}], "/", "1901.11457"}]}], " ",
",", " ",
RowBox[{
RowBox[{"https", ":"}], "//",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"github", ".", "com"}], "/", "JarekDuda"}], "/", "SGD"}], "-",
"OGR", "-", "Hessian", "-",
RowBox[{"estimator", "/"}]}]}]}], " ", "*)"}]], "Input",
CellChangeTimes->{{3.8786402186168203`*^9, 3.8786402294142523`*^9}, {
3.8809897491188145`*^9,
3.8809897546746826`*^9}},ExpressionUUID->"eb59dd25-72a5-48d0-939c-\
67152d07f558"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{
RowBox[{"(*", " ",
RowBox[{
RowBox[{
"basic", " ", "step", " ", "in", " ", "d", " ", "dimensional", " ",
"subspace"}], ",", " ",
RowBox[{"using", " ",
RowBox[{"ng", ":", " ",
RowBox[{"noisy", " ", "gradient", " ", "in", " ", "\[Theta]"}]}]}]}],
" ", "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"sOGR", "[", "ng_", "]"}], ":=",
RowBox[{"(",
RowBox[{
RowBox[{"m\[Theta]", "+=",
RowBox[{"\[Beta]",
RowBox[{"(",
RowBox[{"\[Theta]", "-", "m\[Theta]"}], ")"}]}]}], ";",
RowBox[{"mg", "+=",
RowBox[{"\[Beta]",
RowBox[{"(",
RowBox[{"ng", "-", "mg"}], ")"}]}]}], ";",
RowBox[{"m", "+=",
RowBox[{"\[Gamma]",
RowBox[{"(",
RowBox[{"ng", "-", "m"}], ")"}]}]}], ";", " ",
RowBox[{"(*", " ", "means", " ", "*)"}], "\[IndentingNewLine]",
RowBox[{"V", "=",
RowBox[{"Orthogonalize", "[",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"v", "+",
RowBox[{"\[CapitalGamma]", "*", "ng"}]}], ",",
RowBox[{"{",
RowBox[{"v", ",", "V"}], "}"}]}], "]"}], "]"}]}], ";", " ",
RowBox[{"(*", " ",
RowBox[{"explore", " ", "new", " ", "directions"}], " ", "*)"}],
"\[IndentingNewLine]",
RowBox[{"p\[Theta]", "=",
RowBox[{"V", ".",
RowBox[{"(",
RowBox[{"\[Theta]", "-", "m\[Theta]"}], ")"}]}]}], ";",
RowBox[{"pg", "=",
RowBox[{"V", ".",
RowBox[{"(",
RowBox[{"ng", "-", "mg"}], ")"}]}]}], ";", " ",
RowBox[{"(*", " ",
RowBox[{
RowBox[{
RowBox[{"mean", " ", "subtractions"}], " ", "&"}], " ",
"projections"}], " ", "*)"}], "\[IndentingNewLine]",
RowBox[{"\[Theta]", "-=",
RowBox[{"\[Alpha]",
RowBox[{"(",
RowBox[{"m", "-",
RowBox[{"m", ".",
RowBox[{"Transpose", "[", "V", "]"}], ".", "V"}]}], ")"}]}]}],
";", " ",
RowBox[{"(*", " ",
RowBox[{"momentum", " ", "in", " ", "remaining", " ", "directions"}],
" ", "*)"}],
" ",
"\[IndentingNewLine]",
RowBox[{"m\[Theta]\[Theta]", "+=",
RowBox[{"\[Beta]",
RowBox[{"(",
RowBox[{
RowBox[{"KroneckerProduct", "[",
RowBox[{"p\[Theta]", ",", "p\[Theta]"}], "]"}], "-",
"m\[Theta]\[Theta]"}], ")"}]}]}], ";", " ",
RowBox[{
RowBox[{"{",
RowBox[{"e", ",", "ev"}], "}"}], "=",
RowBox[{"Eigensystem", "[", "m\[Theta]\[Theta]", "]"}]}], ";",
"\[IndentingNewLine]",
RowBox[{"mg\[Theta]", "+=",
RowBox[{"\[Beta]",
RowBox[{"(",
RowBox[{
RowBox[{"KroneckerProduct", "[",
RowBox[{"pg", ",", "p\[Theta]"}], "]"}], "-", "mg\[Theta]"}],
")"}]}]}], ";", " ",
RowBox[{"evt", "=",
RowBox[{"Transpose", "[", "ev", "]"}]}], ";", "\[IndentingNewLine]",
RowBox[{"pH", "=",
RowBox[{"evt", ".",
RowBox[{"(",
RowBox[{
RowBox[{"(",
RowBox[{"ev", ".",
RowBox[{"s", "[", "mg\[Theta]", "]"}], ".", "evt"}], ")"}], "/",
RowBox[{"s", "[",
RowBox[{"Table", "[",
RowBox[{"e", ",", "d"}], "]"}], "]"}]}], ")"}], ".", "ev"}]}],
";", " ",
RowBox[{"(*", " ",
RowBox[{"Hessian", " ", "estimator"}], " ", "*)"}], " ",
"\[IndentingNewLine]",
RowBox[{"\[Theta]", "-=",
RowBox[{
RowBox[{"(",
RowBox[{
RowBox[{"ma", "[", "pH", "]"}], ".",
RowBox[{"(",
RowBox[{"V", ".", "m"}], ")"}]}], ")"}], ".", "V"}]}]}], ")"}]}],
";"}], " ",
RowBox[{"(*", " ",
RowBox[{
RowBox[{"1", "/"}], "|",
RowBox[{
RowBox[{"~", "eigenvalues"}], " ", "of", " ", "pH"}], "|", " ",
RowBox[{"in", " ", "local", " ", "subspace"}]}], " ", "*)"}],
"\[IndentingNewLine]", "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"eh", "[", "lm_", "]"}], ":=",
RowBox[{"1", "/",
RowBox[{"Map", "[",
RowBox[{
RowBox[{
RowBox[{"Max", "[",
RowBox[{"#", ",", "cut"}], "]"}], "&"}], ",",
RowBox[{
RowBox[{"Abs", "[", "lm", "]"}], "*", "div"}]}], "]"}]}]}], ";"}],
" ",
RowBox[{"(*", " ",
RowBox[{
RowBox[{"eigenvalue", " ", "inv"}], ",", " ",
RowBox[{
RowBox[{"div", "&"}], "cut"}]}], " ", "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"ma", "[", "A_", "]"}], ":=",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"{",
RowBox[{"e", ",", "ev"}], "}"}], "=",
RowBox[{"Eigensystem", "[", "A", "]"}]}], ";",
RowBox[{
RowBox[{"Transpose", "[", "ev", "]"}], ".",
RowBox[{"DiagonalMatrix", "[",
RowBox[{"eh", "[", "e", "]"}], "]"}], ".", "ev"}]}], ")"}]}], ";"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"init", "[", "d_", "]"}], ":=",
RowBox[{"(",
RowBox[{
RowBox[{"m", "=",
RowBox[{"mg", "=",
RowBox[{"m\[Theta]", "=",
RowBox[{"dg\[Theta]", "=",
RowBox[{"Table", "[",
RowBox[{"0.", ",", "\[GothicCapitalD]"}], "]"}]}]}]}]}], ";",
RowBox[{"V", "=",
RowBox[{"RandomReal", "[",
RowBox[{"0.001", ",",
RowBox[{"{",
RowBox[{"d", ",", "\[GothicCapitalD]"}], "}"}]}], "]"}]}], ";",
"\[IndentingNewLine]",
RowBox[{"d\[Theta]\[Theta]", "=",
RowBox[{"Table", "[",
RowBox[{"1.", ",", "\[GothicCapitalD]"}], "]"}]}], ";",
RowBox[{"mg\[Theta]", "=",
RowBox[{"Table", "[",
RowBox[{"0.", ",", "d", ",", "d"}], "]"}]}], ";",
RowBox[{"m\[Theta]\[Theta]", "=",
RowBox[{"IdentityMatrix", "[", "d", "]"}]}], ";"}], ")"}]}], ";"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{"noise", ":=",
RowBox[{"RandomReal", "[",
RowBox[{
RowBox[{"NormalDistribution", "[",
RowBox[{"0", ",", "\[Epsilon]"}], "]"}], ",", "\[GothicCapitalD]"}],
"]"}]}], ";",
RowBox[{"\[Epsilon]", "=", "0.1"}], ";"}], " ",
RowBox[{"(*",
RowBox[{"Gaussian", " ", "noise"}], "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"b", "=",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"1.5", "-", "x", "+",
RowBox[{"x", "*", "y"}]}], ")"}], "2"], "+",
SuperscriptBox[
RowBox[{"(",
RowBox[{"2.25", "-", "x", "+",
RowBox[{"x", "*",
SuperscriptBox["y", "2"]}]}], ")"}], "2"], "+",
SuperscriptBox[
RowBox[{"(",
RowBox[{"2.625", "-", "x", "+",
RowBox[{"x", "*",
SuperscriptBox["y", "3"]}]}], ")"}], "2"]}]}], ";"}],
RowBox[{"(*", " ",
RowBox[{"Beale", " ", "function"}], " ", "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"f", "=",
RowBox[{"Simplify", "[",
RowBox[{"b", "+",
RowBox[{"(",
RowBox[{"b", "/.",
RowBox[{"x", "->", "z"}]}], ")"}]}], "]"}]}], ";",
RowBox[{"v", "=",
RowBox[{"{",
RowBox[{"x", ",", "y", ",", "z"}], "}"}]}], ";",
RowBox[{"\[GothicCapitalD]", "=",
RowBox[{"Length", "[", "v", "]"}]}], ";"}],
RowBox[{"(*",
RowBox[{"3",
RowBox[{"D", ":",
RowBox[{
RowBox[{"b",
RowBox[{"(",
RowBox[{"x", ",", "y"}], ")"}]}], "+",
RowBox[{"b",
RowBox[{"(",
RowBox[{"z", ",", "y"}], ")"}]}]}]}]}], "*)"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"sub", "[", "p_", "]"}], ":=",
RowBox[{"Table", "[",
RowBox[{
RowBox[{
RowBox[{"v", "[",
RowBox[{"[", "i", "]"}], "]"}], "->",
RowBox[{"p", "[",
RowBox[{"[", "i", "]"}], "]"}]}], ",",
RowBox[{"{",
RowBox[{"i", ",", "\[GothicCapitalD]"}], "}"}]}], "]"}]}], ";", " ",
RowBox[{
RowBox[{"s", "[", "M_", "]"}], ":=",
RowBox[{"M", "+",
RowBox[{"Transpose", "[", "M", "]"}]}]}], ";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"g", "=",
RowBox[{"Grad", "[",
RowBox[{"f", ",", "v"}], "]"}]}], ";",
RowBox[{"H", "=",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"D", "[",
RowBox[{"f", ",", "v1", ",", "v2"}], "]"}], ",",
RowBox[{"{",
RowBox[{"v1", ",", "v"}], "}"}], ",",
RowBox[{"{",
RowBox[{"v2", ",", "v"}], "}"}]}], "]"}]}], ";"}], " ",
RowBox[{"(*",
RowBox[{"gradient", ",", "Hessian"}], " ", "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"\[Alpha]", "=", "0.001"}], ";",
RowBox[{"\[Beta]", "=", "0.6"}], ";",
RowBox[{"\[Gamma]", "=", "0.6"}], ";",
RowBox[{"div", "=", "1.5"}], ";",
RowBox[{"\[CapitalGamma]", "=", "0.25"}], ";",
RowBox[{"cut", "=", "10"}], ";"}], " ",
RowBox[{"(*", " ", "hyperparameters", " ", "*)"}], " ",
"\[IndentingNewLine]",
RowBox[{
RowBox[{"d", "=", "2"}], ";", " ",
RowBox[{"init", "[", "d", "]"}], ";", " ",
RowBox[{"\[Theta]", "=",
RowBox[{"{",
RowBox[{"0", ",", "0", ",", "0"}], "}"}]}], ";"}], " ",
RowBox[{"(*", " ",
RowBox[{"dimension", ",", " ", "initialize", ",", " ",
RowBox[{"starting", " ", "position"}]}], " ", "*)"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{"steps", "=", "50"}], ";",
RowBox[{"Do", "[",
RowBox[{
RowBox[{"sOGR", "[",
RowBox[{
RowBox[{"(",
RowBox[{"g", "/.",
RowBox[{"sub", "[", "\[Theta]", "]"}]}], ")"}], "+", "noise"}],
"]"}], ",",
RowBox[{"{",
RowBox[{"i", ",", "steps"}], "}"}]}], "]"}], ";"}], " ",
RowBox[{"(*", " ", "optimization", " ", "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"steps", "=", "50"}], ";",
RowBox[{"r", "=", "3"}], ";", " ",
RowBox[{"seed", "=", "1"}], ";"}], " ",
RowBox[{"(*", " ",
RowBox[{"global", " ", "testing", " ", "parametrs"}], " ", "*)"}],
"\[IndentingNewLine]",
RowBox[{"f", "/.",
RowBox[{"sub", "[", "\[Theta]", "]"}]}]}]}]], "Input",
CellChangeTimes->{{3.8800065395363574`*^9, 3.8800065513567085`*^9}, {
3.8800067511067886`*^9, 3.880006824326419*^9}, {3.8800070531189566`*^9,
3.8800070705167036`*^9}, {3.880018823828178*^9, 3.88001888362114*^9}, {
3.880019235180928*^9, 3.8800192413893147`*^9}, {3.880020498151425*^9,
3.880020501156719*^9}, {3.8800226212990856`*^9, 3.880022675561533*^9}, {
3.880022708122738*^9, 3.8800228104994936`*^9}, 3.880023126175817*^9, {
3.8800234485910597`*^9, 3.8800235400130997`*^9}, 3.8800238188769608`*^9,
3.880024728693285*^9, {3.8800248026461334`*^9, 3.8800248068661985`*^9}, {
3.8800253691914682`*^9, 3.8800253812224092`*^9}, {3.8800256528820133`*^9,
3.880025838262022*^9}, {3.8800715999108744`*^9, 3.8800716454153957`*^9}, {
3.880071709813302*^9, 3.880071803401017*^9}, {3.8800720742506247`*^9,
3.880072105070364*^9}, {3.8800721396305227`*^9, 3.8800721729211006`*^9}, {
3.880072216010542*^9, 3.8800722676484184`*^9}, {3.88007233929033*^9,
3.8800724004101887`*^9}, {3.8800724672503843`*^9,
3.8800724721101494`*^9}, {3.880073106590664*^9, 3.8800731478879843`*^9},
3.880077662738361*^9, {3.880092680018382*^9, 3.8800927609693546`*^9},
3.88009294061189*^9, {3.880093070280167*^9, 3.88009309306977*^9}, {
3.8800937763518534`*^9, 3.880093794338488*^9}, {3.8800938489887686`*^9,
3.880093876177854*^9}, {3.880094061947296*^9, 3.8800941194976807`*^9}, {
3.8800941504675784`*^9, 3.8800941533676877`*^9}, {3.8800942187471128`*^9,
3.8800942280875473`*^9}, {3.88025994915244*^9, 3.8802599499085135`*^9}, {
3.8803257596059713`*^9, 3.8803257601291604`*^9}, {3.8804207654050164`*^9,
3.8804208290024295`*^9}, {3.8805007485446916`*^9,
3.8805007565170918`*^9}, {3.880501300235964*^9, 3.880501304486595*^9}, {
3.8805093506379237`*^9, 3.8805093528008127`*^9}, 3.880512468445854*^9, {
3.880512700037242*^9, 3.880512703446538*^9}, 3.8805127451842546`*^9,
3.8805128221470165`*^9, {3.8805130821868267`*^9, 3.8805130837658796`*^9}, {
3.88071298006899*^9, 3.880713112213687*^9}, {3.880713205650158*^9,
3.880713206086544*^9}, {3.8807132387790575`*^9, 3.880713283988098*^9}, {
3.8807137145761185`*^9, 3.8807137729878616`*^9}, {3.8807149891511707`*^9,
3.8807150005094357`*^9}, {3.8807698283574753`*^9,
3.8807698298075624`*^9}, {3.88076990848615*^9, 3.8807699093191547`*^9}, {
3.8807702400489683`*^9, 3.8807703184620433`*^9}, {3.880773285988431*^9,
3.880773291283336*^9}, {3.8807733398135557`*^9, 3.8807733417517104`*^9}},
CellLabel->"In[1]:=",ExpressionUUID->"78b3c9cf-6790-4940-975f-8e6643c694f4"],
Cell[BoxData["0.00037960825671384867`"], "Output",
CellChangeTimes->{3.880713288856425*^9, 3.880713721853204*^9,
3.8807150013223763`*^9, 3.880769812616133*^9, 3.8807699103345575`*^9,
3.8807701124066124`*^9, 3.880770320319873*^9, 3.8807733439038954`*^9,
3.8808828809726133`*^9, 3.8809521950369663`*^9, 3.8810435520005255`*^9,
3.881097605584496*^9, 3.8814155078519163`*^9},
CellLabel->"Out[14]=",ExpressionUUID->"3d1771e0-99d3-4d05-b2d8-1ae886697c2e"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{
RowBox[{
RowBox[{"fv", "=",
RowBox[{"{", "}"}]}], ";",
RowBox[{"\[Beta]", "=", "0.6"}], ";",
RowBox[{"\[Gamma]", "=", "0.7"}], ";",
RowBox[{"\[CapitalGamma]", "=", "0.1"}], ";",
RowBox[{"div", "=", "1.5"}], ";",
RowBox[{"cut", "=", "15"}], ";",
RowBox[{"SeedRandom", "[", "seed", "]"}], ";",
RowBox[{"d", "=", "1"}], ";"}],
RowBox[{"(*", " ",
RowBox[{"d", "=",
RowBox[{"1", " ",
RowBox[{"dim", ".", " ", "subspace"}]}]}], " ",
"*)"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"paths", "=",
RowBox[{"Table", "[",
RowBox[{
RowBox[{
RowBox[{"init", "[", "d", "]"}], ";",
RowBox[{"\[Theta]h", "=",
RowBox[{"{", "}"}]}], ";", " ",
RowBox[{"\[Theta]", "=",
RowBox[{"{",
RowBox[{"sx", ",", "sy", ",", "sz"}], "}"}]}], ";", " ",
RowBox[{"(*",
RowBox[{"starting", " ", "position"}], " ", "*)"}],
"\[IndentingNewLine]",
RowBox[{"Do", "[",
RowBox[{
RowBox[{
RowBox[{"AppendTo", "[",
RowBox[{"\[Theta]h", ",", "\[Theta]"}], "]"}], ";",
RowBox[{"sOGR", "[",
RowBox[{
RowBox[{"(",
RowBox[{"g", "/.",
RowBox[{"sub", "[", "\[Theta]", "]"}]}], ")"}], "+", "noise"}],
"]"}]}], ",",
RowBox[{"{",
RowBox[{"i", ",", "steps"}], "}"}]}], "]"}], ";", " ",
RowBox[{"(*", " ", "optimization", " ", "*)"}], "\[IndentingNewLine]",
RowBox[{"AppendTo", "[",
RowBox[{"fv", ",",
RowBox[{"f", "/.",
RowBox[{"sub", "[", "\[Theta]", "]"}]}]}], "]"}], ";",
RowBox[{"path", "=",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"Append", "[",
RowBox[{"\[Theta]", ",",
RowBox[{"f", "/.",
RowBox[{"sub", "[", "\[Theta]", "]"}]}]}], "]"}], ",",
RowBox[{"{",
RowBox[{"\[Theta]", ",", "\[Theta]h"}], "}"}]}], "]"}]}]}], ",",
RowBox[{"{",
RowBox[{"sx", ",",
RowBox[{"-", "r"}], ",", "r"}], "}"}], ",",
RowBox[{"{",
RowBox[{"sy", ",",
RowBox[{"-", "r"}], ",", "r"}], "}"}], ",",
RowBox[{"{",
RowBox[{"sz", ",",
RowBox[{"-", "r"}], ",", "r"}], "}"}]}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{"ListLogPlot", "[",
RowBox[{
RowBox[{"s1OGRp", "=",
RowBox[{"Sort", "[", "fv", "]"}]}], ",",
RowBox[{"PlotRange", "->",
RowBox[{"{",
RowBox[{"0.0001", ",", "100"}], "}"}]}], ",",
RowBox[{"PlotTheme", "->", "\"\<Detailed\>\""}], ",",
RowBox[{"ImageSize", "->", "Medium"}], ",",
RowBox[{"AspectRatio", "->",
RowBox[{"1", "/", "4"}]}], ",",
RowBox[{"PlotLabel", "->",
RowBox[{"Row", "[",
RowBox[{"{",
RowBox[{
"\"\<s1OGR value after \>\"", ",", "steps", ",",
"\"\< steps, geo. mean: \>\"", ",",
RowBox[{"Exp", "[",
RowBox[{"Mean", "[",
RowBox[{"Log", "[", "fv", "]"}], "]"}], "]"}]}], "}"}], "]"}]}]}],
"]"}]}], "Input",
CellChangeTimes->{{3.8807702063536625`*^9, 3.880770206444764*^9}, {
3.8807703245730596`*^9, 3.880770331200283*^9}, {3.880770446265095*^9,
3.880770480712242*^9}, {3.880770625817718*^9, 3.8807706548118916`*^9}, {
3.880770713069806*^9, 3.8807707282395315`*^9}, {3.880771033603623*^9,
3.880771042358884*^9}, {3.880771146486144*^9, 3.8807712923299417`*^9}, {
3.880772591542156*^9, 3.880772596925649*^9}},
CellLabel->"In[15]:=",ExpressionUUID->"e20dbb8b-2afe-4607-9cad-cff0767b119c"],
Cell[BoxData[
GraphicsBox[{{},
{RGBColor[0.368417, 0.506779, 0.709798], PointSize[0.007333333333333334],
AbsoluteThickness[1.6], PointBox[CompressedData["
1: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
PXaPyaLVMLp/sm7IFy38L/Vfhpw=
"]]}, {{}, {}}},
AspectRatio->NCache[
Rational[1, 4], 0.25],
Axes->{False, False},
AxesLabel->{None, None},
AxesOrigin->{0., -9.21034037197616},
DisplayFunction->Identity,
Frame->{{True, True}, {True, True}},
FrameLabel->{{None, None}, {None, None}},
FrameStyle->Automatic,
FrameTicks->FrontEndValueCache[{{
Charting`ScaledTicks[{Log, Exp}, {Log, Exp}, "Nice", WorkingPrecision ->
15.954589770191003`, RotateLabel -> 0],
Charting`ScaledFrameTicks[{Log, Exp}]}, {
Automatic, Automatic}}, {{{{-9.210340371976182,
FormBox[
TemplateBox[{"10",
RowBox[{"-", "4"}]}, "Superscript", SyntaxForm -> SuperscriptBox],
TraditionalForm], {0.01, 0.}}, {-6.907755278982137,
FormBox["0.001`", TraditionalForm], {0.01, 0.}}, {-4.605170185988091,
FormBox[
TagBox[
InterpretationBox[
StyleBox["\"0.010\"", ShowStringCharacters -> False],
0.01`15.954589770191003, AutoDelete -> True], NumberForm[#, {
DirectedInfinity[1], 3}]& ], TraditionalForm], {0.01,
0.}}, {-2.3025850929940455`,
FormBox[
TagBox[
InterpretationBox[
StyleBox["\"0.100\"", ShowStringCharacters -> False],
0.1`15.954589770191003, AutoDelete -> True], NumberForm[#, {
DirectedInfinity[1], 3}]& ], TraditionalForm], {0.01, 0.}}, {0.,
FormBox["1", TraditionalForm], {0.01, 0.}}, {2.302585092994046,
FormBox["10", TraditionalForm], {0.01, 0.}}, {4.605170185988092,
FormBox["100", TraditionalForm], {0.01, 0.}}, {-11.512925464970229`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-10.819778284410283`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-10.41431317630212,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-10.126631103850338`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-9.903487552536127,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-9.721165995742174,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-9.567015315914915,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-9.433483923290392,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-9.315700887634009,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-8.517193191416238,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-8.111728083308073,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-7.824046010856292,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-7.600902459542082,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-7.418580902748128,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-7.264430222920869,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-7.1308988302963465`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-7.013115794639964,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-6.214608098422191,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-5.809142990314028,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-5.521460917862246,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-5.298317366548036,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-5.115995809754082,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-4.961845129926823,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-4.8283137373023015`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-4.710530701645918,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-3.912023005428146,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-3.506557897319982,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-3.2188758248682006`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-2.995732273553991,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-2.8134107167600364`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-2.659260036932778,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-2.5257286443082556`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-2.4079456086518722`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-1.6094379124341003`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-1.2039728043259361`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-0.916290731874155,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-0.6931471805599453,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-0.5108256237659907,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-0.35667494393873245`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-0.2231435513142097,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-0.10536051565782628`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
0.6931471805599453,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
1.0986122886681098`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
1.3862943611198906`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
1.6094379124341003`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
1.791759469228055,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
1.9459101490553132`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
2.0794415416798357`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
2.1972245773362196`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
2.995732273553991,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
3.4011973816621555`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
3.6888794541139363`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
3.912023005428146,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
4.0943445622221,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
4.248495242049359,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
4.382026634673881,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
4.499809670330265,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
5.298317366548036,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
5.703782474656201,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
5.991464547107982,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
6.214608098422191,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
6.396929655216146,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
6.551080335043404,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
6.684611727667927,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
6.802394763324311,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
6.907755278982137,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}}, {{-9.210340371976182,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.01,
0.}}, {-6.907755278982137,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.01,
0.}}, {-4.605170185988091,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.01,
0.}}, {-2.3025850929940455`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.01, 0.}}, {0.,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.01, 0.}}, {
2.302585092994046,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.01, 0.}}, {
4.605170185988092,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.01,
0.}}, {-11.512925464970229`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-10.819778284410283`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-10.41431317630212,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-10.126631103850338`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-9.903487552536127,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-9.721165995742174,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-9.567015315914915,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-9.433483923290392,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-9.315700887634009,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-8.517193191416238,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-8.111728083308073,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-7.824046010856292,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-7.600902459542082,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-7.418580902748128,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-7.264430222920869,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-7.1308988302963465`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-7.013115794639964,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-6.214608098422191,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-5.809142990314028,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-5.521460917862246,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-5.298317366548036,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-5.115995809754082,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-4.961845129926823,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-4.8283137373023015`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-4.710530701645918,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-3.912023005428146,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-3.506557897319982,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-3.2188758248682006`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-2.995732273553991,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-2.8134107167600364`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-2.659260036932778,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-2.5257286443082556`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-2.4079456086518722`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-1.6094379124341003`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-1.2039728043259361`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-0.916290731874155,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-0.6931471805599453,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-0.5108256237659907,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-0.35667494393873245`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-0.2231435513142097,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005,
0.}}, {-0.10536051565782628`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
0.6931471805599453,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
1.0986122886681098`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
1.3862943611198906`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
1.6094379124341003`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
1.791759469228055,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
1.9459101490553132`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
2.0794415416798357`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
2.1972245773362196`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
2.995732273553991,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
3.4011973816621555`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
3.6888794541139363`,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
3.912023005428146,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
4.0943445622221,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
4.248495242049359,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
4.382026634673881,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
4.499809670330265,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
5.298317366548036,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
5.703782474656201,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
5.991464547107982,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
6.214608098422191,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {0.005, 0.}}, {
6.396929655216146,