-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFillData.lua
More file actions
494 lines (457 loc) · 16.2 KB
/
FillData.lua
File metadata and controls
494 lines (457 loc) · 16.2 KB
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
require 'TrainOptim'
--Input [M][InputSize] to [BatchSize][InputSize]
--Output [M][OutputSize] to [BatchSize][OutputSize]
function FillDataBatch1D(model, dataIn, dataOut, func)
-- prepare inputs & outputs tensors
for batch = 1,Settings.BatchN do
if Settings.DispBatch then plog.info("Training Batch: " .. batch .. "/" .. Settings.BatchN) end
local tIn ={}
table.insert(tIn,Settings.BatchSize)
local tOut ={}
table.insert(tOut,Settings.BatchSize)
for i = 2,dataIn:dim() do
table.insert(tIn,dataIn:size(i))
end
for i = 2,dataOut:dim() do
table.insert(tOut,dataOut:size(i))
end
local inputs = torch.Tensor(torch.LongStorage(tIn))
local outputs = torch.Tensor(torch.LongStorage(tOut))
-- process batches
for i = 1, Settings.BatchSize do
local dataM=torch.random(1,dataIn:size(1))
inputs[i] = dataIn:select(1,dataM)
outputs[i] = dataOut:select(1,dataM)
end
func(model, inputs, outputs)
end
end
--Input [M][InputSize] to [BatchSize][InputSize]
--Output [M][OutputSize] to [BatchSize][OutputSize]
function FillDataBatch1Dcuda(model, dataIn, dataOut, func)
local tIn ={}
table.insert(tIn,Settings.BatchSize)
local tOut ={}
table.insert(tOut,Settings.BatchSize)
for i = 2,dataIn:dim() do
table.insert(tIn,dataIn:size(i))
end
for i = 2,dataOut:dim() do
table.insert(tOut,dataOut:size(i))
end
local inputs = torch.CudaTensor(torch.LongStorage(tIn))
local outputs = torch.CudaTensor(torch.LongStorage(tOut))
-- prepare inputs & outputs tensors
for batch = 1,Settings.BatchN do
if Settings.DispBatch then plog.info("Training Batch: " .. batch .. "/" .. Settings.BatchN) end
-- process batches
for i = 1, Settings.BatchSize do
local dataM=torch.random(1,dataIn:size(1))
inputs[i] = dataIn:select(1,dataM)
outputs[i] = dataOut:select(1,dataM)
end
func(model, inputs, outputs)
end
end
--Input [M][X][InputSize] to [BatchSize][BatchSizeX][InputSize]
--Output [M][OutputSize] to [BatchSize][OutputSize]
function FillDataBatch2D(model, dataIn, dataOut, func)
-- prepare inputs & outputs tensors
for batch = 1,Settings.BatchN do
if Settings.DispBatch then plog.info("Training Batch: " .. batch .. "/" .. Settings.BatchN) end
local tIn ={}
table.insert(tIn,Settings.BatchSize)
table.insert(tIn,Settings.BatchSizeX)
local tOut ={}
table.insert(tOut,Settings.BatchSize)
for i = 3,dataIn:dim() do
table.insert(tIn,dataIn:size(i))
end
for i = 2,dataOut:dim() do
table.insert(tOut,dataOut:size(i))
end
local inputs = torch.Tensor(torch.LongStorage(tIn))
local outputs = torch.Tensor(torch.LongStorage(tOut))
local SizeX=math.floor(Settings.BatchSizeX/2)
-- process batches
for i = 1, Settings.BatchSize do
local dataM=torch.random(1,dataIn:size(1))
local dataX=torch.random(SizeX,dataIn:size(2)-SizeX)
inputs[i] = dataIn:select(1,dataM):sub(dataX-SizeX,dataX+SizeX)
outputs[i] = dataOut:select(1,dataM)
end
func(model, inputs, outputs)
end
end
--Input [M][X][Y][InputSize] to [BatchSize][BatchSizeX][BatchSizeY][InputSize]
--Output [M][OutputSize] to [BatchSize][OutputSize]
function FillDataBatch3D(model, dataIn, dataOut, func)
-- prepare inputs & outputs tensors
for batch = 1,Settings.BatchN do
if Settings.DispBatch then plog.info("Training Batch: " .. batch .. "/" .. Settings.BatchN) end
local tIn ={}
table.insert(tIn,Settings.BatchSize)
table.insert(tIn,Settings.BatchSizeX)
table.insert(tIn,Settings.BatchSizeY)
local tOut ={}
table.insert(tOut,Settings.BatchSize)
for i = 4,dataIn:dim() do
table.insert(tIn,dataIn:size(i))
end
for i = 2,dataOut:dim() do
table.insert(tOut,dataOut:size(i))
end
local inputs = torch.Tensor(torch.LongStorage(tIn))
local outputs = torch.Tensor(torch.LongStorage(tOut))
local SizeX=math.floor(Settings.BatchSizeX/2)
local SizeY=math.floor(Settings.BatchSizeY/2)
-- process batches
for i = 1, Settings.BatchSize do
local dataM=torch.random(1,dataIn:size(1))
local dataX=torch.random(SizeX,dataIn:size(2)-SizeX)
local dataY=torch.random(SizeY,dataIn:size(3)-SizeY)
inputs[i] = dataIn:select(1,dataM):sub(dataX-SizeX,dataX+SizeX,dataY-SizeY,dataY+SizeY)
outputs[i] = dataOut:select(1,dataM)
end
func(model, inputs, outputs)
end
end
--Input [M][X][Y][Z][InputSize] to [BatchSize][BatchSizeX][BatchSizeY][BatchSizeZ][InputSize]
--Output [M][OutputSize] to [BatchSize][OutputSize]
function FillDataBatch4D(model, dataIn, dataOut, func)
-- prepare inputs & outputs tensors
for batch = 1,Settings.BatchN do
if Settings.DispBatch then plog.info("Training Batch: " .. batch .. "/" .. Settings.BatchN) end
local tIn ={}
table.insert(tIn,Settings.BatchSize)
table.insert(tIn,Settings.BatchSizeX)
table.insert(tIn,Settings.BatchSizeY)
table.insert(tIn,Settings.BatchSizeZ)
local tOut ={}
table.insert(tOut,Settings.BatchSize)
for i = 5,dataIn:dim() do
table.insert(tIn,dataIn:size(i))
end
-- for i = 2,dataOut:dim() do
-- table.insert(tOut,dataOut:size(i))
-- end
table.insert(tOut,Settings.OutputSize)
local inputs = torch.Tensor(torch.LongStorage(tIn))
local outputs = torch.Tensor(torch.LongStorage(tOut))
local SizeX=math.floor(Settings.BatchSizeX/2)
local SizeY=math.floor(Settings.BatchSizeY/2)
local SizeZ=math.floor(Settings.BatchSizeZ/2)
-- process batches
for i = 1, Settings.BatchSize do
local dataM=torch.random(1,dataIn:size(1))
local dataX=torch.random(1+SizeX,dataIn:size(2)-SizeX)
local dataY=torch.random(1+SizeY,dataIn:size(3)-SizeY)
local dataZ=torch.random(1+SizeZ,dataIn:size(4)-SizeZ)
inputs[i] = dataIn:select(1,dataM):sub(dataX-SizeX,dataX+SizeX,dataY-SizeY,dataY+SizeY,dataZ-SizeZ,dataZ+SizeZ)
outputs[i] = dataOut:select(1,dataM):select(1,dataX):select(1,dataY):select(1,dataZ)
end
func(model, inputs, outputs)
end
end
--Input [M][X][Y][Z][InputSize] to [BatchSize][BatchSizeX][BatchSizeY][BatchSizeZ][InputSize]
--Output [M][OutputSize] to [BatchSize][OutputSize]
function FillDataBatch4Dpar(model, dataIn, dataOut, func)
local Parallel = require "Parallel"
local N = 8
-- prepare inputs & outputs tensors
for batch = 1,Settings.BatchN do
if Settings.DispBatch then plog.info("Training Batch: " .. batch .. "/" .. Settings.BatchN) end
local tIn ={}
table.insert(tIn,Settings.BatchSize)
table.insert(tIn,Settings.BatchSizeX)
table.insert(tIn,Settings.BatchSizeY)
table.insert(tIn,Settings.BatchSizeZ)
local tOut ={}
table.insert(tOut,Settings.BatchSize)
for i = 5,dataIn:dim() do
table.insert(tIn,dataIn:size(i))
end
-- for i = 2,dataOut:dim() do
-- table.insert(tOut,dataOut:size(i))
-- end
table.insert(tOut,Settings.OutputSize)
local inputs = torch.Tensor(torch.LongStorage(tIn))
local outputs = torch.Tensor(torch.LongStorage(tOut))
local SizeX=math.floor(Settings.BatchSizeX/2)
local SizeY=math.floor(Settings.BatchSizeY/2)
local SizeZ=math.floor(Settings.BatchSizeZ/2)
function VYBER(i)
local CUR = 0
return function()
if CUR > i-1 then return end
CUR = CUR + 1
return CUR
end
end
local RUTINA = string.dump(
function(thread)
FOR(
function(i)
local dataM=torch.random(1,dataIn:size(1))
local dataX=torch.random(1+SizeX,dataIn:size(2)-SizeX)
local dataY=torch.random(1+SizeY,dataIn:size(3)-SizeY)
local dataZ=torch.random(1+SizeZ,dataIn:size(4)-SizeZ)
inputs[i] = dataIn:select(1,dataM):sub(dataX-SizeX,dataX+SizeX,dataY-SizeY,dataY+SizeY,dataZ-SizeZ,dataZ+SizeZ)
outputs[i] = dataOut:select(1,dataM):select(1,dataX):select(1,dataY):select(1,dataZ)
return thread,i, math.pow(i, 2), math.sqrt(i)
end)
end)
local function VYPIS(t,i,input,output)
inputs[i] = input
outputs[i] = output
end
--Parallel.ForEach(VYBER(10), RUTINA, VYPIS, N)
Parallel.For(1, Settings.BatchSize, RUTINA, VYPIS,N)
func(model, inputs, outputs)
end
end
--Input [M][InputSize] to [BatchSize][InputSize]
--Output [M][OutputSize] to [BatchSize][OutputSize]
function FillDataBatchAll1D(model, dataIn, dataOut, func)
if Settings.DispBatch then plog.info("Training Batch: " .. batch .. "/" .. Settings.BatchN) end
local tIn ={}
table.insert(tIn,Settings.BatchSize)
local tOut ={}
table.insert(tOut,Settings.BatchSize)
for i = 2,dataIn:dim() do
table.insert(tIn,dataIn:size(i))
end
for i = 2,dataOut:dim() do
table.insert(tOut,dataOut:size(i))
end
local inputs = torch.Tensor(torch.LongStorage(tIn))
local outputs = torch.Tensor(torch.LongStorage(tOut))
local d = 0
for n = 1,dataIn:size(1) do
d=d+1
inputs[d] = dataIn:select(1,n)
outputs[d] = dataOut:select(1,n)
if d==Settings.BatchSize then
d = 0
-- process batches
func(model, inputs, outputs)
end
end
if d ~= 0 then
for n = 1,dataIn:size(1) do
d=d+1
inputs[d] = dataIn:select(1,n)
outputs[d] = dataOut:select(1,n)
if d==Settings.BatchSize then
-- process batch
func(model, inputs, outputs)
break
end
end
end
end
--Input [M][InputSize] to [BatchSize][InputSize]
--Output [M][OutputSize] to [BatchSize][OutputSize]
function FillDataBatchAll1Dcuda(model, dataIn, dataOut, func)
if Settings.DispBatch then plog.info("Training Batch: " .. batch .. "/" .. Settings.BatchN) end
local tIn ={}
table.insert(tIn,Settings.BatchSize)
local tOut ={}
table.insert(tOut,Settings.BatchSize)
for i = 2,dataIn:dim() do
table.insert(tIn,dataIn:size(i))
end
for i = 2,dataOut:dim() do
table.insert(tOut,dataOut:size(i))
end
local inputs = torch.CudaTensor(torch.LongStorage(tIn))
local outputs = torch.CudaTensor(torch.LongStorage(tOut))
local d = 0
for n = 1,dataIn:size(1) do
d=d+1
inputs[d] = dataIn:select(1,n)
outputs[d] = dataOut:select(1,n)
if d==Settings.BatchSize then
d = 0
-- process batches
func(model, inputs, outputs)
end
end
if d ~= 0 then
for n = 1,dataIn:size(1) do
d=d+1
inputs[d] = dataIn:select(1,n)
outputs[d] = dataOut:select(1,n)
if d==Settings.BatchSize then
-- process batch
func(model, inputs, outputs)
break
end
end
end
end
--Input [M][X][InputSize] to [BatchSize][BatchSizeX][InputSize]
--Output [M][OutputSize] to [BatchSize][OutputSize]
function FillDataBatchAll2D(model, dataIn, dataOut, func)
if Settings.DispBatch then plog.info("Training Batch: " .. batch .. "/" .. Settings.BatchN) end
local tIn ={}
table.insert(tIn,Settings.BatchSize)
table.insert(tIn,Settings.BatchSizeX)
local tOut ={}
table.insert(tOut,Settings.BatchSize)
for i = 3,dataIn:dim() do
table.insert(tIn,dataIn:size(i))
end
for i = 2,dataOut:dim() do
table.insert(tOut,dataOut:size(i))
end
local inputs = torch.Tensor(torch.LongStorage(tIn))
local outputs = torch.Tensor(torch.LongStorage(tOut))
local SizeX=math.floor(Settings.BatchSizeX/2)
-- process batches
local d = 0;
for n = 1,dataIn:size(1) do
for m = SizeX,dataIn:size(2)-SizeX do
d=d+1
inputs[d] = dataIn:select(1,n):sub(m-SizeX,m+SizeX)
outputs[d] = dataOut:select(1,n)
if d==Settings.BatchSize then
d = 0
-- process batches
func(model, inputs, outputs);
end
end
end
if d ~= 0 then
for n = 1,dataIn:size(1) do
for m = SizeX,dataIn:size(2)-SizeX do
d=d+1
inputs[d] = dataIn:select(1,n):sub(m-SizeX,m+SizeX)
outputs[d] = dataOut:select(1,n)
if d==Settings.BatchSize then
-- process batch
func(model, inputs, outputs);
break
end
end
end
end
end
--Input [M][X][Y][InputSize] to [BatchSize][BatchSizeX][BatchSizeY][InputSize]
--Output [M][OutputSize] to [BatchSize][OutputSize]
function FillDataBatchAll3D(model, dataIn, dataOut, func)
if Settings.DispBatch then plog.info("Training Batch: " .. batch .. "/" .. Settings.BatchN) end
local tIn ={}
table.insert(tIn,Settings.BatchSize)
table.insert(tIn,Settings.BatchSizeX)
table.insert(tIn,Settings.BatchSizeY)
local tOut ={}
table.insert(tOut,Settings.BatchSize)
for i = 3,dataIn:dim() do
table.insert(tIn,dataIn:size(i))
end
for i = 2,dataOut:dim() do
table.insert(tOut,dataOut:size(i))
end
local inputs = torch.Tensor(torch.LongStorage(tIn))
local outputs = torch.Tensor(torch.LongStorage(tOut))
local SizeM=math.floor(Settings.BatchSizeM/2)
local SizeX=math.floor(Settings.BatchSizeX/2)
local SizeY=math.floor(Settings.BatchSizeY/2)
-- process batches
local d = 0;
for n = 1,dataIn:size(1) do
for m = SizeX,dataIn:size(2)-SizeX do
for l = SizeY,dataIn:size(3)-SizeY do
d=d+1
inputs[d] = dataIn:select(1,n):sub(m-SizeX,m+SizeX,l-SizeY,l+SizeY)
outputs[d] = dataOut:select(1,n)
if d==Settings.BatchSize then
d = 0
-- process batches
func(model, inputs, outputs);
end
end
end
end
if d ~= 0 then
for n = 1,dataIn:size(1) do
for m = SizeX,dataIn:size(2)-SizeX do
for l = SizeY,dataIn:size(3)-SizeY do
d=d+1
inputs[d] = dataIn:select(1,n):sub(m-SizeX,m+SizeX,l-SizeY,l+SizeY)
outputs[d] = dataOut:select(1,n)
if d==Settings.BatchSize then
-- process batch
func(model, inputs, outputs);
break
end
end
end
end
end
end
--Input [M][X][Y][Z][InputSize] to [BatchSize][BatchSizeX][BatchSizeY][BatchSizeZ][InputSize]
--Output [M][OutputSize] to [BatchSize][OutputSize]
function FillDataBatchAll4D(model, dataIn, dataOut, func)
if Settings.DispBatch then plog.info("Training Batch: " .. batch .. "/" .. Settings.BatchN) end
local tIn ={}
table.insert(tIn,Settings.BatchSize)
table.insert(tIn,Settings.BatchSizeX)
table.insert(tIn,Settings.BatchSizeY)
table.insert(tIn,Settings.BatchSizeZ)
local tOut ={}
table.insert(tOut,Settings.BatchSize)
for i = 5,dataIn:dim() do
table.insert(tIn,dataIn:size(i))
end
-- for i = 2,dataOut:dim() do
-- table.insert(tOut,dataOut:size(i))
-- end
table.insert(tOut,Settings.OutputSize)
local inputs = torch.Tensor(torch.LongStorage(tIn))
local outputs = torch.Tensor(torch.LongStorage(tOut))
local SizeX=math.floor(Settings.BatchSizeX/2)
local SizeY=math.floor(Settings.BatchSizeY/2)
local SizeZ=math.floor(Settings.BatchSizeZ/2)
-- process batches
local d = 0;
for n = 1,dataIn:size(1) do
for m = 1+SizeX,dataIn:size(2)-SizeX do
for l = 1+SizeY,dataIn:size(3)-SizeY do
for k = 1+SizeZ,dataIn:size(4)-SizeZ do
d=d+1
inputs[d] = dataIn:select(1,n):sub(m-SizeX,m+SizeX,l-SizeY,l+SizeY,k-SizeZ,k+SizeZ)
outputs[d] = dataOut:select(1,n):select(1,m):select(1,l):select(1,k)
if d==Settings.BatchSize then
d = 0
-- process batches
func(model, inputs, outputs);
end
end
end
end
end
while d ~= 0 do
for n = 1,dataIn:size(1) do
for m = 1+SizeX,dataIn:size(2)-SizeX do
for l = 1+SizeY,dataIn:size(3)-SizeY do
for k = 1+SizeZ,dataIn:size(4)-SizeZ do
d=d+1
inputs[d] = dataIn:select(1,n):sub(m-SizeX,m+SizeX,l-SizeY,l+SizeY,k-SizeZ,k+SizeZ)
outputs[d] = dataOut:select(1,n):select(1,m):select(1,l):select(1,k)
if d==Settings.BatchSize then
-- process batch
func(model, inputs, outputs);
break
end
end
if d==Settings.BatchSize then break end
end
if d==Settings.BatchSize then break end
end
if d==Settings.BatchSize then break end
end
if d==Settings.BatchSize then break end
end
end