forked from cmusatyalab/openface
-
Notifications
You must be signed in to change notification settings - Fork 1
/
dataset.lua
541 lines (491 loc) · 17.9 KB
/
dataset.lua
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
-- Source: https://github.com/facebook/fbcunn/blob/master/examples/imagenet/dataset.lua
require 'torch'
torch.setdefaulttensortype('torch.FloatTensor')
local ffi = require 'ffi'
local class = require('pl.class')
local dir = require 'pl.dir'
local tablex = require 'pl.tablex'
local argcheck = require 'argcheck'
require 'sys'
require 'xlua'
require 'image'
local dataset = torch.class('dataLoader')
local initcheck = argcheck{
pack=true,
help=[[
A dataset class for images in a flat folder structure (folder-name is class-name).
Optimized for extremely large datasets (upwards of 14 million images).
Tested only on Linux (as it uses command-line linux utilities to scale up)
]],
{check=function(paths)
local out = true;
for k,v in ipairs(paths) do
if type(v) ~= 'string' then
print('paths can only be of string input');
out = false
end
end
return out
end,
name="paths",
type="table",
help="Multiple paths of directories with images"},
{name="sampleSize",
type="table",
help="a consistent sample size to resize the images"},
{name="split",
type="number",
help="Percentage of split to go to Training"
},
{name="samplingMode",
type="string",
help="Sampling mode: random | balanced ",
default = "balanced"},
{name="verbose",
type="boolean",
help="Verbose mode during initialization",
default = false},
{name="loadSize",
type="table",
help="a size to load the images to, initially",
opt = true},
{name="forceClasses",
type="table",
help="If you want this loader to map certain classes to certain indices, "
.. "pass a classes table that has {classname : classindex} pairs."
.. " For example: {3 : 'dog', 5 : 'cat'}"
.. "This function is very useful when you want two loaders to have the same "
.. "class indices (trainLoader/testLoader for example)",
opt = true},
{name="sampleHookTrain",
type="function",
help="applied to sample during training(ex: for lighting jitter). "
.. "It takes the image path as input",
opt = true},
{name="sampleHookTest",
type="function",
help="applied to sample during testing",
opt = true},
}
function dataset:__init(...)
-- argcheck
local args = initcheck(...)
print(args)
for k,v in pairs(args) do self[k] = v end
if not self.loadSize then self.loadSize = self.sampleSize; end
if not self.sampleHookTrain then self.sampleHookTrain = self.defaultSampleHook end
if not self.sampleHookTest then self.sampleHookTest = self.defaultSampleHook end
-- find class names
self.classes = {}
local classPaths = {}
if self.forceClasses then
for k,v in pairs(self.forceClasses) do
self.classes[k] = v
classPaths[k] = {}
end
end
local function tableFind(t, o) for k,v in pairs(t) do if v == o then return k end end end
-- loop over each paths folder, get list of unique class names,
-- also store the directory paths per class
-- for each class,
for k,path in ipairs(self.paths) do
local dirs = dir.getdirectories(path);
for k,dirpath in ipairs(dirs) do
local class = paths.basename(dirpath)
local idx = tableFind(self.classes, class)
if not idx then
table.insert(self.classes, class)
idx = #self.classes
classPaths[idx] = {}
end
if not tableFind(classPaths[idx], dirpath) then
table.insert(classPaths[idx], dirpath);
end
end
end
self.classIndices = {}
for k,v in ipairs(self.classes) do
self.classIndices[v] = k
end
-- define command-line tools, try your best to maintain OSX compatibility
local wc = 'wc'
local cut = 'cut'
local find = 'find'
if jit.os == 'OSX' then
wc = 'gwc'
cut = 'gcut'
find = 'gfind'
end
----------------------------------------------------------------------
-- Options for the GNU find command
local extensionList = {'jpg', 'png','JPG','PNG','JPEG', 'ppm', 'PPM', 'bmp', 'BMP'}
local findOptions = ' -iname "*.' .. extensionList[1] .. '"'
for i=2,#extensionList do
findOptions = findOptions .. ' -o -iname "*.' .. extensionList[i] .. '"'
end
-- find the image path names
self.imagePath = torch.CharTensor() -- path to each image in dataset
self.imageClass = torch.LongTensor() -- class index of each image (class index in self.classes)
self.classList = {} -- index of imageList to each image of a particular class
self.classListSample = self.classList -- the main list used when sampling data
print('running "find" on each class directory, and concatenate all'
.. ' those filenames into a single file containing all image paths for a given class')
-- so, generates one file per class
local classFindFiles = {}
for i=1,#self.classes do
classFindFiles[i] = os.tmpname()
end
local combinedFindList = os.tmpname();
local tmpfile = os.tmpname()
local tmphandle = assert(io.open(tmpfile, 'w'))
-- iterate over classes
for i, class in ipairs(self.classes) do
-- iterate over classPaths
for j,path in ipairs(classPaths[i]) do
local command = find .. ' "' .. path .. '" ' .. findOptions
.. ' >>"' .. classFindFiles[i] .. '" \n'
tmphandle:write(command)
end
end
io.close(tmphandle)
os.execute('bash ' .. tmpfile)
os.execute('rm -f ' .. tmpfile)
print('now combine all the files to a single large file')
local tmpfile = os.tmpname()
local tmphandle = assert(io.open(tmpfile, 'w'))
-- concat all finds to a single large file in the order of self.classes
for i=1,#self.classes do
local command = 'cat "' .. classFindFiles[i] .. '" >>' .. combinedFindList .. ' \n'
tmphandle:write(command)
end
io.close(tmphandle)
os.execute('bash ' .. tmpfile)
os.execute('rm -f ' .. tmpfile)
--==========================================================================
print('load the large concatenated list of sample paths to self.imagePath')
local maxPathLength = tonumber(sys.fexecute(wc .. " -L '"
.. combinedFindList .. "' |"
.. cut .. " -f1 -d' '")) + 1
local length = tonumber(sys.fexecute(wc .. " -l '"
.. combinedFindList .. "' |"
.. cut .. " -f1 -d' '"))
assert(length > 0, "Could not find any image file in the given input paths")
assert(maxPathLength > 0, "paths of files are length 0?")
self.imagePath:resize(length, maxPathLength):fill(0)
local s_data = self.imagePath:data()
local count = 0
for line in io.lines(combinedFindList) do
ffi.copy(s_data, line)
s_data = s_data + maxPathLength
if self.verbose and count % 10000 == 0 then
xlua.progress(count, length)
end;
count = count + 1
end
self.numSamples = self.imagePath:size(1)
if self.verbose then print(self.numSamples .. ' samples found.') end
--==========================================================================
print('Updating classList and imageClass appropriately')
self.imageClass:resize(self.numSamples)
local runningIndex = 0
for i=1,#self.classes do
if self.verbose then xlua.progress(i, #(self.classes)) end
local length = tonumber(sys.fexecute(wc .. " -l '"
.. classFindFiles[i] .. "' |"
.. cut .. " -f1 -d' '"))
if length == 0 then
error('Class has zero samples: ' .. self.classes[i])
else
self.classList[i] = torch.linspace(runningIndex + 1, runningIndex + length, length):long()
self.imageClass[{{runningIndex + 1, runningIndex + length}}]:fill(i)
end
runningIndex = runningIndex + length
end
--==========================================================================
-- clean up temporary files
print('Cleaning up temporary files')
local tmpfilelistall = ''
for i=1,#(classFindFiles) do
tmpfilelistall = tmpfilelistall .. ' "' .. classFindFiles[i] .. '"'
if i % 1000 == 0 then
os.execute('rm -f ' .. tmpfilelistall)
tmpfilelistall = ''
end
end
os.execute('rm -f ' .. tmpfilelistall)
os.execute('rm -f "' .. combinedFindList .. '"')
--==========================================================================
if self.split == 100 then
self.testIndicesSize = 0
else
print('Splitting training and test sets to a ratio of '
.. self.split .. '/' .. (100-self.split))
self.classListTrain = {}
self.classListTest = {}
self.classListSample = self.classListTrain
local totalTestSamples = 0
-- split the classList into classListTrain and classListTest
for i=1,#self.classes do
local list = self.classList[i]
local count = self.classList[i]:size(1)
local splitidx = math.floor((count * self.split / 100) + 0.5) -- +round
local perm = torch.randperm(count)
self.classListTrain[i] = torch.LongTensor(splitidx)
for j=1,splitidx do
self.classListTrain[i][j] = list[perm[j]]
end
if splitidx == count then -- all samples were allocated to train set
self.classListTest[i] = torch.LongTensor()
else
self.classListTest[i] = torch.LongTensor(count-splitidx)
totalTestSamples = totalTestSamples + self.classListTest[i]:size(1)
local idx = 1
for j=splitidx+1,count do
self.classListTest[i][idx] = list[perm[j]]
idx = idx + 1
end
end
end
-- Now combine classListTest into a single tensor
self.testIndices = torch.LongTensor(totalTestSamples)
self.testIndicesSize = totalTestSamples
local tdata = self.testIndices:data()
local tidx = 0
for i=1,#self.classes do
local list = self.classListTest[i]
if list:dim() ~= 0 then
local ldata = list:data()
for j=0,list:size(1)-1 do
tdata[tidx] = ldata[j]
tidx = tidx + 1
end
end
end
end
end
-- size(), size(class)
function dataset:size(class, list)
list = list or self.classList
if not class then
return self.numSamples
elseif type(class) == 'string' then
return list[self.classIndices[class]]:size(1)
elseif type(class) == 'number' then
return list[class]:size(1)
end
end
-- size(), size(class)
function dataset:sizeTrain(class)
if self.split == 0 then
return 0;
end
if class then
return self:size(class, self.classListTrain)
else
return self.numSamples - self.testIndicesSize
end
end
-- size(), size(class)
function dataset:sizeTest(class)
if self.split == 100 then
return 0
end
if class then
return self:size(class, self.classListTest)
else
return self.testIndicesSize
end
end
-- by default, just load the image and return it
function dataset:defaultSampleHook(imgpath)
local out = image.load(imgpath, self.loadSize[1])
out = image.scale(out, self.sampleSize[3], self.sampleSize[2])
return out
end
-- getByClass
function dataset:getByClass(class)
local index = math.ceil(torch.uniform() * self.classListSample[class]:nElement())
local imgpath = ffi.string(torch.data(self.imagePath[self.classListSample[class][index]]))
return self:sampleHookTrain(imgpath)
end
-- converts a table of samples (and corresponding labels) to a clean tensor
local function tableToOutput(self, dataTable, scalarTable)
local data, scalarLabels, labels
local quantity = #scalarTable
local samplesPerDraw
if dataTable[1]:dim() == 3 then samplesPerDraw = 1
else samplesPerDraw = dataTable[1]:size(1) end
if quantity == 1 and samplesPerDraw == 1 then
data = dataTable[1]
scalarLabels = scalarTable[1]
labels = torch.LongTensor(#(self.classes)):fill(-1)
labels[scalarLabels] = 1
else
data = torch.Tensor(quantity * samplesPerDraw,
self.sampleSize[1], self.sampleSize[2], self.sampleSize[3])
scalarLabels = torch.LongTensor(quantity * samplesPerDraw)
labels = torch.LongTensor(quantity * samplesPerDraw, #(self.classes)):fill(-1)
for i=1,#dataTable do
local idx = (i-1)*samplesPerDraw
data[{{idx+1,idx+samplesPerDraw}}]:copy(dataTable[i])
scalarLabels[{{idx+1,idx+samplesPerDraw}}]:fill(scalarTable[i])
labels[{{idx+1,idx+samplesPerDraw},{scalarTable[i]}}]:fill(1)
end
end
return data, scalarLabels, labels
end
-- sampler, samples from the training set.
function dataset:sample(quantity)
if self.split == 0 then
error('No training mode when split is set to 0')
end
quantity = quantity or 1
local dataTable = {}
local scalarTable = {}
for i=1,quantity do
local class = torch.random(1, #self.classes)
local out = self:getByClass(class)
table.insert(dataTable, out)
table.insert(scalarTable, class)
end
local data, scalarLabels, labels = tableToOutput(self, dataTable, scalarTable)
return data, scalarLabels, labels
end
-- TODO: Triplet selection.
-- This naively randomly samples for triplets.
function dataset:sampleTriplet(quantity)
if self.split == 0 then
error('No training mode when split is set to 0')
end
quantity = quantity or 1
local dataTable = {}
local scalarTable = {}
-- Anchors
for i=1,quantity do
local anchorClass = torch.random(1, #self.classes)
table.insert(dataTable, self:getByClass(anchorClass))
table.insert(scalarTable, anchorClass)
end
-- Positives
for i=1,quantity do
local posClass = scalarTable[i]
table.insert(dataTable, self:getByClass(posClass))
table.insert(scalarTable, posClass)
end
-- Negatives
for i=1,quantity do
local posClass = scalarTable[i]
local negClass = posClass
while negClass == posClass do
negClass = torch.random(1, #self.classes)
end
table.insert(dataTable, self:getByClass(negClass))
table.insert(scalarTable, negClass)
end
local data, scalarLabels, labels = tableToOutput(self, dataTable, scalarTable)
return data, scalarLabels, labels
end
function dataset:samplePeople(peoplePerBatch, imagesPerPerson)
if self.split == 0 then
error('No training mode when split is set to 0')
end
local classes = torch.randperm(#trainLoader.classes)[{{1,peoplePerBatch}}]:int()
local numPerClass = torch.Tensor(peoplePerBatch)
for i=1,peoplePerBatch do
local n = math.min(self.classListSample[classes[i]]:nElement(), imagesPerPerson)
numPerClass[i] = n
end
local data = torch.Tensor(numPerClass:sum(),
self.sampleSize[1], self.sampleSize[2], self.sampleSize[3])
local dataIdx = 1
for i=1,peoplePerBatch do
local cls = classes[i]
local n = numPerClass[i]
local shuffle = torch.randperm(n)
for i=1,n do
imgNum = self.classListSample[cls][shuffle[i]]
imgPath = ffi.string(torch.data(self.imagePath[imgNum]))
data[dataIdx] = self:sampleHookTrain(imgPath)
dataIdx = dataIdx + 1
end
end
assert(dataIdx - 1 == numPerClass:sum())
return data, numPerClass
end
function dataset:sampleAllOfClass(quantity, posClass)
if self.split == 0 then
error('No training mode when split is set to 0')
end
quantity = quantity or 1
local n = math.min(self.classListSample[posClass]:nElement(), quantity)
local data = torch.Tensor(n, self.sampleSize[1],
self.sampleSize[2], self.sampleSize[3])
for i=1,n do
imgpath = ffi.string(torch.data(self.imagePath[self.classListSample[posClass][i]]))
data[i] = self:sampleHookTrain(imgpath)
end
return data
end
function dataset:sampleNoneOfClass(quantity, posClass)
if self.split == 0 then
error('No training mode when split is set to 0')
end
quantity = quantity or 1
local data = torch.Tensor(quantity, self.sampleSize[1],
self.sampleSize[2], self.sampleSize[3])
for i=1,quantity do
local negClass = posClass
while negClass == posClass do
negClass = torch.random(1, #self.classes)
end
data[i] = self:getByClass(negClass)
end
return data
end
function dataset:get(i1, i2)
local indices, quantity
if type(i1) == 'number' then
if type(i2) == 'number' then -- range of indices
indices = torch.range(i1, i2);
quantity = i2 - i1 + 1;
else -- single index
indices = {i1}; quantity = 1
end
elseif type(i1) == 'table' then
indices = i1; quantity = #i1; -- table
elseif (type(i1) == 'userdata' and i1:nDimension() == 1) then
indices = i1; quantity = (#i1)[1]; -- tensor
else
error('Unsupported input types: ' .. type(i1) .. ' ' .. type(i2))
end
assert(quantity > 0)
-- now that indices has been initialized, get the samples
local dataTable = {}
local scalarTable = {}
for i=1,quantity do
-- load the sample
local idx = self.testIndices[indices[i]]
local imgpath = ffi.string(torch.data(self.imagePath[idx]))
local out = self:sampleHookTest(imgpath)
table.insert(dataTable, out)
table.insert(scalarTable, self.imageClass[idx])
end
local data, scalarLabels, labels = tableToOutput(self, dataTable, scalarTable)
return data, scalarLabels, labels
end
function dataset:test(quantity)
if self.split == 100 then
error('No test mode when you are not splitting the data')
end
local i = 1
local n = self.testIndicesSize
local qty = quantity or 1
return function ()
if i+qty-1 <= n then
local data, scalarLabelss, labels = self:get(i, i+qty-1)
i = i + qty
return data, scalarLabelss, labels
end
end
end
return dataset