-
Notifications
You must be signed in to change notification settings - Fork 19
/
utils.py
576 lines (515 loc) · 21.5 KB
/
utils.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
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
import configparser
import os
import numpy as np
from subprocess import Popen, PIPE
from genetic.population import Population, Individual, DenseUnit, ResUnit, PoolUnit
import logging
import sys
import multiprocessing
import time
class StatusUpdateTool(object):
@classmethod
def clear_config(cls):
config = configparser.ConfigParser()
config.read('global.ini')
secs = config.sections()
for sec_name in secs:
if sec_name == 'evolution_status' or sec_name == 'gpu_running_status':
item_list = config.options(sec_name)
for item_name in item_list:
config.set(sec_name, item_name, " ")
config.write(open('global.ini', 'w'))
@classmethod
def __write_ini_file(cls, section, key, value):
config = configparser.ConfigParser()
config.read('global.ini')
config.set(section, key, value)
config.write(open('global.ini', 'w'))
@classmethod
def __read_ini_file(cls, section, key):
config = configparser.ConfigParser()
config.read('global.ini')
return config.get(section, key)
@classmethod
def begin_evolution(cls):
section = 'evolution_status'
key = 'IS_RUNNING'
cls.__write_ini_file(section, key, "1")
@classmethod
def end_evolution(cls):
section = 'evolution_status'
key = 'IS_RUNNING'
cls.__write_ini_file(section, key, "0")
@classmethod
def is_evolution_running(cls):
rs = cls.__read_ini_file('evolution_status', 'IS_RUNNING')
if rs == '1':
return True
else:
return False
@classmethod
def get_resnet_limit(cls):
rs = cls.__read_ini_file('network', 'resnet_limit')
resnet_limit = []
for i in rs.split(','):
resnet_limit.append(int(i))
return resnet_limit[0], resnet_limit[1]
@classmethod
def get_pool_limit(cls):
rs = cls.__read_ini_file('network', 'pool_limit')
pool_limit = []
for i in rs.split(','):
pool_limit.append(int(i))
return pool_limit[0], pool_limit[1]
@classmethod
def get_densenet_limit(cls):
rs = cls.__read_ini_file('network', 'densenet_limit')
densenet_limit = []
for i in rs.split(','):
densenet_limit.append(int(i))
return densenet_limit[0], densenet_limit[1]
@classmethod
def get_resnet_unit_length_limit(cls):
rs = cls.__read_ini_file('resnet_configuration', 'unit_length_limit')
resnet_unit_length_limit = []
for i in rs.split(','):
resnet_unit_length_limit.append(int(i))
return resnet_unit_length_limit[0], resnet_unit_length_limit[1]
@classmethod
def get_densenet_k_list(cls):
rs = cls.__read_ini_file('densenet_configuration', 'k_list')
k_list = []
for i in rs.split(','):
k_list.append(int(i))
return k_list
@classmethod
def get_densenet_k12(cls):
rs = cls.__read_ini_file('densenet_configuration', 'k_12')
k12_limit = []
for i in rs.split(','):
k12_limit.append(int(i))
return k12_limit[0], k12_limit[1], k12_limit[2]
@classmethod
def get_densenet_k20(cls):
rs = cls.__read_ini_file('densenet_configuration', 'k_20')
k20_limit = []
for i in rs.split(','):
k20_limit.append(int(i))
return k20_limit[0], k20_limit[1], k20_limit[2]
@classmethod
def get_densenet_k40(cls):
rs = cls.__read_ini_file('densenet_configuration', 'k_40')
k40_limit = []
for i in rs.split(','):
k40_limit.append(int(i))
return k40_limit[0], k40_limit[1], k40_limit[2]
@classmethod
def get_output_channel(cls):
rs = cls.__read_ini_file('network', 'output_channel')
channels = []
for i in rs.split(','):
channels.append(int(i))
return channels
@classmethod
def get_input_channel(cls):
rs = cls.__read_ini_file('network', 'input_channel')
return int(rs)
@classmethod
def get_num_class(cls):
rs = cls.__read_ini_file('network', 'num_class')
return int(rs)
@classmethod
def get_input_size(cls):
rs = cls.__read_ini_file('network', 'input_size')
return int(rs)
@classmethod
def get_pop_size(cls):
rs = cls.__read_ini_file('settings', 'pop_size')
return int(rs)
@classmethod
def get_epoch_size(cls):
rs = cls.__read_ini_file('network', 'epoch')
return int(rs)
@classmethod
def get_individual_max_length(cls):
rs = cls.__read_ini_file('network', 'max_length')
return int(rs)
@classmethod
def get_genetic_probability(cls):
rs = cls.__read_ini_file('settings', 'genetic_prob').split(',')
p = [float(i) for i in rs]
return p
@classmethod
def get_init_params(cls):
params = {}
params['pop_size'] = cls.get_pop_size()
params['max_len'] = cls.get_individual_max_length()
params['image_channel'] = cls.get_input_channel()
params['output_channel'] = cls.get_output_channel()
params['genetic_prob'] = cls.get_genetic_probability()
params['min_resnet'], params['max_resnet'] = cls.get_resnet_limit()
params['min_pool'], params['max_pool'] = cls.get_pool_limit()
params['min_densenet'], params['max_densenet'] = cls.get_densenet_limit()
params['min_resnet_unit'], params['max_resnet_unit'] = cls.get_resnet_unit_length_limit()
params['k_list'] = cls.get_densenet_k_list()
params['max_k12_input_channel'], params['min_k12'], params['max_k12'] = cls.get_densenet_k12()
params['max_k20_input_channel'], params['min_k20'], params['max_k20'] = cls.get_densenet_k20()
params['max_k40_input_channel'], params['min_k40'], params['max_k40'] = cls.get_densenet_k40()
return params
@classmethod
def get_mutation_probs_for_each(cls):
"""
defined the particular probabilities for each type of mutation
the mutation occurs at:
-- add
-- remove
-- alter
"""
rs = cls.__read_ini_file('settings', 'mutation_probs').split(',')
assert len(rs) == 3
mutation_prob_list = [float(i) for i in rs]
return mutation_prob_list
class Log(object):
_logger = None
@classmethod
def __get_logger(cls):
if Log._logger is None:
logger = logging.getLogger("EvoCNN")
formatter = logging.Formatter('%(asctime)s %(levelname)-8s: %(message)s')
file_handler = logging.FileHandler("main.log")
file_handler.setFormatter(formatter)
console_handler = logging.StreamHandler(sys.stdout)
console_handler.formatter = formatter
logger.addHandler(file_handler)
logger.addHandler(console_handler)
logger.setLevel(logging.INFO)
Log._logger = logger
return logger
else:
return Log._logger
@classmethod
def info(cls, _str):
cls.__get_logger().info(_str)
@classmethod
def warn(cls, _str):
cls.__get_logger().warn(_str)
class GPUTools(object):
@classmethod
def _get_available_gpu_plain_info(cls):
gpu_info_list = []
#read the information
p = Popen('nvidia-smi', stdout=PIPE)
output_info = p.stdout.read().decode('UTF-8')
lines = output_info.split(os.linesep)
for line_no in range(len(lines)-3, -1, -1):
if lines[line_no].startswith('|==='):
break
else:
gpu_info_list.append(lines[line_no][1:-1].strip())
#parse the information
print(gpu_info_list)
if len(gpu_info_list) == 1:
if gpu_info_list[0].startswith('No'): #GPU outputs: No running processes found
return 10000 # indicating all the gpus are available
else:
info_array = gpu_info_list[0].split(' ', 1)
if info_array[0] == '0':
Log.info('GPU_QUERY-GPU#1 and # are available, choose GPU#1')
return 1
elif info_array[0] == '1':
Log.info('GPU_QUERY-GPU#0 and #2 is available, choose GPU#2')
return 2
else:
Log.info('GPU_QUERY-GPU#0 and #1 is available, choose GPU#0')
return 0
elif len(gpu_info_list) == 2:
info_array1 = gpu_info_list[0].split(' ', 1)
info_array2 = gpu_info_list[1].split(' ', 1)
gpu_use_list = [info_array1[0], info_array2[0]]
if '0' not in gpu_use_list:
Log.info('GPU_QUERY-GPU#0 is available')
return 0
if '1' not in gpu_use_list:
Log.info('GPU_QUERY-GPU#1 is available')
return 1
if '2' not in gpu_use_list:
Log.info('GPU_QUERY-GPU#2 is available')
return 2
else:
Log.info('GPU_QUERY-No available GPU')
return None
@classmethod
def all_gpu_available(cls):
plain_info = cls._get_available_gpu_plain_info()
if plain_info is not None and plain_info == 10000:
Log.info('GPU_QUERY-None of the GPU is occupied')
return True
else:
return False
@classmethod
def detect_availabel_gpu_id(cls):
plain_info = cls._get_available_gpu_plain_info()
if plain_info is None:
return None
elif plain_info == 10000:
Log.info('GPU_QUERY-None of the GPU is occupied, return the first one')
Log.info('GPU_QUERY-GPU#0 is available')
return 0
else:
return plain_info
class Utils(object):
_lock = multiprocessing.Lock()
@classmethod
def get_lock_for_write_fitness(cls):
return cls._lock
@classmethod
def load_cache_data(cls):
file_name = './populations/cache.txt'
_map = {}
if os.path.exists(file_name):
f = open(file_name, 'r')
for each_line in f:
rs_ = each_line.strip().split(';')
_map[rs_[0]] = '%.5f'%(float(rs_[1]))
f.close()
return _map
@classmethod
def save_fitness_to_cache(cls, individuals):
_map = cls.load_cache_data()
for indi in individuals:
_key,_str = indi.uuid()
_acc = indi.acc
if _key not in _map:
Log.info('Add record into cache, id:%s, acc:%.5f'%(_key, _acc))
f = open('./populations/cache.txt', 'a+')
_str = '%s;%.5f;%s\n'%(_key, _acc, _str)
f.write(_str)
f.close()
_map[_key] = _acc
@classmethod
def save_population_at_begin(cls, _str, gen_no):
file_name = './populations/begin_%02d.txt'%(gen_no)
with open(file_name, 'w') as f:
f.write(_str)
@classmethod
def save_population_after_crossover(cls, _str, gen_no):
file_name = './populations/crossover_%02d.txt'%(gen_no)
with open(file_name, 'w') as f:
f.write(_str)
@classmethod
def save_population_after_mutation(cls, _str, gen_no):
file_name = './populations/mutation_%02d.txt'%(gen_no)
with open(file_name, 'w') as f:
f.write(_str)
@classmethod
def get_newest_file_based_on_prefix(cls, prefix):
id_list = []
for _, _, file_names in os.walk('./populations'):
for file_name in file_names:
if file_name.startswith(prefix):
id_list.append(int(file_name[6:8]))
if len(id_list) == 0:
return None
else:
return np.max(id_list)
@classmethod
def load_population(cls, prefix, gen_no):
file_name = './populations/%s_%02d.txt'%(prefix, np.min(gen_no))
params = StatusUpdateTool.get_init_params()
pop = Population(params, gen_no)
f = open(file_name)
indi_start_line = f.readline().strip()
while indi_start_line.startswith('indi'):
indi_no = indi_start_line[5:]
indi = Individual(params, indi_no)
for line in f:
line = line.strip()
if line.startswith('--'):
indi_start_line = f.readline().strip()
break
else:
if line.startswith('Acc'):
indi.acc = float(line[4:])
elif line.startswith('[densenet'):
data_maps = line[10:-1].split(',', 5)
densenet_params = {}
for data_item in data_maps:
_key, _value = data_item.split(":")
if _key == 'number':
indi.number_id = int(_value)
densenet_params['number'] = int(_value)
elif _key == 'amount':
densenet_params['amount'] = int(_value)
elif _key == 'k':
densenet_params['k'] = int(_value)
elif _key == 'in':
densenet_params['in_channel'] = int(_value)
elif _key == 'out':
densenet_params['out_channel'] = int(_value)
else:
raise ValueError('Unknown key for load conv unit, key_name:%s'%( _key))
# get max_input_channel
if densenet_params['k'] == 12:
rs = StatusUpdateTool.get_densenet_k12()
densenet_params['max_input_channel'] = rs[0]
elif densenet_params['k'] == 20:
rs = StatusUpdateTool.get_densenet_k20()
densenet_params['max_input_channel'] = rs[0]
elif densenet_params['k'] == 40:
rs = StatusUpdateTool.get_densenet_k40()
densenet_params['max_input_channel'] = rs[0]
densenet = DenseUnit(number=densenet_params['number'], amount=densenet_params['amount'],\
k=densenet_params['k'], max_input_channel=densenet_params['max_input_channel'], \
in_channel=densenet_params['in_channel'], out_channel=densenet_params['out_channel'])
indi.units.append(densenet)
elif line.startswith('[resnet'):
data_maps = line[8:-1].split(',', 4)
resnet_params = {}
for data_item in data_maps:
_key, _value = data_item.split(":")
if _key == 'number':
indi.number_id = int(_value)
resnet_params['number'] = int(_value)
elif _key == 'amount':
resnet_params['amount'] = int(_value)
elif _key == 'in':
resnet_params['in_channel'] = int(_value)
elif _key == 'out':
resnet_params['out_channel'] = int(_value)
else:
raise ValueError('Unknown key for load conv unit, key_name:%s'%( _key))
resnet = ResUnit(number=resnet_params['number'], amount=resnet_params['amount'], \
in_channel=resnet_params['in_channel'], out_channel=resnet_params['out_channel'])
indi.units.append(resnet)
elif line.startswith('[pool'):
pool_params = {}
for data_item in line[6:-1].split(','):
_key, _value = data_item.split(':')
if _key =='number':
indi.number_id = int(_value)
pool_params['number'] = int(_value)
elif _key == 'type':
pool_params['max_or_avg'] = float(_value)
else:
raise ValueError('Unknown key for load pool unit, key_name:%s'%( _key))
pool = PoolUnit(pool_params['number'], pool_params['max_or_avg'])
indi.units.append(pool)
else:
print('Unknown key for load unit type, line content:%s'%(line))
pop.individuals.append(indi)
f.close()
# load the fitness to the individuals who have been evaluated, only suitable for the first generation
if gen_no == 0:
after_file_path = './populations/after_%02d.txt'%(gen_no)
if os.path.exists(after_file_path):
fitness_map = {}
f = open(after_file_path)
for line in f:
if len(line.strip()) > 0:
line = line.strip().split('=')
fitness_map[line[0]] = float(line[1])
f.close()
for indi in pop.individuals:
if indi.id in fitness_map:
indi.acc = fitness_map[indi.id]
return pop
@classmethod
def read_template(cls):
_path = './template/cifar10.py'
part1 = []
part2 = []
part3 = []
f = open(_path)
f.readline() #skip this comment
line = f.readline().rstrip()
while line.strip() != '#generated_init':
part1.append(line)
line = f.readline().rstrip()
#print('\n'.join(part1))
line = f.readline().rstrip() #skip the comment '#generated_init'
while line.strip() != '#generate_forward':
part2.append(line)
line = f.readline().rstrip()
#print('\n'.join(part2))
line = f.readline().rstrip() #skip the comment '#generate_forward'
while line.strip() != '"""':
part3.append(line)
line = f.readline().rstrip()
#print('\n'.join(part3))
return part1, part2, part3
@classmethod
def generate_pytorch_file(cls, indi):
#query resnet and densenet unit
unit_list = []
for index, u in enumerate(indi.units):
if u.type ==1:
layer = 'self.op%d = ResNetUnit(amount=%d, in_channel=%d, out_channel=%d)'%(index, u.amount, u.in_channel, u.out_channel)
unit_list.append(layer)
elif u.type ==3:
layer = 'self.op%d = DenseNetUnit(k=%d, amount=%d, in_channel=%d, out_channel=%d, max_input_channel=%d)'%(index, u.k, u.amount, u.in_channel, u.out_channel, u.max_input_channel)
unit_list.append(layer)
#print('\n'.join(unit_list))
#query fully-connect layer
out_channel_list = []
image_output_size = StatusUpdateTool.get_input_size()
for u in indi.units:
if u.type == 1:
out_channel_list.append(u.out_channel)
elif u.type == 3:
out_channel_list.append(u.out_channel)
else:
out_channel_list.append(out_channel_list[-1])
image_output_size = int(image_output_size/2)
fully_layer_name = 'self.linear = nn.Linear(%d, %d)'%(image_output_size*image_output_size*out_channel_list[-1], StatusUpdateTool.get_num_class())
#print(fully_layer_name, out_channel_list, image_output_size)
#generate the forward part
forward_list = []
for i, u in enumerate(indi.units):
if i == 0:
last_out_put = 'x'
else:
last_out_put = 'out_%d'%(i-1)
if u.type ==1:
_str = 'out_%d = self.op%d(%s)'%(i, i, last_out_put)
forward_list.append(_str)
elif u.type == 3:
_str = 'out_%d = self.op%d(%s)'%(i, i, last_out_put)
forward_list.append(_str)
else:
if u.max_or_avg < 0.5:
_str = 'out_%d = F.max_pool2d(out_%d, 2)'%(i, i-1)
else:
_str = 'out_%d = F.avg_pool2d(out_%d, 2)'%(i, i-1)
forward_list.append(_str)
forward_list.append('out = out_%d'%(len(indi.units)-1))
#print('\n'.join(forward_list))
part1, part2, part3 = cls.read_template()
_str = []
current_time = time.strftime("%Y-%m-%d %H:%M:%S")
_str.append('"""')
_str.append(current_time)
_str.append('"""')
_str.extend(part1)
_str.append('\n %s'%('#resnet and densenet unit'))
for s in unit_list:
_str.append(' %s'%(s))
_str.append('\n %s'%('#linear unit'))
_str.append(' %s'%(fully_layer_name))
_str.extend(part2)
for s in forward_list:
_str.append(' %s'%(s))
_str.extend(part3)
#print('\n'.join(_str))
file_name = './scripts/%s.py'%(indi.id)
script_file_handler = open(file_name, 'w')
script_file_handler.write('\n'.join(_str))
script_file_handler.flush()
script_file_handler.close()
@classmethod
def write_to_file(cls, _str, _file):
f = open(_file, 'w')
f.write(_str)
f.flush()
f.close()
if __name__ == '__main__':
GPUTools.detect_availabel_gpu_id()