forked from dipamgoswami/FeCAM
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtrainer.py
More file actions
155 lines (122 loc) · 5.08 KB
/
trainer.py
File metadata and controls
155 lines (122 loc) · 5.08 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
import sys
import logging
import copy
import torch
from utils import factory
from utils.data_manager import DataManager
from utils.toolkit import count_parameters
import os
import json
import seaborn as sns
import numpy as np
import matplotlib.pyplot as plt
from mpl_toolkits.axes_grid1.inset_locator import inset_axes
torch.set_printoptions(threshold=10000)
def train(args):
seed_list = copy.deepcopy(args["seed"])
device = copy.deepcopy(args["device"])
print('=========================================')
print(f'Starting run with parameters: dist={args["pca_dist"]}, vecnorm={args["pca_vecnorm"]}, pca_components={args["pca_components"]}')
for seed in seed_list:
args["seed"] = seed
args["device"] = device
_train(args)
def _train(args):
init_cls = 0 if args ["init_cls"] == args["increment"] else args["init_cls"]
logs_name = "logs/{}/{}/{}/{}".format(args["model_name"],args["dataset"], init_cls, args['increment'])
if not os.path.exists(logs_name):
os.makedirs(logs_name)
logfilename = "logs/{}/{}/{}/{}/{}_{}_{}".format(
args["model_name"],
args["dataset"],
init_cls,
args["increment"],
args["prefix"],
args["seed"],
args["convnet_type"],
)
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s [%(filename)s] => %(message)s",
handlers=[
logging.FileHandler(filename=logfilename + ".log"),
logging.StreamHandler(sys.stdout),
],
)
_set_random()
_set_device(args)
print_args(args)
data_manager = DataManager(
args["dataset"],
args["shuffle"],
args["seed"],
args["init_cls"],
args["increment"],
)
model = factory.get_model(args["model_name"], args)
file = open('result.json', 'w')
cnn_curve, nme_curve, fecam_curve = {"top1": [], "top5": []}, {"top1": [], "top5": []}, {"top1": [], "top5": []}
for task in range(data_manager.nb_tasks):
model.incremental_train(data_manager)
cnn_accy, nme_accy, fecam_accy = model.eval_task()
model.after_task()
json.dump(fecam_accy, file)
if nme_accy is not None and fecam_accy is None:
logging.info("CNN: {}".format(cnn_accy["grouped"]))
logging.info("NME: {}".format(nme_accy["grouped"]))
logging.info("No FeCAM accuracy.")
cnn_curve["top1"].append(cnn_accy["top1"])
cnn_curve["top5"].append(cnn_accy["top5"])
nme_curve["top1"].append(nme_accy["top1"])
nme_curve["top5"].append(nme_accy["top5"])
logging.info("CNN top1 curve: {}".format(cnn_curve["top1"]))
logging.info("CNN top5 curve: {}".format(cnn_curve["top5"]))
logging.info("NME top1 curve: {}".format(nme_curve["top1"]))
logging.info("NME top5 curve: {}\n".format(nme_curve["top5"]))
elif fecam_accy is not None and cnn_accy is not None:
logging.info("CNN: {}".format(cnn_accy["grouped"]))
logging.info("No NME accuracy")
logging.info("FeCAM: {}".format(fecam_accy["grouped"]))
cnn_curve["top1"].append(cnn_accy["top1"])
cnn_curve["top5"].append(cnn_accy["top5"])
fecam_curve["top1"].append(fecam_accy["top1"])
fecam_curve["top5"].append(fecam_accy["top5"])
logging.info("CNN top1 curve: {}".format(cnn_curve["top1"]))
logging.info("CNN top5 curve: {}".format(cnn_curve["top5"]))
logging.info("FeCAM top1 curve: {}".format(fecam_curve["top1"]))
logging.info("FeCAM top5 curve: {}\n".format(fecam_curve["top5"]))
elif fecam_accy is not None:
logging.info("No CNN accuracy")
logging.info("No NME accuracy")
logging.info("FeCAM: {}".format(fecam_accy["grouped"]))
fecam_curve["top1"].append(fecam_accy["top1"])
fecam_curve["top5"].append(fecam_accy["top5"])
logging.info("FeCAM top1 curve: {}".format(fecam_curve["top1"]))
logging.info("FeCAM top5 curve: {}\n".format(fecam_curve["top5"]))
else:
logging.info("No NME accuracy.")
logging.info("CNN: {}".format(cnn_accy["grouped"]))
cnn_curve["top1"].append(cnn_accy["top1"])
cnn_curve["top5"].append(cnn_accy["top5"])
logging.info("CNN top1 curve: {}".format(cnn_curve["top1"]))
logging.info("CNN top5 curve: {}\n".format(cnn_curve["top5"]))
file.close()
def _set_device(args):
device_type = args["device"]
gpus = []
for device in device_type:
if device_type == -1:
device = torch.device("cpu")
else:
device = torch.device("cuda:{}".format(device))
gpus.append(device)
args["device"] = gpus
def _set_random():
torch.manual_seed(1)
torch.cuda.manual_seed(1)
torch.cuda.manual_seed_all(1)
torch.backends.cudnn.deterministic = True
torch.backends.cudnn.benchmark = False
def print_args(args):
for key, value in args.items():
logging.info("{}: {}".format(key, value))