-
Notifications
You must be signed in to change notification settings - Fork 40
/
DataCollection.py
645 lines (517 loc) · 23 KB
/
DataCollection.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
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
'''
Created on 21 Feb 2017
@author: jkiesele
'''
from DeepJetCore.TrainData import TrainData
from DeepJetCore.dataPipeline import TrainDataGenerator
import tempfile
import pickle
import shutil
import os
import copy
import time
import logging
from DeepJetCore.stopwatch import stopwatch
logger = logging.getLogger(__name__)
class DataCollection(object):
'''
classdocs
'''
def __init__(self, infile = None, nprocs = -1):
'''
Constructor
'''
self.clear()
self.istestdata=False
self.batch_uses_sum_of_squares=False
self.gen = None
self.__batchsize=1
self.optionsdict={}
self.weighterobjects={}
self.batch_mode = False
self.nprocs=-1
self.no_copy_on_convert=True
if infile:
self.readFromFile(infile)
if not len(self.samples):
raise Exception("no valid datacollection found in "+infile)
def setDataClass(self, dataclass):
self.dataclass = dataclass
self.dataclass_instance = self.dataclass()
def clear(self):
self.samples=[]
self.sourceList=[]
self.dataDir=""
self.dataclass = TrainData
self.dataclass_instance = self.dataclass()
self.__nsamples = 0
def __iadd__(self, other):
'A += B'
if not isinstance(other, DataCollection):
raise ValueError("I don't know how to add DataCollection and %s" % type(other))
def _extend_(a, b, name):
getattr(a, name).extend(getattr(b, name))
_extend_(self, other, 'samples')
if len(set(self.samples)) != len(self.samples):
raise ValueError('The two DataCollections being summed contain the same files!')
_extend_(self, other, 'sourceList')
if self.dataDir != other.dataDir:
raise ValueError('The two DataCollections have different data directories, still to be implemented!')
#if type(self.dataclass) != type(other.dataclass):
# raise ValueError(
# 'The two DataCollections were made with a'
# ' different data class type! (%s, and %s)' % (type(self.dataclass), type(other.dataclass))
# )
return self
def __add__(self, other):
'A+B'
if not isinstance(other, DataCollection):
raise ValueError("I don't know how to add DataCollection and %s" % type(other))
ret = copy.deepcopy(self)
ret += other
return ret
def __radd__(self, other):
'B+A to work with sum'
if other == 0:
return copy.deepcopy(self)
elif isinstance(other, DataCollection):
return self + other #we use the __add__ method
else:
raise ValueError("I don't know how to add DataCollection and %s" % type(other))
def __len__(self):
return len(self.samples)
def _readMetaInfoIfNeeded(self):
if len(self.samples)<1:
return
if self.dataclass_instance is None:
self.dataclass_instance = self.dataclass()
if self.dataclass_instance.nElements() < 1:
self.dataclass_instance.readMetaDataFromFile(self.getSamplePath(self.samples[0]))
def _readNTotal(self):
if not len(self.samples):
return 0
gen = trainDataGenerator()
gen.setFileList([self.dataDir+"/"+s for s in self.samples])
return gen.getNTotal()
def removeLast(self):
self.samples.pop()
self.sourceList.pop()
def getNumpyFeatureShapes(self):
if len(self.samples)<1:
raise Exception("DataCollection.getNumpyFeatureShapes: no files")
return []
self._readMetaInfoIfNeeded()
return self.dataclass_instance.getNumpyFeatureShapes()
def getNumpyFeatureDTypes(self):
if len(self.samples)<1:
raise Exception("DataCollection.getNumpyFeatureDTypes: no files")
return []
self._readMetaInfoIfNeeded()
return self.dataclass_instance.getNumpyFeatureDTypes()
def getNumpyFeatureArrayNames(self):
if len(self.samples)<1:
raise Exception("DataCollection.getNumpyFeatureNames: no files")
return []
self._readMetaInfoIfNeeded()
return self.dataclass_instance.getNumpyFeatureArrayNames()
def getKerasFeatureDTypes(self):
print('DataCollection.getKerasFeatureDTypes: deprecation warning, use getNumpyFeatureArrayNames')
return self.getNumpyFeatureDTypes()
def getKerasFeatureShapes(self):
print('DataCollection.getKerasFeatureShapes: deprecation warning, use getNumpyFeatureArrayNames')
return self.getNumpyFeatureShapes()
def getKerasFeatureArrayNames(self):
print('DataCollection.getKerasFeatureArrayNames: deprecation warning, use getNumpyFeatureArrayNames')
return self.getNumpyFeatureArrayNames()
def getInputShapes(self):
print('DataCollection:getInputShapes deprecated, use getNumpyFeatureShapes ')
return self.getNumpyFeatureShapes()
def setBatchSize(self,bsize):
self.__batchsize=bsize
def getBatchSize(self):
return self.__batchsize
def validate(self, remove=True, skip_first=0):
'''
checks if all samples in the collection can be read properly.
removes the invalid samples from the sample list.
Also removes the original link to the root file, so recover cannot be run
(this might be changed in future implementations)
'''
validsourcelist = len(self.samples) == len(self.sourceList)
newsamples=[]
newsources=[]
for i in range(len(self.samples)):
if i < skip_first: continue
td = self.dataclass ()
fullpath=self.getSamplePath(self.samples[i])
print('reading '+fullpath, str(i), '/', str(len(self.samples)))
try:
td.readFromFile(fullpath)
if hasattr(td, "isValid"):
if not td.isValid():
raise Exception("data validation failed for "+fullpath)
if td.nElements() < 1:
print("warning, no data in file "+fullpath)
del td
newsamples.append(self.samples[i])
if validsourcelist:
newsources.append(self.sourceList[i])
continue
except Exception as e:
print('problem with file, removing ', fullpath)
self.samples = newsamples
self.newsources = newsources
def removeEntry(self,relative_path_to_entry):
for i in range(len(self.samples)):
if relative_path_to_entry==self.samples[i]:
print('removing '+self.samples[i])
del self.samples[i]
del self.sourceList[i]
break
def writeToFile(self,filename,abspath=False):
with tempfile.NamedTemporaryFile(mode='wb', delete=False) as fd:
if not abspath:
pickle.dump(self.samples, fd,protocol=0 )
else:
pickle.dump([self.getSamplePath(s) for s in self.samples], fd,protocol=0 )
pickle.dump(self.sourceList, fd,protocol=0 )
pickle.dump(self.dataclass, fd,protocol=0 )
pickle.dump(self.weighterobjects, fd, protocol=0)
pickle.dump(self.__batchsize, fd, protocol=0)
pickle.dump(self.batch_uses_sum_of_squares, fd, protocol=0)
pickle.dump(self.optionsdict, fd, protocol=0)
shutil.move(fd.name, filename)
os.chmod(filename, 0o644)
def readFromFile(self,filename):
fd=open(filename,'rb')
self.samples=pickle.load(fd)
self.sourceList=pickle.load(fd)
try:
self.dataclass=pickle.load(fd)
self.weighterobjects=pickle.load(fd)
self.__batchsize = pickle.load(fd)
self.batch_uses_sum_of_squares = pickle.load(fd)
self.optionsdict = pickle.load(fd)
except Exception as e:
print(e)
print("WARNING: wrong dataCollection format. Can still be used for training, but it is advised to recreate it: this is possible without converting the original data again using the script createDataCollectionFromTD.py (takes a few seconds)\nBookkeeping (e.g. for predict) will be broken unless data collection is updated to new format.")
finally:
fd.close()
self.dataDir=os.path.dirname(os.path.abspath(filename))
self.dataDir+='/'
def readSourceListFromFile(self, file, relpath='', checkfiles=False):
self.samples=[]
self.sourceList=[]
self.__nsamples=0
self.dataDir=""
td=self.dataclass()
fdir=os.path.dirname(file)
fdir=os.path.abspath(fdir)
fdir=os.path.realpath(fdir)
lines = [(line.rstrip('\n')).rstrip(' ') for line in open(file)]
for line in lines:
if len(line) < 1: continue
if relpath:
self.sourceList.append(os.path.join(relpath, line))
else:
self.sourceList.append(line)
if len(self.sourceList)<1:
raise Exception('source samples list empty')
if checkfiles:
print('DataCollection: checking files')
self.sourceList=self.checkSourceFiles()
def checkSourceFiles(self):
td=self.dataclass()
newsamples=[]
for s in self.sourceList:
logger.info('checking '+self.getSamplePath(s))
if td.fileIsValid(self.getSamplePath(s)):
newsamples.append(s)
else:
print('source file '+s+' seems to be broken, will skip processing it')
return newsamples
def split(self,ratio):
'''
out fraction is (1-ratio)
returns out
modifies self
'''
nin = int(len(self.samples)*(ratio))
if nin < 1:
raise ValueError("DataCollection:split: less than one sample would remain")
if nin == len(self.samples):
raise ValueError("DataCollection:split: less than one sample would be assigned to output")
out=DataCollection()
out.dataDir = self.dataDir
out.dataclass = self.dataclass #anyway just a dummy
out.samples = self.samples[nin:]
self.samples = self.samples[:nin]
if len(self.sourceList) == len(self.samples):
out.sourceList = self.sourceList[nin:]
self.sourceList = self.sourceList[:nin]
else:
self.sourceList = []
out.sourceList = []
#force re-read upon request
self.__nsamples = 0
out.__nsamples = 0
out.weighterobjects = copy.deepcopy(self.weighterobjects)
return out
def recoverCreateDataFromRootFromSnapshot(self, snapshotfile):
snapshotfile=os.path.abspath(snapshotfile)
self.readFromFile(snapshotfile)
if len(self.sourceList) < 1:
return
outputDir=os.path.dirname(snapshotfile)+'/'
self.dataDir=outputDir
finishedsamples=len(self.samples)
self.__writeData_async_andCollect(finishedsamples,outputDir)
self.writeToFile(outputDir+'/dataCollection.djcdc')
def getAllLabels(self,nfiles=-1):
return self.extract_features(self.dataclass,'y',nfiles)
def getAllFeatures(self,nfiles=-1):
return self.extract_features(self.dataclass,'x',nfiles)
def getAllWeights(self,nfiles=-1):
return self.extract_features(self.dataclass,'w',nfiles)
def createDataFromRoot(
self, dataclass, outputDir,
redo_meansandweights=True, means_only=False, dir_check=True
):
'''
Also creates a file list of the output files
After the operation, the object will point to the already processed
files (not root files)
Writes out a snapshot of itself after every successfully written output file
to recover the data until a possible error occurred
'''
if len(self.sourceList) < 1:
print('createDataFromRoot: no input root file')
raise Exception('createDataFromRoot: no input root file')
outputDir+='/'
if os.path.isdir(outputDir) and dir_check:
raise Exception('output dir must not exist')
elif not os.path.isdir(outputDir):
os.mkdir(outputDir)
self.dataDir=outputDir
self.samples=[]
self.dataclass=dataclass
td=self.dataclass()
self.weighterobjects = td.createWeighterObjects(self.sourceList)
if self.batch_mode:
for sample in self.sourceList:
self.__writeData(sample, outputDir)
else:
self.__writeData_async_andCollect(0, outputDir)
def __writeData(self, sample, outputDir):
sw=stopwatch()
td=self.dataclass()
fileTimeOut(sample,120) #once available copy to ram
sbasename = os.path.basename(sample)
newname = sbasename[:sbasename.rfind('.')]+'.djctd'
newpath=os.path.abspath(outputDir+newname)
td.writeFromSourceFile(sample, self.weighterobjects, istraining=not self.istestdata, outname=newpath)
print('converted and written '+newname+' in ',sw.getAndReset(),' sec')
self.samples.append(newname)
td.clear()
if not self.batch_mode:
self.writeToFile(outputDir+'/snapshot.djcdc')
def __writeData_async_andCollect(self, startindex, outputDir):
td=self.dataclass()
if self.nprocs == 1 or (hasattr(td, "no_fork") and td.no_fork):#no need to fork
for sample in self.sourceList:
sbasename = os.path.basename(sample)
newname = sbasename[:sbasename.rfind('.')]+'.djctd'
newpath=os.path.abspath(outputDir+newname)
logger.info('convertFromSourceFile'+sample)
td.writeFromSourceFile(sample, self.weighterobjects, istraining = not self.istestdata, outname=newpath)
self.samples.append(newname)
self.writeToFile(outputDir+'/snapshot.djcdc')
td.clear()
self.writeToFile(outputDir+'/dataCollection.djcdc')
return
from multiprocessing import Process, Queue, cpu_count, Lock
wo_queue = Queue()
writelock=Lock()
thispid=str(os.getpid())
if not self.batch_mode and not os.path.isfile(outputDir+'/snapshot.djcdc'):
self.writeToFile(outputDir+'/snapshot.djcdc')
tempstoragepath='/dev/shm/'+thispid
logger.info('creating dir '+tempstoragepath)
os.system('mkdir -p '+tempstoragepath)
def writeData_async(index,woq,wrlck):
logger.info('async started')
sw=stopwatch()
td=self.dataclass()
sample=self.sourceList[index]
if self.batch_mode or self.no_copy_on_convert:
tmpinput = sample
def removefile():
pass
else:
tmpinput = tempstoragepath+'/'+str(os.getpid())+'_tmp_'+os.path.basename(sample)
def removefile():
os.system('rm -f '+tmpinput)
import atexit
atexit.register(removefile)
logger.info('start cp')
os_ret=os.system('cp '+sample+' '+tmpinput)
if os_ret:
raise Exception("copy to ramdisk not successful for "+sample)
success=False
out_samplename=''
out_sampleentries=0
sbasename = os.path.basename(sample)
newname = sbasename[:sbasename.rfind('.')]+'.djctd'
newpath=os.path.abspath(outputDir+newname)
try:
logger.info('convertFromSourceFile')
td.writeFromSourceFile(tmpinput, self.weighterobjects, istraining = not self.istestdata, outname=newpath)
print('converted and written '+newname+' in ',sw.getAndReset(),' sec -', index)
out_samplename=newname
out_sampleentries=1
success=True
td.clear()
removefile()
woq.put((index,[success,out_samplename,out_sampleentries]))
except:
print('problem in '+newname)
removefile()
woq.put((index,[False,out_samplename,out_sampleentries]))
raise
def __collectWriteInfo(successful,samplename,sampleentries,outputDir):
if not successful:
raise Exception("write not successful, stopping")
self.samples.append(samplename)
if not self.batch_mode:
self.writeToFile(outputDir+'/snapshot_tmp.djcdc')#avoid to overwrite directly
os.system('mv '+outputDir+'/snapshot_tmp.djcdc '+outputDir+'/snapshot.djcdc')
processes=[]
processrunning=[]
processfinished=[]
for i in range(startindex,len(self.sourceList)):
processes.append(Process(target=writeData_async, args=(i,wo_queue,writelock) ) )
processrunning.append(False)
processfinished.append(False)
nchilds = int(cpu_count()/2)-2 if self.nprocs <= 0 else self.nprocs
#if 'nvidiagtx1080' in os.getenv('HOSTNAME'):
# nchilds=cpu_count()-5
if nchilds<1:
nchilds=1
#nchilds=10
lastindex=startindex-1
alldone=False
results=[]
try:
while not alldone:
nrunning=0
for runs in processrunning:
if runs: nrunning+=1
for i in range(len(processes)):
if nrunning>=nchilds:
break
if processrunning[i]:continue
if processfinished[i]:continue
time.sleep(0.1)
logging.info('starting %s...' % self.sourceList[startindex+i])
processes[i].start()
processrunning[i]=True
nrunning+=1
if not wo_queue.empty():
res=wo_queue.get()
results.append(res)
originrootindex=res[0]
logging.info('finished %s...' % self.sourceList[originrootindex])
processfinished[originrootindex-startindex]=True
processes [originrootindex-startindex].join(5)
processrunning [originrootindex-startindex]=False
#immediately send the next
continue
results = sorted(results, key=lambda x:x[0])
for r in results:
thisidx=r[0]
if thisidx==lastindex+1:
logging.info('>>>> collected result %d of %d' % (thisidx+1,len(self.sourceList)))
__collectWriteInfo(r[1][0],r[1][1],r[1][2],outputDir)
lastindex=thisidx
if nrunning==0:
alldone=True
continue
time.sleep(0.1)
except:
os.system('rm -rf '+tempstoragepath)
raise
os.system('rm -rf '+tempstoragepath)
def convertListOfRootFiles(self, inputfile, dataclass, outputDir,
takeweightersfrom='', means_only=False,
output_name='dataCollection.djcdc',
relpath='', checkfiles=False):
newmeans=True
if takeweightersfrom:
self.readFromFile(takeweightersfrom)
newmeans=False
self.dataclass = dataclass
self.readSourceListFromFile(inputfile, relpath=relpath,checkfiles=checkfiles)
self.createDataFromRoot(
dataclass, outputDir,
newmeans, means_only = means_only,
dir_check= not self.batch_mode
)
self.writeToFile(outputDir+'/'+output_name)
def getSamplePath(self,samplefile):
#for backward compatibility
if samplefile[0] == '/':
return samplefile
return self.dataDir+'/'+samplefile
def extract_features(self, dataclass, selector,nfiles):
import numpy as np
td=self.dataclass()
firstcall=True
count = 0
for sample in self.samples:
count+=1;
td.readFromFile(self.getSamplePath(sample))
#make this generic
thislist=[]
if selector == 'x':
thislist=td.transferFeatureListToNumpy(False)
if selector == 'y':
thislist=td.transferTruthListToNumpy(False)
if selector == 'w':
thislist=td.transferWeightListToNumpy(False)
if firstcall:
out=thislist
firstcall=False
else:
for i in range(0,len(thislist)):
if len(thislist[i].shape) > 1:
out[i] = np.vstack( (out[i], thislist[i] ) )
else:
out[i] = np.append(out[i],thislist[i])
if nfiles > 0:
if count > nfiles:
break
return out
def __stackData(self, dataclass, selector):
td=self.dataclass()
out=[]
firstcall=True
for sample in self.samples:
td2 = self.dataclass()
td2.readFromFile(self.getSamplePath(sample))
td.append(td2)
return td
def invokeGenerator(self, *args, **kwargs):
generator = TrainDataGenerator( *args,
cast_to=self.dataclass,
**kwargs)
generator.setBatchSize(self.__batchsize)
generator.setSquaredElementsLimit(self.batch_uses_sum_of_squares)
generator.setFileList([self.dataDir+ "/" + s for s in self.samples])
return generator
def getExampleFeatureBatch(self):
if len(self.samples)<1:
raise RuntimeError("getExampleBatch: only works if there is at least one sample in the data collection.")
td = self.dataclass()
td.readFromFile(self.getSamplePath(self.samples[0]))
td.skim(0)
return td.transferFeatureListToNumpy(False)