-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_ib_long.py
486 lines (443 loc) · 21.7 KB
/
get_ib_long.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
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
# -*- coding: utf-8 -*-
"""
Created on Fri Nov 18 12:21:05 2022
@author: Denis
"""
from models import SP_PCUNet
import os
import gc
import datetime
import numpy as np
import pandas as pd
import random
import itertools
import zipfile
import io
import time
from absl import app
from absl import flags
from absl import logging
from copy import deepcopy
from tqdm import tqdm
from glob import glob
from natsort import natsorted
import seaborn as sns
import tensorflow as tf
from keras.preprocessing.image import ImageDataGenerator
from keras.callbacks import TensorBoard, ModelCheckpoint, LambdaCallback
#from keras_tqdm import TQDMCallback
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
plt.ioff()
import matplotlib.gridspec as gridspec
#from mpl_toolkits.axes_grid1 import make_axes_locatable
# from matplotlib.ticker import NullFormatter
from skimage.metrics import structural_similarity as ssim
from libs.pconv_model import PConvUnet
from libs.lstm_model import LSTM
from libs.gru_model import GRU
from dataset.data_process import kinter, forplot_assignement_accuracy, kcentroids_equal, to_kcentroid_seq, chunkdata_for_longpredict, retrieve_traintimeseq, create_labelines_timeseq_dataset, convertdata_for_training, no_cosmic, rescale_data_by_seqs
from featuring.brandon_features import feature_transform, Mg_settings
from sklearn.metrics import confusion_matrix#, ConfusionMatrixDisplay
class_parms = None
from featuring.mts_metrics import NPMtsMetrics
from featuring.class_n2_metrics import tss_hss_all
try:
from main_classify import Settings, update_settings_fromclass
from models_classify import SP_Conv_Dense, create_class_mask
from featuring.center_stat import NPJointCenterStat#, NPCenterStat, CenterStat
from libs.class_pconv_model import NP_CategoricalCrossentropy, NP_BinaryCrossentropy, NP_CategoricalAccuracy, NP_BinaryAccuracy
from libs.countdict3k_acc import NPAccuracyOverTime3D
except:
print("Could not import libraries on centers and classification")
else:
print("successfuly imported libraries on centers and classification")
now = datetime.datetime.now
plt.rcParams.update({'font.size': 55})
plt.rcParams.update({'font.family': 'Cambria'})
manual_mode = True
ds = 'TEL'
label = 'QS'
nclsfier = 0
# name of the features studied and type of the label ticks for the graphs
feat_legends = [('intensity','%.1f'),
('triplet intensity','%.2f'),
('line center','%.1f'),
('line width','int'),
('line asymmetry','%.2f'),
('total_continium','int'),
('triplet emission','int'),
('k/h ratio integrated','%.2f'),
('kh ratio max','%.2f'),
('k hight','%.2f'),
('peak ratios','int'),
('peak separation','int')]
# SETTINGS
# To output and npz file with the physical features onthe data
output_npz_features = False
# To eventualy define only one classifier with settings
# 'classes' and 'class_inclusions'
#classes_and_inclusions = None
# To define several classifiers list[(classes, inclusions, noclass), ..]
# For model trained with all labels
classes_and_inclusions_addnoclass = list(zip(
['_'.join(clss) for clss in [
['QS','AR','PF','FL']]],
['_'.join(incs) for incs in [
['']]],
[
None]))
FLAGS = flags.FLAGS
flags.DEFINE_string("fname", 'compare_ib_long', "File name: path with name of the output file")
flags.DEFINE_boolean("manual_mode", True, "Use manual mode is you don't want to load dataand disable part of the code in models.py")
flags.DEFINE_boolean("change_traindata", False, "whether to enable to save/overwrite data_longformat.npz")
flags.DEFINE_string("model_type", "IBMTS", "name of the model to user ['IBMTS'], ['LSTM'], ['LSTMS'], ['GRU'], ['GRUS'], ['NBeats']")
flags.DEFINE_boolean("with_centerloss", False, "whether to add a term in the total loss optimizing the proximity to the centers")
flags.DEFINE_boolean("debug", True, "True to use debug mode (1 epoch and 1st item of generator for test)")
flags.DEFINE_integer("epoch", 100, "Epoch to train [25]")
flags.DEFINE_integer("batch_size", 4, "The size of batch images [4]")
flags.DEFINE_boolean("batch_norm", True, "True for the model with batch_normalzation")
flags.DEFINE_float("learning_rate", 0.0002, "Learning rate of for adam with BN (phase 1) [0.0002]")
flags.DEFINE_string("dataset", "pb_2C", "The name of dataset [iris_level_2C, al_2C, pb_2C]")
flags.DEFINE_string("root_address", os.path.dirname(os.path.realpath(__file__)), "The path for the root folder of the project")
flags.DEFINE_string("dataset_address", os.path.join(FLAGS.root_address,'iris_data'), "The path of dataset")
flags.DEFINE_boolean("given_tvt", True, "Whether the data is already separated in 'train' 'valid' 'test' (these should appear in the file names)")
flags.DEFINE_float("train_ratio", 0.7, "ratio of dataset to use for training [0.7]")
flags.DEFINE_float("test_ratio", 0.25, "ratio of dataset to use for testing [0.25]")
flags.DEFINE_integer("label_length", 325, "The length of spectra. [240 (for Mghk), 137 (for al), 370 (for ld)))]")
if FLAGS.model_type == "NBeats":
flags.DEFINE_integer("n_blocks", 2,"number of blocks for NBeats")
flags.DEFINE_string("labels", '_'.join(['PB']), "label for training ['QS','AR','PF','FL'] (these should appear in the filename[:2])")
flags.DEFINE_string("test_labels", '_'.join(['PB']), "label for testing ['QS','AR','PF','FL']")
flags.DEFINE_string("name", 'model%s%s_B%i_M%i_R%i_%s'%([FLAGS.model_type+"%s"%['','star'][int(FLAGS.with_centerloss)],"Mghk%s"%['','star'][int(FLAGS.with_centerloss)]][int(FLAGS.model_type=="IBMTS")], FLAGS.dataset[-2:], FLAGS.batch_size, int(100*FLAGS.mask_ratio), int(FLAGS.random_ratio), FLAGS.labels), "The name of the model")
flags.DEFINE_string("checkpoint_dir", os.path.join(FLAGS.root_address,FLAGS.dataset,FLAGS.name,"checkpoint"), "Directory name to save the checkpoints [checkpoint]")
flags.DEFINE_string("logs_dir", os.path.join(FLAGS.root_address,FLAGS.dataset,FLAGS.name,"log"), "Directory name to save the log [log]")
flags.DEFINE_string("results_dir", os.path.join(FLAGS.root_address,FLAGS.dataset,FLAGS.name,"results"), "Directory name to save the image samples [samples]")
flags.DEFINE_boolean("train", False, "True for training [False]")
flags.DEFINE_boolean("preload_train", False, "True for loading a pre-trained model before training, False for testing [False]")
flags.DEFINE_boolean("test", False, "True for testing directly at the end of training")
flags.DEFINE_string("test_ds", '_'.join(['TE','TEL']), "chosen datasets for tests ['TR', 'VA', 'TE', 'TEL']")
flags.DEFINE_boolean("with_features", False, "whether features should be investigated")
flags.DEFINE_boolean("add_classifier", False, "True to add classification stats (it will use the params from main_classify.py).")
flags.DEFINE_string("classes", '_'.join(['PB']), "May be overriden by 'classes_and_inclusions', labels of classification ['QS','AR','PF','FL'] OR ['QS','AR-PF-FL']..")
flags.DEFINE_string("class_inclusions", '_'.join(['']), "inclusions for classification '_'.join(['QS<AR']) OR [QS<AR, QS<PF, QS<FL] OR ['']")
flags.DEFINE_boolean("add_centercount", False, "True to add centers stats (it will use the params from main_classify.py).")
flags.DEFINE_boolean("predict", False, "True for predicting number_predict from each chosen dataset predict_ds")
flags.DEFINE_string("predict_ds", '_'.join(['TR', 'VAL', 'TE', 'TEL']), "chosen datasets for predictions ['TR', 'VAL', 'TE', 'TEL']")
flags.DEFINE_integer("number_predict", 4, "The maximum number of predictions to do")
flags.DEFINE_boolean("show_res", True, "True for showing results at the end")
flags.DEFINE_boolean("cosmic_to_mean", False, "True for putting cosmic rays to the mean value") # V2
flags.DEFINE_integer("cosmic_t", 2000, "Threshold in DN/s for cosmic rays [2000]")
flags.DEFINE_boolean("show_dist_polar", False, "Whether to show distribution in a polar way or not")
flags.DEFINE_string("fig_form", 'pdf', "Format for saved figures in ['png', 'ps', 'pdf', 'svg']")
flags.DEFINE_boolean("backg_color", False, "Whether to colorize backgrounds or not")
flags.DEFINE_boolean("frame_res", False, "To frame marginal results in figures")
def main():
self = SP_PCUNet(FLAGS,
classes_and_inclusions_addnoclass=classes_and_inclusions_addnoclass,
feat_legends=feat_legends, manual_mode=True, change_traindata=False)
means, stds = {}, {}
means_ssim, stds_ssim = {}, {}
means_kcenter, stds_kcenter = {}, {}
mean_abs_err, mean_rel_err = {},{}
abs_length, rel_length = {}, {}
mts_results = {clsn:{} for clsn in list(self.classifier.keys())}
glob_mts_results = {clsn:{} for clsn in list(self.classifier.keys())}
if self.add_classifier:
class_count_in = {}
class_results_in = {}
class_count_out = {}
class_results_out = {}
class_acc = {}
class_IOchange = {}
class_TIchange = {}
class_TOchange = {}
confusion_classes = {}
for clsn in list(self.classifier.keys()):
class_count_in[clsn] = {}
class_results_in[clsn] = {}
class_count_out[clsn] = {}
class_results_out[clsn] = {}
class_acc[clsn] = {}
class_IOchange[clsn] = {}
class_TIchange[clsn] = {}
class_TOchange[clsn] = {}
if self.add_centercount:
if self.add_classifier:
pio_centers = {clsn:{} for clsn in list(self.classifier.keys())}
globpio_centers = {clsn:{} for clsn in list(self.classifier.keys())}
else:
pio_centers = {'noclassifier':{}}
globpio_centers = {'noclassifier':{}}
test_ds = self.test_ds
psnrs_df = pd.DataFrame()
ssims_df = pd.DataFrame()
kcenters_df = {}
for i in range(1, 7):
kcenters_df[i] = pd.DataFrame()
mean_abs_err[ds] = np.zeros((len(self.feat_legends), 1))
mean_rel_err[ds] = np.zeros((len(self.feat_legends), 1))
abs_length[ds] = np.zeros((len(self.feat_legends), 1))
rel_length[ds] = np.zeros((len(self.feat_legends), 1))
if self.add_classifier:
np_all_metrics = [
NP_CategoricalCrossentropy,
NP_BinaryCrossentropy,
NP_CategoricalAccuracy,
NP_BinaryAccuracy]
np_metrics_in = {}
np_metrics_out = {}
makedir = {}
for clsn, clsfier in self.classifier.items():
np_metrics_in[clsn] = [m for m in np_all_metrics if any(
[mm.name in m().name for mm in clsfier.model.model.metrics])]
np_metrics_in[clsn] = [mm(**a) for mm, a in zip(
np_metrics_in[clsn],
[[{}, {'class_assign_fn':clsfier.model.np_assign_class}][int(
tf.keras.metrics.CategoricalAccuracy().name == m().name)] for m in np_metrics_in[clsn]])]
np_metrics_out[clsn] = [m for m in np_all_metrics if any(
[mm.name in m().name for mm in clsfier.model.model.metrics])]
np_metrics_out[clsn] = [mm(**a) for mm, a in zip(
np_metrics_out[clsn],
[[{}, {'class_assign_fn':clsfier.model.np_assign_class}][int(
tf.keras.metrics.CategoricalAccuracy().name == m().name)] for m in np_metrics_out[clsn]])]
for metric in np_metrics_in[clsn]:
metric.reset_states()
for metric in np_metrics_out[clsn]:
metric.reset_states()
# confusion matrix IN OUT classification
if clsfier.noclass is not None:
class_IOchange[clsn][ds] = np.zeros([clsfier.nclass+1]*2, np.int64)
class_TIchange[clsn][ds] = np.zeros([clsfier.nclass+1]*2, np.int64)
class_TOchange[clsn][ds] = np.zeros([clsfier.nclass+1]*2, np.int64)
confusion_classes[clsn] = clsfier.classes + [clsfier.noclass]
else:
assert clsfier.noclass is None, "In and Out classifiers should have the same 'noclass'"
class_IOchange[clsn][ds] = np.zeros([clsfier.nclass]*2, np.int64)
class_TIchange[clsn][ds] = np.zeros([clsfier.nclass]*2, np.int64)
class_TOchange[clsn][ds] = np.zeros([clsfier.nclass]*2, np.int64)
confusion_classes[clsn] = clsfier.classes
makedir[clsn] = clsn
else:
makedir = {'noclassifier':'noclassifier'}
for _, mkd in makedir.items():
if not os.path.exists(os.path.join(self.results_dir, 'testing_long', mkd)):
os.makedirs(os.path.join(self.results_dir, 'testing_long', mkd))
for clsn in list(self.classifier.keys()):
self.mts_metrics[clsn].reset()
self.glob_mts_metrics[clsn].reset()
if self.add_centercount:
for clsn in list(self.classifier.keys()):
self.center_counter_pio[clsn].reset()
self.glob_center_counter_pio[clsn].reset()
new_mods = ['modelMghk2C_B4_M25_R0_QS_AR_PF_FL',
'modelLSTMS2C_B4_M25_R0_QS_AR_PF_FL',
'modelLSTM2C_B4_M25_R0_QS_AR_PF_FL',
'modelGRUS2C_B4_M25_R0_QS_AR_PF_FL',
'modelGRU2C_B4_M25_R0_QS_AR_PF_FL',
'modelNBeats2C_B4_M25_R0_QS_AR_PF_FL']
old_mods = ['modelMghk2C_B4_M25_R0_QS_AR_PF_FL',
'modelMghk2C_B4_M25_R0_QS_AR_PF_FL',
'modelLSTMS2C_B4_M25_R0_QS_AR_PF_FL',
'modelLSTM2C_B4_M25_R0_QS_AR_PF_FL',
'modelGRUS2C_B4_M25_R0_QS_AR_PF_FL',
'modelGRU2C_B4_M25_R0_QS_AR_PF_FL']
new_dirs = ['IB-MTS',
'IB-MTS',
'IB-MTS',
'IB-MTS',
'IB-MTS',
'IB-MTS']
old_dirs = ['IB-MTS',
'IB-MTS',
'IB-MTS',
'IB-MTS',
'IB-MTS',
'IB-MTS']
namecolor_legends = [('ib-mts',('b',1)),
('lstm',('c',.5)),
('ib-lstm',('g',.5)),
('gru',('m',.5)),
('ib-gru',('r',.5)),
('nbeats',('y',.5))]
updates = [False] + [True]*(len(new_mods)-1)
res = {}
for new_mod, old_mod, new_dir, old_dir, namecolor_legend, update in zip(
new_mods, old_mods, new_dirs, old_dirs, namecolor_legends, updates):
self.results_dir = os.path.normpath(
self.results_dir).replace(
os.path.normpath(old_dir),
os.path.normpath(new_dir)).replace(
os.path.normpath(old_mod),
os.path.normpath(new_mod))
assert os.path.isfile(os.path.join(self.results_dir, 'test_RAW_{}.npz'.format(ds))), "Could not find first set of results {}".format(os.path.join(self.results_dir, 'test_RAW_{}.npz'.format(ds)))
print('imported data from {}'.format(self.results_dir))
results = np.load(os.path.join(self.results_dir, 'test_RAW_{}.npz'.format(ds)), allow_pickle = True)
try:
mean_abs_err[ds] = results['mean_abs_err']
mean_rel_err[ds] = results['mean_rel_err']
abs_length[ds] = results['abs_length']
rel_length[ds] = results['rel_length']
psnrs_df = results['psnrs_df'].all()['df']
ssims_df = results['ssims_df'].all()['df']
kcenters_df = results['kcenters_df'].all()
for clsn in list(self.classifier.keys()):
mts_results[clsn][ds] = results['mts_results'].all()[clsn]
glob_mts_results[clsn][ds] = results['glob_mts_results'].all()[clsn]
if self.add_classifier:
for clsn in list(self.classifier.keys()):
class_count_in[clsn][ds] = results['class_count_in'].all()[clsn]
class_results_in[clsn][ds] = results['class_results_in'].all()[clsn]
class_count_out[clsn][ds] = results['class_count_out'].all()[clsn]
class_results_out[clsn][ds] = results['class_results_out'].all()[clsn]
class_acc[clsn][ds] = results['class_acc'].all()[clsn]
class_IOchange[clsn][ds] = results['class_IOchange'].all()[clsn]
class_TIchange[clsn][ds] = results['class_TIchange'].all()[clsn]
class_TOchange[clsn][ds] = results['class_TOchange'].all()[clsn]
confusion_classes[clsn] = results['confusion_classes'].all()[clsn]
if self.add_centercount:
for clsn in list(self.classifier.keys()):
pio_centers[clsn][ds] = results['pio_centers'].all()[clsn]
globpio_centers[clsn][ds] = results['globpio_centers'].all()[clsn]
except:
if 'end' in results.keys():
end_raw = results['end']
else:
end_raw = False
assert end_raw, "the test savings were not terminated"
last_raw_saving = results['last_raw_saving']
print("loading previous raw results: last saved index is {}".format(last_raw_saving))
# print("length of test is {}".format(len(self.data_pack[ds.replace('TEL', 'TE')][0])))
mean_abs_err[ds] = results['mean_abs_err']
mean_rel_err[ds] = results['mean_rel_err']
abs_length[ds] = results['abs_length']
rel_length[ds] = results['rel_length']
psnrs_df = results['psnrs_df'].all()['df']
ssims_df = results['ssims_df'].all()['df']
kcenters_df = results['kcenters_df'].all()
if self.add_classifier:
np_metrics_insave = results['np_metrics_insave'].all()
np_metrics_outsave = results['np_metrics_outsave'].all()
atc_metric_save = results['atc_metric_save'].all()
for clsn in list(self.classifier.keys()):
for metric in np_metrics_in[clsn]:
metric.total = np_metrics_insave[clsn][
metric.name]['total']
metric.count = np_metrics_insave[clsn][
metric.name]['count']
for metric in np_metrics_out[clsn]:
metric.total = np_metrics_outsave[clsn][
metric.name]['total']
metric.count = np_metrics_outsave[clsn][
metric.name]['count']
self.atc_metric[clsn].count = atc_metric_save[clsn]['count']
class_IOchange[clsn][ds] = results['class_IOchange'].all()[clsn]
class_TIchange[clsn][ds] = results['class_TIchange'].all()[clsn]
class_TOchange[clsn][ds] = results['class_TOchange'].all()[clsn]
confusion_classes[clsn] = results['confusion_classes'].all()[clsn]
for clsn in list(self.classifier.keys()):
for mn, sn in zip(
[self.mts_metrics,
self.glob_mts_metrics],
['mts_metrics_save',
'globmts_metrics_save']):
metrics_save = results[sn].all()
for nm,vm in mn[clsn].metrics_dict.items():
vm.from_saved(metrics_save[clsn][nm])
if self.add_centercount:
for nm, sn in zip(
[self.center_counter_pio,
self.glob_center_counter_pio],
['pio_metrics_save',
'globpio_metrics_save']):
metrics_save = results[sn].all()
for clsn in list(self.classifier.keys()):
nm[clsn].freqdict_prior.total = metrics_save[
clsn]['prior']['total']
nm[clsn].freqdict_prior.count = metrics_save[
clsn]['prior']['count']
nm[clsn].freqdict_io.total = metrics_save[
clsn]['io']['total']
nm[clsn].freqdict_io.count = metrics_save[
clsn]['io']['count']
nm[clsn].batchinfo_pio.total = metrics_save[
clsn]['pio']['total']
nm[clsn].batchinfo_pio.count = metrics_save[
clsn]['pio']['count']
if self.add_classifier:
# Collect results
for clsn in list(self.classifier.keys()):
class_results_in[clsn][ds] = {metric.name:metric.result() for metric in np_metrics_in[clsn]}
class_count_in[clsn][ds] = {metric.name:metric.count for metric in np_metrics_in[clsn]}
print('Classifier metrics IN:\n', class_results_in[clsn][ds])
class_results_out[clsn][ds] = {metric.name:metric.result() for metric in np_metrics_out[clsn]}
class_count_out[clsn][ds] = {metric.name:metric.count for metric in np_metrics_out[clsn]}
print('Classifier metrics OUT:\n', class_results_out[clsn][ds])
class_acc[clsn][ds] = self.atc_metric[clsn].results()
else:
class_results_in = {'noclassifier': None}
class_count_in = {'noclassifier': None}
class_results_out = {'noclassifier': None}
class_count_out = {'noclassifier': None}
class_acc = {'noclassifier': None}
# mts_metrics
for clsn in list(self.classifier.keys()):
mts_results[clsn][ds] = {
'by_no':self.mts_metrics[clsn].result_by_no(),
'by_1':self.mts_metrics[clsn].result_by_1(),
'by_1_2':self.mts_metrics[clsn].result_by_1_2(),
'by_1_3':self.mts_metrics[clsn].result_by_1_3(),
'by_1_2_3':self.mts_metrics[clsn].result_by_1_2_3()}
glob_mts_results[clsn][ds] = {
'by_no':self.glob_mts_metrics[clsn].result_by_no(),
'by_1':self.glob_mts_metrics[clsn].result_by_1(),
'by_1_2':self.glob_mts_metrics[clsn].result_by_1_2(),
'by_1_3':self.glob_mts_metrics[clsn].result_by_1_3(),
'by_1_2_3':self.glob_mts_metrics[clsn].result_by_1_2_3()}
# Center counts is freq dict {lab{class{center}}}
if self.add_centercount:
for clsn in list(self.classifier.keys()):
pio_centers[clsn][ds] = {
'cond_no':self.center_counter_pio[clsn].result_cond_no(),
'cond_1':self.center_counter_pio[clsn].result_cond_1(),
'cond_1_2':self.center_counter_pio[clsn].result_cond_1_2(),
'cond_1_3':self.center_counter_pio[clsn].result_cond_1_3(),
'cond_1_2_3':self.center_counter_pio[clsn].result_cond_1_2_3()}
globpio_centers[clsn][ds] = {
'cond_no':self.glob_center_counter_pio[clsn].result_cond_no(),
'cond_1':self.glob_center_counter_pio[clsn].result_cond_1(),
'cond_1_2':self.glob_center_counter_pio[clsn].result_cond_1_2(),
'cond_1_3':self.glob_center_counter_pio[clsn].result_cond_1_3(),
'cond_1_2_3':self.glob_center_counter_pio[clsn].result_cond_1_2_3()}
else:
pio_centers['noclassifier'][ds] = [None]
globpio_centers['noclassifier'][ds] = [None]
results.close()
i_img = list(makedir.keys())[nclsfier]
mts = mts_results[i_img][ds]
meta=None
glob=None
glob_meta=None
res[new_mod] = {}
for dts, ndts in zip([['global'], ['QS', 'AR', 'FL']],
['cond_no', 'cond_1']):
pioc = pio_centers[i_img][ds][ndts]
hc0 = pioc['info_c0c1']['entropies'][0]
klc01 = pioc['info_c0c1']['kl-div']
klc02 = pioc['info_c0c2']['kl-div']
hc1, hc2 = pioc['info_c1c2']['entropies']
hc2 = pioc['info_c1c2']['entropies'][1]
ic12 = pioc['info_c1c2']['mutual_info']
for dt in dts:
res[new_mod][dt] = {
'hc0': hc0[dt] if isinstance(hc0, dict) else hc0,
'klc01': klc01[dt] if isinstance(klc01, dict) else klc01,
'klc02': klc02[dt] if isinstance(klc02, dict) else klc02,
'hc1': hc1[dt] if isinstance(hc1, dict) else hc1,
'hc2': hc2[dt] if isinstance(hc2, dict) else hc2,
'ic12': ic12[dt] if isinstance(ic12, dict) else ic12
}
np.savez(FLAGS.fname, res=res)
if __name__ == '__main__':
app.run(main)