forked from facebookresearch/multipathnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.lua
22 lines (19 loc) · 1.14 KB
/
config.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--[[----------------------------------------------------------------------------
Copyright (c) 2016-present, Facebook, Inc. All rights reserved.
This source code is licensed under the BSD-style license found in the
LICENSE file in the root directory of this source tree. An additional grant
of patent rights can be found in the PATENTS file in the same directory.
------------------------------------------------------------------------------]]
-- put your paths to VOC and COCO containing subfolders with images here
local VOCdevkit = '/home/zagoruys/raid/datasets/VOCdevkit'
local coco_dir = '/home/zagoruys/raid/datasets/mscoco'
return {
pascal_train2007 = paths.concat(VOCdevkit, 'VOC2007/JPEGImages'),
pascal_val2007 = paths.concat(VOCdevkit, 'VOC2007/JPEGImages'),
pascal_test2007 = paths.concat(VOCdevkit, 'VOC2007/JPEGImages'),
pascal_train2012 = paths.concat(VOCdevkit, 'VOC2012/JPEGImages'),
pascal_val2012 = paths.concat(VOCdevkit, 'VOC2012/JPEGImages'),
pascal_test2012 = paths.concat(VOCdevkit, 'VOC2012/JPEGImages'),
coco_train2014 = paths.concat(coco_dir, 'train2014'),
coco_val2014 = paths.concat(coco_dir, 'val2014'),
}