-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterm_plot.py
70 lines (54 loc) · 1.62 KB
/
term_plot.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
# v1.07 / neurograph for terminal use
# needs `termplotlib`
# please install w/ `pip install termplotlib`
import shutil
import os
import glob
import re
import termplotlib as tpl
import numpy as np
def print_line(length):
print("=" * length)
""" def print_line():
terminal_width = shutil.get_terminal_size().columns
print("=" * terminal_width) """
def main():
log_dir = "logs/"
log_files = glob.glob(log_dir + "*.txt")
latest_log = max(log_files, key=os.path.getctime)
with open(latest_log, "r") as file:
lines = file.readlines()
x = []
y = []
date_str = ""
for line in lines:
if line.startswith(":::"):
date_match = re.search(r'::: (.+ \d+ \d+:\d+:\d+ [A-Za-z]+ \d+)', line)
if date_match:
date_str = date_match.group(1)
elif line.startswith("["):
match = re.search(r'\[(\d+)\s\|\s[\d.]+\]\sloss=[\d.]+\savg=([\d.]+)', line)
if match:
x.append(int(match.group(1)))
y.append(float(match.group(2)))
print_line(60)
print(f"{date_str}")
print_line(60)
print()
first_x = x[0]
first_y = y[0]
last_x = x[-1]
last_y = y[-1]
print(f"{first_x:<7}{'':>42}{last_x:>7}")
print(f"{'='*7}{'':>42}{'='*7}")
print(f"avg={first_y:<6.2f}{'':>39}avg={last_y:.2f}")
fig = tpl.figure()
fig.plot(x, y, width=60, height=20)
# Center the x-axis and y-axis labels
label = "x-axis: Iterations | y-axis: Avg"
padding = (60 - len(label)) // 2
print(f"{'':<{padding}}{label}")
fig.show()
print()
if __name__ == "__main__":
main()