-
Notifications
You must be signed in to change notification settings - Fork 20
/
mpiLAPI.py
executable file
·113 lines (103 loc) · 4.4 KB
/
mpiLAPI.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
import os
import keras
import glob
import h5py
import hashlib
import time
class mpi_learn_api:
def __init__(self, **args):
args['check'] = time.mktime(time.gmtime())
hash = hashlib.md5(str(args).encode('utf-8')).hexdigest()
#hl = hashlib.md5()
#hl.update(str(args))
#hash = hl.hexdigest()
#hash = hashlib.sha224(bytes(str(args))).hexdigest()
#hash = 'whatthefuck'
cache_dir = args.get('cache_dir','/tmp/')
self.json_file = '%s/%s.json'%(cache_dir, hash)
if os.path.isfile( self.json_file ) :
print ("hash",hash,"cannot work")
sys.exit(1)
self.train_files = '%s/%s_train.list'%(cache_dir,hash)
self.val_files = '%s/%s_val.list'%(cache_dir,hash)
open(self.json_file,'w').write(args['model'].to_json())
if 'train_files' in args:
open(self.train_files,'w').write( '\n'.join(args['train_files']))
elif 'train_pattern' in args:
a_list = sorted(glob.glob( args['train_pattern']))
if args.get('check_file',False): a_list = self._check_files(a_list)
open(self.train_files,'w').write( '\n'.join( a_list ))
else:
self.train_files = args['train_list']
if 'val_files' in args:
open(self.val_files,'w').write( '\n'.join(args['val_files']))
elif 'val_pattern' in args:
a_list = sorted(glob.glob(args['val_pattern']))
if args.get('check_file',False): a_list = self._check_files(a_list)
open(self.val_files,'w').write( '\n'.join( a_list ))
else:
self.val_files = args['val_list']
def _check_files(self, a_list):
for fn in sorted(a_list):
try:
f = h5py.File(fn)
l = sorted(f.keys())
assert len(l)!=0
f.close()
except:
print (fn,"not usable")
a_list.remove(fn)
return a_list
def train(self, **args):
hf = args.get('hostfile',None)
base_mpi = ' --hostfile %s'%hf if hf else ''
com = 'mpirun %s -n %d %s mpi_learn/MPIDriver.py %s %s %s'%(
base_mpi,
args.get('N', 2),
"-host %s"%args.get('hosts') if args.get('hosts','') else "",
self.json_file,
self.train_files,
self.val_files
)
for option,default in { 'trial_name' : 'mpi_run',
'master_gpu' : True,
'features_name' : 'X',
'labels_name' : 'Y',
'epoch' : 100,
'batch' : 100,
'max_gpus' : 8,
'tf' :False
}.items():
v = args.get(option,default)
if type(v)==bool:
com +=' --%s'%option.replace('_','-') if v else ''
else:
com+=' --%s %s'%(option.replace('_','-'), v)
print (com)
os.system( com )
if __name__ == "__main__":
import sys
args = {}
for k in sys.argv:
if '=' in k:
key,v = k.split('=')
args[key] = v
from keras.models import model_from_json
model = model_from_json( open('cnn.json').read())
mlapi = mpi_learn_api( model = model,
train_pattern = '/bigdata/shared/Delphes/np_datasets_old2/3_way/MaxLepDeltaR_des/train/images/*_*.h5',
val_pattern = '/bigdata/shared/Delphes/np_datasets_old2/3_way/MaxLepDeltaR_des/val/images/*_*.h5',
#train_pattern = '/data/shared/Delphes/np_datasets_new/3_way/MaxLepDeltaR_des/train/images/*_*.h5',
#val_pattern = '/data/shared/Delphes/np_datasets_new/3_way/MaxLepDeltaR_des/val/images/*_*.h5',
check_file = True,
cache_dir = '/nfshome/vlimant/.mpiLAPI/'
)
mlapi.train(N=int(args.get('N',4)),
trial_name = 'with_api',
features_name = 'Images',
labels_name = 'Labels',
batch = 200,
#tf = True,
max_gpus = int(args.get('gpus',8)),
hosts=args.get('host','')#mpi-culture-plate-sm,mpi-imperium-sm,mpi-passed-pawn-klmx'
)