~ruther/ctu-fee-eoa

ref: c67cbe05b263f3d2f59d9217d0e112ff23b43d74 ctu-fee-eoa/codes/py_plotter/config_target_proximity_1_percent.json -rw-r--r-- 1.0 KiB
c67cbe05 — Rutherther Finish hw02 5 days ago
                                                                                
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
{
  "data_path": "../constr_hw02/solutions",
  "output_dir": "plots",
  "plot_name": "1_percent_over_time",
  
  "target": 1.0,
  
  "problem_groups": [
    ["g05", "g06", "g09", "g11"]
  ],
  
  "algorithms": [
    {
      "name": "srank",
      "label": "S-Rank",
      "color": "#1f77b4",
      "linestyle": "-"
    },
    {
      "name": "nsga",
      "label": "NSGA-II",
      "color": "#ff7f0e",
      "linestyle": "-"
    },
    {
      "name": "nsga_multi",
      "label": "NSGA-II Multi",
      "color": "#2ca02c",
      "linestyle": "-"
    },
    {
      "name": "nsga_improved",
      "label": "NSGA-II Improved",
      "color": "#ff7f0e",
      "linestyle": "--"
    },
    {
      "name": "nsga_constr",
      "label": "NSGA-II Constr",
      "color": "#ff7f0e",
      "linestyle": ":"
    }
  ],
  
  "plot_settings": {
    "figsize": [10, 6],
    "xlabel": "Function Evaluations",
    "ylabel": "Fraction of Runs Within 1% of Optimal",
    "title": "Target Proximity Achievement Over Time (1% Target)",
    "grid": true,
    "legend": true
  }
}