~ruther/ctu-fee-eoa

ctu-fee-eoa/codes/py_plotter/config_constraint_violation.json -rw-r--r-- 744 bytes
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
{
  "plot_type": "constraint_violation",
  "algorithms": [
    {
      "name": "nsga",
      "label": "NSGA-II",
      "color": "#1f77b4",
      "linestyle": "-"
    },
    {
      "name": "nsga_multi", 
      "label": "NSGA-II Multi",
      "color": "#ff7f0e",
      "linestyle": "--"
    },
    {
      "name": "srank",
      "label": "S-Rank",
      "color": "#d62728",
      "linestyle": "-."
    }
  ],
  "instances": ["g04", "g05", "g06"],
  "data_path": "../constr_hw02/solutions",
  "output_dir": "plots",
  "plot_settings": {
    "figsize": [15, 5],
    "xlabel": "Iteration",
    "ylabel": "Average Constraint Violation",
    "title": "Constraint Violation Over Time",
    "grid": true,
    "legend": true,
    "alpha_fill": 0.3
  }
}