forked from linfengYang/AugLPN_NILM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DataProvider.py
907 lines (672 loc) · 32.8 KB
/
DataProvider.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
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
from Logger import log
import numpy as np
import pandas as pd
class ChunkDoubleSourceSlider(object):
def __init__(self, filename, batchsize, chunksize, shuffle, offset, crop=None, header=0, ram_threshold=5*10**5):
self.filename = filename
self.batchsize = batchsize
self.chunksize = chunksize
self.shuffle = shuffle
self.offset = offset
self.header = header
self.crop = crop
self.ram = ram_threshold
def check_lenght(self):
# check the csv size
check_cvs = pd.read_csv(self.filename,
nrows=self.crop,
chunksize=10 ** 3,
header=self.header
)
t_size = 0
for chunk in check_cvs:
size = chunk.shape[0]
t_size += size
del chunk
log('Size of the dataset is {:.3f} M rows.'.format(t_size/10 ** 6))
if t_size > self.ram: # IF dataset is too large for memory
log('It is too large to fit in memory so it will be loaded in chunkes of size {:}.'.format(self.chunksize))
else:
log('This size can fit the memory so it will load entirely')
return t_size
def feed_chunk(self):
try:
total_size
except NameError:
#global total_size
total_size = ChunkDoubleSourceSlider.check_lenght(self)
if total_size > self.ram: # IF dataset is too large for memory
# LOAD data from csv
data_frame = pd.read_csv(self.filename,
nrows=self.crop,
chunksize=self.chunksize,
header=self.header
)
# iterations over csv file
for chunk in data_frame:
np_array = np.array(chunk)
inputs, targets = np_array[:, 0], np_array[:, 1]
"""
if len(inputs) < self.batchsize:
while len(inputs) == self.batchsize:
inputs = np.append(inputs, 0)
targets = np.append(targets, 0)
"""
max_batchsize = inputs.size - 2 * self.offset
if self.batchsize < 0:
self.batchsize = max_batchsize
# define indices and shuffle them if necessary
indices = np.arange(max_batchsize)
if self.shuffle:
np.random.shuffle(indices)
# providing sliding windows:
for start_idx in range(0, max_batchsize, self.batchsize):
excerpt = indices[start_idx:start_idx + self.batchsize]
inp = np.array([inputs[idx:idx + 2 * self.offset + 1] for idx in excerpt])
tar = targets[excerpt + self.offset].reshape(-1, 1)
yield inp, tar
else: # IF dataset can fit the memory
# LOAD data from csv
data_frame = pd.read_csv(self.filename,
nrows=self.crop,
header=self.header
)
np_array = np.array(data_frame)
inputs, targets = np_array[:, 0], np_array[:, 1]
max_batchsize = inputs.size - 2 * self.offset
if self.batchsize < 0:
self.batchsize = max_batchsize
# define indices and shuffle them if necessary
indices = np.arange(max_batchsize)
if self.shuffle:
np.random.shuffle(indices)
# providing sliding windows:
for start_idx in range(0, max_batchsize, self.batchsize):
excerpt = indices[start_idx:start_idx + self.batchsize]
inp = np.array([inputs[idx:idx + 2 * self.offset + 1] for idx in excerpt])
tar = targets[excerpt + self.offset].reshape(-1, 1)
yield inp, tar
class ChunkDoubleSourceSlider2(object):
def __init__(self, filename, batchsize, chunksize, shuffle, offset, crop=None, header=0, ram_threshold=5 * 10 ** 5):
self.filename = filename
self.batchsize = batchsize
self.chunksize = chunksize
self.shuffle = shuffle
self.offset = offset
self.header = header
self.crop = crop
self.ram = ram_threshold
self.total_size = 0
def check_length(self):
# check the csv size
check_cvs = pd.read_csv(self.filename,
nrows=self.crop,
chunksize=10 ** 3,
header=self.header
)
for chunk in check_cvs:
size = chunk.shape[0]
self.total_size += size
del chunk
log('Size of the dataset is {:.3f} M rows.'.format(self.total_size / 10 ** 6))
if self.total_size > self.ram: # IF dataset is too large for memory
log('It is too large to fit in memory so it will be loaded in chunkes of size {:}.'.format(self.chunksize))
else:
log('This size can fit the memory so it will load entirely')
def feed_chunk(self):
if self.total_size == 0:
ChunkDoubleSourceSlider2.check_length(self)
if self.total_size > self.ram: # IF dataset is too large for memory
# LOAD data from csv
data_frame = pd.read_csv(self.filename,
nrows=self.crop,
chunksize=self.chunksize,
header=self.header
)
skip_idx = np.arange(self.total_size/self.chunksize)
if self.shuffle:
np.random.shuffle(skip_idx)
log(str(skip_idx), 'debug')
for i in skip_idx:
log('index: ' + str(i), 'debug')
# Read the data
data = pd.read_csv(self.filename,
nrows=self.chunksize,
skiprows=int(i)*self.chunksize,
header=self.header)
np_array = np.array(data)
inputs, targets = np_array[:, 0], np_array[:, 1]
max_batchsize = inputs.size - 2 * self.offset #inputs.size - 2 * self.offset
if self.batchsize < 0:
self.batchsize = max_batchsize
# define indices and shuffle them if necessary
indices = np.arange(max_batchsize)
if self.shuffle:
np.random.shuffle(indices)
# providing sliding windows:
for start_idx in range(0, max_batchsize, self.batchsize):
excerpt = indices[start_idx:start_idx + self.batchsize]
inp = np.array([inputs[idx:idx + 2 * self.offset] for idx in excerpt])
tar = targets[excerpt + self.offset].reshape(-1, 1) #
yield inp, tar
else: # IF dataset can fit the memory
# LOAD data from csv
data_frame = pd.read_csv(self.filename,
nrows=self.crop,
header=self.header
)
np_array = np.array(data_frame)
inputs, targets = np_array[:, 0], np_array[:, 1]
max_batchsize = inputs.size - 2 * self.offset
if self.batchsize < 0:
self.batchsize = max_batchsize
# define indices and shuffle them if necessary
indices = np.arange(max_batchsize)
if self.shuffle:
np.random.shuffle(indices)
for start_idx in range(0, max_batchsize, self.batchsize):
excerpt = indices[start_idx:start_idx + self.batchsize]
inp = np.array([inputs[idx:idx + 2*self.offset] for idx in excerpt])
tar = targets[excerpt + self.offset].reshape(-1, 1)
yield inp, tar
class ChunkDoubleSourceSlider2_online(object):
def __init__(self, filename, batchsize, chunksize, shuffle, offset, crop=None, header=0, ram_threshold=5 * 10 ** 5):
self.filename = filename
self.batchsize = batchsize
self.chunksize = chunksize
self.shuffle = shuffle
self.offset = offset
self.header = header
self.crop = crop
self.ram = ram_threshold
self.total_size = 0
def check_length(self):
# check the csv size
check_cvs = pd.read_csv(self.filename,
nrows=self.crop,
chunksize=10 ** 3,
header=self.header
)
for chunk in check_cvs:
size = chunk.shape[0]
self.total_size += size
del chunk
log('Size of the dataset is {:.3f} M rows.'.format(self.total_size / 10 ** 6))
if self.total_size > self.ram: # IF dataset is too large for memory
log('It is too large to fit in memory so it will be loaded in chunkes of size {:}.'.format(self.chunksize))
else:
log('This size can fit the memory so it will load entirely')
def feed_chunk(self):
if self.total_size == 0:
ChunkDoubleSourceSlider2_online.check_length(self)
if self.total_size > self.ram: # IF dataset is too large for memory
# LOAD data from csv
data_frame = pd.read_csv(self.filename,
nrows=self.crop,
chunksize=self.chunksize,
header=self.header
)
skip_idx = np.arange(self.total_size/self.chunksize)
if self.shuffle:
np.random.shuffle(skip_idx)
log(str(skip_idx), 'debug')
for i in skip_idx:
log('index: ' + str(i), 'debug')
# Read the data
data = pd.read_csv(self.filename,
nrows=self.chunksize,
skiprows=int(i)*self.chunksize,
header=self.header)
np_array = np.array(data)
inputs, targets = np_array[:, 0], np_array[:, 1]
max_batchsize = inputs.size - 2 * self.offset
if self.batchsize < 0:
self.batchsize = max_batchsize
# define indices and shuffle them if necessary
indices = np.arange(max_batchsize)
if self.shuffle:
np.random.shuffle(indices)
# providing sliding windows:
for start_idx in range(0, max_batchsize, self.batchsize):
excerpt = indices[start_idx:start_idx + self.batchsize]
inp = np.array([inputs[idx:idx + 2 * self.offset + 1] for idx in excerpt])
tar = targets[excerpt + self.offset * 2].reshape(-1, 1)
yield inp, tar
else: # IF dataset can fit the memory
# LOAD data from csv
data_frame = pd.read_csv(self.filename,
nrows=self.crop,
header=self.header
)
np_array = np.array(data_frame)
inputs, targets = np_array[:, 0], np_array[:, 1]
max_batchsize = inputs.size - 2 * self.offset
if self.batchsize < 0:
self.batchsize = max_batchsize
# define indices and shuffle them if necessary
indices = np.arange(max_batchsize)
if self.shuffle:
np.random.shuffle(indices)
# providing sliding windows:
for start_idx in range(0, max_batchsize, self.batchsize):
excerpt = indices[start_idx:start_idx + self.batchsize]
inp = np.array([inputs[idx:idx + 2 * self.offset + 1] for idx in excerpt])
tar = targets[excerpt + self.offset * 2].reshape(-1, 1)
yield inp, tar
class ChunkDoubleSourceSlider2_even(object):
def __init__(self, filename, batchsize, chunksize, shuffle, offset, crop=None, header=0, ram_threshold=5 * 10 ** 5):
self.filename = filename
self.batchsize = batchsize
self.chunksize = chunksize
self.shuffle = shuffle
self.offset = offset
self.header = header
self.crop = crop
self.ram = ram_threshold
self.total_size = 0
def check_length(self):
# check the csv size
check_cvs = pd.read_csv(self.filename,
nrows=self.crop,
chunksize=10 ** 3,
header=self.header
)
for chunk in check_cvs:
size = chunk.shape[0]
self.total_size += size
del chunk
log('Size of the dataset is {:.3f} M rows.'.format(self.total_size / 10 ** 6))
if self.total_size > self.ram: # IF dataset is too large for memory
log('It is too large to fit in memory so it will be loaded in chunkes of size {:}.'.format(self.chunksize))
else:
log('This size can fit the memory so it will load entirely')
def feed_chunk(self):
if self.total_size == 0:
ChunkDoubleSourceSlider2_even.check_length(self)
if self.total_size > self.ram: # IF dataset is too large for memory
# LOAD data from csv
data_frame = pd.read_csv(self.filename,
nrows=self.crop,
chunksize=self.chunksize,
header=self.header
)
skip_idx = np.arange(self.total_size/self.chunksize)
if self.shuffle:
np.random.shuffle(skip_idx)
log(str(skip_idx), 'debug')
for i in skip_idx:
log('index: ' + str(i), 'debug')
# Read the data
data = pd.read_csv(self.filename,
nrows=self.chunksize,
skiprows=int(i)*self.chunksize,
header=self.header)
np_array = np.array(data)
inputs, targets = np_array[:, 0], np_array[:, 1]
max_batchsize = inputs.size - 2 * self.offset
if self.batchsize < 0:
self.batchsize = max_batchsize
# define indices and shuffle them if necessary
indices = np.arange(max_batchsize)
if self.shuffle:
np.random.shuffle(indices)
# providing sliding windows:
for start_idx in range(0, max_batchsize, self.batchsize):
excerpt = indices[start_idx:start_idx + self.batchsize]
inp = np.array([inputs[idx:idx + 2 * self.offset] for idx in excerpt])
tar = targets[excerpt + 2 * self.offset-1].reshape(-1, 1)
yield inp, tar
else: # IF dataset can fit the memory
# LOAD data from csv
data_frame = pd.read_csv(self.filename,
nrows=self.crop,
header=self.header
)
np_array = np.array(data_frame)
inputs, targets = np_array[:, 0], np_array[:, 1]
max_batchsize = inputs.size - 2 * self.offset
if self.batchsize < 0:
self.batchsize = max_batchsize
# define indices and shuffle them if necessary
indices = np.arange(max_batchsize)
if self.shuffle:
np.random.shuffle(indices)
# providing sliding windows:
for start_idx in range(0, max_batchsize, self.batchsize):
excerpt = indices[start_idx:start_idx + self.batchsize]
inp = np.array([inputs[idx:idx + 2 * self.offset] for idx in excerpt])
tar = targets[excerpt + 2* self.offset -1].reshape(-1, 1)
yield inp, tar
class DoubleSourceProvider2(object):
def __init__(self, batchsize, shuffle, offset):
self.batchsize = batchsize
self.shuffle = shuffle
self.offset = offset
def feed(self, inputs, targets):
assert len(inputs) == len(targets)
inputs = inputs.flatten()
targets = targets.flatten()
max_batchsize = inputs.size - 2 * self.offset
if self.batchsize == -1:
self.batchsize = len(inputs)
indices = np.arange(max_batchsize)
if self.shuffle:
np.random.shuffle(indices)
for start_idx in range(0, max_batchsize, self.batchsize):
excerpt = indices[start_idx:start_idx + self.batchsize]
yield np.array([inputs[idx:idx + 2 * self.offset + 1] for idx in excerpt]),\
targets[excerpt + self.offset].reshape(-1, 1)
class DoubleSourceProvider3(object):
def __init__(self, nofWindows, offset):
self.nofWindows = nofWindows
self.offset = offset
def feed(self, inputs):
inputs = inputs.flatten()
###########
# inputs = np.pad(inputs,(self.offset,self.offset),'constant',constant_values=(0,0))
############
max_nofw = inputs.size - 2 * self.offset
if self.nofWindows < 0:
self.nofWindows = max_nofw
indices = np.arange(max_nofw, dtype=int)
# providing sliding windows:
for start_idx in range(0, max_nofw, self.nofWindows):
excerpt = indices[start_idx:start_idx + self.nofWindows]
inp = np.array([inputs[idx:idx + 2 * self.offset] for idx in excerpt])
yield inp
class DoubleSourceProvider3_even(object):
def __init__(self, nofWindows, offset):
self.nofWindows = nofWindows
self.offset = offset
def feed(self, inputs):
inputs = inputs.flatten()
###########
# inputs = np.pad(inputs,(self.offset,self.offset),'constant',constant_values=(0,0))
############
max_nofw = inputs.size - 2 * self.offset +1
if self.nofWindows < 0:
self.nofWindows = max_nofw
indices = np.arange(max_nofw, dtype=int)
# providing sliding windows:
for start_idx in range(0, max_nofw, self.nofWindows):
excerpt = indices[start_idx:start_idx + self.nofWindows]
inp = np.array([inputs[idx:idx + 2 * self.offset] for idx in excerpt])
yield inp
class DoubleSourceProvider4(object):
def __init__(self, nofWindows, offset, windowlength):
self.nofWindows = nofWindows
self.offset = offset
self.windowlength = windowlength
def feed(self, inputs):
inputs = inputs.flatten()
# max_nofw = inputs.size - self.windowlength
max_nofw = inputs.size - self.windowlength + 1
if self.nofWindows < 0:
self.nofWindows = max_nofw
indices = np.arange(max_nofw, dtype=int)
# providing sliding windows:
for start_idx in range(0, max_nofw, self.nofWindows):
excerpt = indices[start_idx:start_idx + self.nofWindows]
yield np.array([inputs[idx:idx + self.windowlength] for idx in excerpt])
#tar = np.array([inputs[idx:idx + self.windowlength] for idx in excerpt])
class DoubleSourceProvider4_online(object):
def __init__(self, nofWindows, offset, windowlength):
self.nofWindows = nofWindows
self.offset = offset
self.windowlength = windowlength
def feed(self, inputs):
inputs = inputs.flatten()
# max_nofw = inputs.size - self.windowlength
max_nofw = inputs.size - self.windowlength + 1
if self.nofWindows < 0:
self.nofWindows = max_nofw
indices = np.arange(max_nofw, dtype=int)
# providing sliding windows:
for start_idx in range(0, max_nofw, self.nofWindows):
excerpt = indices[start_idx:start_idx + self.nofWindows]
yield np.array([inputs[idx:idx + self.windowlength] for idx in excerpt])
#tar = np.array([inputs[idx:idx + self.windowlength] for idx in excerpt])
class DoubleSourceProvider_fcn(object):
def __init__(self, nofWindows, offset, windowlength):
self.nofWindows = nofWindows
self.offset = offset
self.windowlength = windowlength
def feed(self, inputs):
inputs = inputs.flatten()
output_length = self.windowlength
num_windows = int(np.ceil((inputs.size - 2 * self.offset) / output_length))
# pad the end of the dataframe so that it has an exact multiple of windows
# pad_size = num_windows * output_length + 2 * self.offset - inputs.size
# pad_zeros = np.zeros(pad_size)
# inputs = np.concatenate((inputs, pad_zeros), )
max_nofw = num_windows
input_length = 2 * self.offset + output_length
if self.nofWindows < 0:
self.nofWindows = max_nofw
indices = np.arange(max_nofw, dtype=int)
# providing sliding windows:
for start_idx in range(0, max_nofw, self.nofWindows):
excerpt = indices[start_idx:start_idx + self.nofWindows]
inp = np.array([inputs[idx * output_length:idx * output_length + input_length] for idx in excerpt])
#tar = np.array([inputs[idx:idx + self.windowlength] for idx in excerpt])
yield inp
#tar = np.array([inputs[idx:idx + self.windowlength] for idx in excerpt])
class MultiApp_Slider(object):
def __init__(self, batchsize, shuffle, offset):
self.batchsize = batchsize
self.shuffle = shuffle
self.offset = offset
def feed(self, inputs, targets, flatten=True):
# inputs, targets = inputs.flatten(), targets.flatten()
inputs = inputs.flatten()
assert inputs.shape[0] == targets.shape[0]
max_batchsize = inputs.size - 2 * self.offset
if self.batchsize < 0:
self.batchsize = max_batchsize
indices = np.arange(max_batchsize)
if self.shuffle:
np.random.shuffle(indices)
for start_idx in range(0, max_batchsize, self.batchsize):
excerpt = indices[start_idx:start_idx + self.batchsize]
# if flatten:
# yield np.array([inputs[idx:idx + 2 * self.offset + 1] for idx in excerpt]), \
# targets[excerpt + self.offset]
# else:
yield np.array([inputs[idx:idx + 2 * self.offset + 1] for idx in excerpt]), \
targets[excerpt + self.offset, :]
class ChunkS2S_Slider_fcn(object):
def __init__(self, filename, batchsize, chunksize, shuffle, length, crop=None, header=0, ram_threshold=5 * 10 ** 5):
self.filename = filename
self.batchsize = batchsize
self.chunksize = chunksize
self.shuffle = shuffle
self.length = length
self.header = header
self.crop = crop
self.ram = ram_threshold
self.total_size = 0
def check_length(self):
# check the csv size
check_cvs = pd.read_csv(self.filename,
nrows=self.crop,
chunksize=10 ** 3,
header=self.header
)
for chunk in check_cvs:
size = chunk.shape[0]
self.total_size += size
del chunk
log('Size of the dataset is {:.3f} M rows.'.format(self.total_size / 10 ** 6))
if self.total_size > self.ram: # IF dataset is too large for memory
log('It is too large to fit in memory so it will be loaded in chunkes of size {:}.'.format(self.chunksize))
else:
log('This size can fit the memory so it will load entirely')
def feed_chunk(self):
if self.total_size == 0:
ChunkS2S_Slider_fcn.check_length(self)
if self.total_size > self.ram: # IF dataset is too large for memory
# LOAD data from csv
data_frame = pd.read_csv(self.filename,
nrows=self.crop,
chunksize=self.chunksize,
header=self.header
)
skip_idx = np.arange(self.total_size/self.chunksize)
if self.shuffle:
np.random.shuffle(skip_idx)
log(str(skip_idx), 'debug')
for i in skip_idx:
log('index: ' + str(i), 'debug')
# Read the data
data = pd.read_csv(self.filename,
nrows=self.chunksize,
skiprows=int(i)*self.chunksize,
header=self.header)
np_array = np.array(data)
inputs, targets = np_array[:, 0], np_array[:, 1]
offset = self.length // 2
output_length = self.length
num_windows = int(np.ceil((inputs.size - 2 * offset) / output_length))
# pad the end of the dataframe so that it has an exact multiple of windows
pad_size = num_windows * output_length + 2 * offset - inputs.size
pad_zeros = np.zeros(pad_size)
inputs = np.concatenate((inputs, pad_zeros), )
input_length = 2 * offset + output_length
targets = np.concatenate((targets, pad_zeros), )
targets = targets[offset:-offset]
max_batchsize = num_windows
# max_batchsize = inputs.size - self.length + 1
if self.batchsize < 0:
self.batchsize = max_batchsize
# define indices and shuffle them if necessary
indices = np.arange(max_batchsize)
if self.shuffle:
np.random.shuffle(indices)
# providing sliding windows:
for start_idx in range(0, max_batchsize, self.batchsize):
excerpt = indices[start_idx:start_idx + self.batchsize]
inp = np.array([inputs[idx * output_length:idx * output_length + input_length] for idx in excerpt])
tar = np.array([targets[idx * output_length:(idx + 1) * output_length] for idx in excerpt])
yield inp, tar
else: # IF dataset can fit the memory
# LOAD data from csv
data_frame = pd.read_csv(self.filename,
nrows=self.crop,
header=self.header
)
np_array = np.array(data_frame)
inputs, targets = np_array[:, 0], np_array[:, 1]
offset = self.length // 2
output_length = self.length
num_windows = int(np.ceil((inputs.size - 2 * offset) / output_length))
# pad the end of the dataframe so that it has an exact multiple of windows
pad_size = num_windows * output_length + 2 * offset - inputs.size
pad_zeros = np.zeros(pad_size)
inputs = np.concatenate((inputs,pad_zeros),)
input_length = 2 * offset + output_length
# inputs = np.vstack([inputs[i*output_length:i* output_length + input_length] for i in range(num_windows)])
targets = np.concatenate((targets, pad_zeros), )
targets = targets[offset:-offset]
max_batchsize = num_windows
if self.batchsize < 0:
self.batchsize = max_batchsize
# define indices and shuffle them if necessary
indices = np.arange(max_batchsize)
if self.shuffle:
np.random.shuffle(indices)
# providing sliding windows:
for start_idx in range(0, max_batchsize, self.batchsize):
excerpt = indices[start_idx:start_idx + self.batchsize]
inp = np.array([inputs[idx * output_length:idx * output_length + input_length] for idx in excerpt])
tar = np.array([targets[idx*output_length:(idx+1)*output_length] for idx in excerpt])
yield inp, tar
# targets = targets.reshape(num_windows,output_length)
# for i in range(0,num_windows,self.batchsize):
# inp = inputs[i*self.batchsize:(i+1)*self.batchsize]
# tar = targets[i*self.batchsize:(i+1)*self.batchsize]
# yield inp, tar
class ChunkS2S_Slider(object):
def __init__(self, filename, batchsize, chunksize, shuffle, length, crop=None, header=0, ram_threshold=5 * 10 ** 5):
self.filename = filename #training_path
self.batchsize = batchsize #default=1000
self.chunksize = chunksize #5*10**6
self.shuffle = shuffle #True False
self.length = length #windowlength=599
self.header = header
self.crop = crop
self.ram = ram_threshold
self.total_size = 0
def check_length(self):
# check the csv size
check_cvs = pd.read_csv(self.filename,
nrows=self.crop,
chunksize=10 ** 3,
header=self.header
)
for chunk in check_cvs:
size = chunk.shape[0] # shape[0]为矩阵的行数
self.total_size += size
del chunk
log('Size of the dataset is {:.3f} M rows.'.format(self.total_size / 10 ** 6))
if self.total_size > self.ram: # IF dataset is too large for memory
log('It is too large to fit in memory so it will be loaded in chunkes of size {:}.'.format(self.chunksize))
else:
log('This size can fit the memory so it will load entirely')
def feed_chunk(self):
if self.total_size == 0:
ChunkS2S_Slider.check_length(self)
if self.total_size > self.ram: # IF dataset is too large for memory
# LOAD data from csv
data_frame = pd.read_csv(self.filename,
nrows=self.crop,
chunksize=self.chunksize,
header=self.header
)
skip_idx = np.arange(self.total_size/self.chunksize)
if self.shuffle:
np.random.shuffle(skip_idx)
log(str(skip_idx), 'debug')
for i in skip_idx:
log('index: ' + str(i), 'debug')
# Read the data
data = pd.read_csv(self.filename,
nrows=self.chunksize,
skiprows=int(i)*self.chunksize,
header=self.header)
np_array = np.array(data)
inputs, targets = np_array[:, 0], np_array[:, 1]
max_batchsize = inputs.size - self.length + 1
if self.batchsize < 0:
self.batchsize = max_batchsize
# define indices and shuffle them if necessary
indices = np.arange(max_batchsize)
if self.shuffle:
np.random.shuffle(indices)
# providing sliding windows:
i = 0
for start_idx in range(0, max_batchsize, self.batchsize):
excerpt = indices[start_idx:start_idx + self.batchsize]
inp = np.array([inputs[idx:idx + self.length] for idx in excerpt])
tar = np.array([targets[idx:idx + self.length] for idx in excerpt])
yield inp, tar
else: # IF dataset can fit the memory
# LOAD data from csv
data_frame = pd.read_csv(self.filename,
nrows=self.crop,
header=self.header
)
np_array = np.array(data_frame)
inputs, targets = np_array[:, 0], np_array[:, 1]
max_batchsize = inputs.size - self.length + 1
if self.batchsize < 0:
self.batchsize = max_batchsize
# define indices and shuffle them if necessary
indices = np.arange(max_batchsize)
if self.shuffle:
np.random.shuffle(indices)
# providing sliding windows:
for start_idx in range(0, max_batchsize, self.batchsize):
excerpt = indices[start_idx:start_idx + self.batchsize]
inp = np.array([inputs[idx:idx + self.length] for idx in excerpt])
tar = np.array([targets[idx:idx + self.length] for idx in excerpt])
yield inp, tar