~ruther/ctu-fee-eoa

ref: 940f8e99e5765b17a24d46de1d3914122c0726b1 ctu-fee-eoa/codes/py_plotter/config_example.json -rw-r--r-- 1.0 KiB
940f8e99 — Rutherther Really 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
{
  "plot_type": "best_candidates",
  "algorithms": [
    {
      "name": "srank",
      "label": "Stochastic ranking",
      "color": "#1f77b4",
      "linestyle": "-"
    },
    {
      "name": "nsga",
      "label": "NSGA-II",
      "color": "#1f77b4",
      "linestyle": "-"
    },
    {
      "name": "nsga_multi",
      "label": "NSGA-II Multi",
      "color": "#ff7f0e",
      "linestyle": "--"
    },
    {
      "name": "nsga_improved",
      "label": "NSGA-II Improved",
      "color": "#2ca02c",
      "linestyle": "-."
    }
  ],
  "instances": [
    {
      "name": "g11",
      "label": "G11",
      "color": "#d62728"
    }
  ],
  "data_path": "../constr_hw02/solutions",
  "output_dir": "plots",
  "plot_settings": {
    "figsize": [12, 8],
    "xlabel": "Function evaluation",
    "ylabel": "Percentage Deviation from Optimal (%)",
    "title": "Best Candidate Evolution - Deviation from Optimal",
    "grid": true,
    "legend": true,
    "alpha_fill": 0.3,
    "log_x": true,
    "log_y": true,
    "color_combination": "blend"
  }
}