Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion BatchProviderROI.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ local BatchProviderROI, parent = torch.class('nnf.BatchProviderROI','nnf.BatchPr

function BatchProviderROI:__init(dataset)
local fp = {dataset=dataset}
parent:__init(fp)
parent.__init(self, fp)
self.imgs_per_batch = 2
self.scale = 600
self.max_size = 1000
Expand Down