-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathplottrainingloss.py
51 lines (43 loc) · 1.68 KB
/
plottrainingloss.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
import argparse
import sys
import json
from utils.plotting import plotJson,plotAlphaResults,readJson,jsonToDF,plotTrainings
import matplotlib
matplotlib.use('Agg')
#import matplotlib as mpl
#mpl.use('module://backend_interagg')
#https://www.adressa.no/pluss/okonomi/2018/09/08/Prora-eierne-g%C3%A5r-for-frifinnelse-i-ankesaken-17471354.ece
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
import numpy as np
import json
def str2bool(v):
if v.lower() in ('yes', 'true', 't', 'y', '1'):
return True
elif v.lower() in ('no', 'false', 'f', 'n', '0'):
return False
else:
raise argparse.ArgumentTypeError('Boolean value expected.')
def main():
parser = argparse.ArgumentParser(description='plot results from annSim')
parser.add_argument('--resultdir', metavar='resultdir', type=str,
help='resultdir for loading data files including figures')
parser.add_argument('--savedir', metavar='savedir', type=str,
help='Directory to write the pdf figure to')
parser.add_argument('--filename', metavar='filename', type=str,
help='Filename for pdf figure')
parser.add_argument('--addgabelresults', metavar='filename', type=str2bool,
help='Filename for pdf figure',default=False)
args = parser.parse_args()
if not len(sys.argv) > 1:
print ("not enough arguments")
parser.print_help()
sys.exit(1)
resultfile = args.resultdir
json = readJson(resultfile)
save_directory = args.savedir
filename = args.filename
plotTrainings(json.keys(),json,save_directory,5)
if __name__ == "__main__":
main()