forked from LIVIAETS/SizeLoss_WSS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hist.py
80 lines (60 loc) · 2.44 KB
/
hist.py
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
#!/usr/bin/env python3.6
import argparse
from typing import List
from pathlib import Path
import numpy as np
import matplotlib
matplotlib.use("Agg")
import matplotlib.pyplot as plt
from utils import map_, colors
def run(args: argparse.Namespace) -> None:
assert len(args.folders) <= len(colors)
if len(args.columns) > 1:
raise NotImplementedError("Only 1 columns at a time is handled for now")
paths: List[Path] = [Path(f, args.filename) for f in args.folders]
arrays: List[np.ndarray] = map_(np.load, paths)
metric_name: str = paths[0].stem
if len(arrays[0].shape) == 2:
arrays = map_(lambda a: a[..., np.newaxis], arrays)
epoch, _, class_ = arrays[0].shape
for a in arrays[1:]:
ea, _, ca = a.shape
assert epoch == ea and class_ == ca
fig = plt.figure(figsize=(14, 9))
ax = fig.gca()
# ax.set_ylim([0, 1])
ax.set_xlim([0, 1])
ax.set_xlabel(metric_name)
ax.set_ylabel("Percentage")
ax.grid(True, axis='y')
ax.set_title(f"{metric_name} histograms")
bins = np.linspace(0, 1, args.nbins)
for a, c, p in zip(arrays, colors, paths):
for k in args.columns:
mean_a = a[..., k].mean(axis=1)
best_epoch: int = np.argmax(mean_a)
# values = a[args.epc, :, k]
values = a[best_epoch, :, k]
ax.hist(values, bins, alpha=0.5, label=f"{p.parent.name}-{k}", color=c)
ax.legend()
fig.tight_layout()
if args.savefig:
fig.savefig(args.savefig)
if not args.headless:
plt.show()
def get_args() -> argparse.Namespace:
parser = argparse.ArgumentParser(description='Plot data over time')
parser.add_argument('--folders', type=str, required=True, nargs='+', help="The folders containing the file")
parser.add_argument('--filename', type=str, required=True)
parser.add_argument('--columns', type=int, nargs='+', default=0, help="Which columns of the third axis to plot")
parser.add_argument("--savefig", type=str, default=None)
parser.add_argument("--headless", action="store_true")
parser.add_argument("--smooth", action="store_true",
help="Help for compatibility with other plotting functions, does not do anything.")
parser.add_argument("--nbins", type=int, default=100)
parser.add_argument("--epc", type=int, required=True)
args = parser.parse_args()
print(args)
return args
if __name__ == "__main__":
run(get_args())