~ruther/ctu-fee-eoa

ref: 48d0912f632e44005cedd27f13de6f4925e3312a ctu-fee-eoa/codes/py_plotter/config_best_g09.json -rw-r--r-- 1.2 KiB
48d0912f — Rutherther feat: add a simple python plotter 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
54
55
56
57
{
  "plot_type": "best_candidates",
  "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": ":"
    }
  ],
  "instances": [
    {
      "name": "g09",
      "label": "G09",
      "color": "#8c564b"
    }
  ],
  "data_path": "../constr_hw02/solutions",
  "output_dir": "plots",
  "plot_settings": {
    "figsize": [12, 8],
    "xlabel": "Function evaluation",
    "ylabel": "Percentage deviation from optimum",
    "title": "Best Candidates Percentage Deviation - G09",
    "grid": true,
    "legend": true,
    "alpha_fill": 0.2,
    "log_x": true,
    "log_y": true,
    "color_combination": "algorithm",
    "show_std": true
  }
}