mirror of
https://github.com/open-mmlab/mmsegmentation.git
synced 2025-06-03 22:03:48 +08:00
- support dsdl seg dataset - add dsdl dataset citest - validated accuracy on voc2012 and cityscapes
14 lines
451 B
Python
Executable File
14 lines
451 B
Python
Executable File
# Copyright (c) OpenMMLab. All rights reserved.
|
|
local = dict(
|
|
type='LocalFileReader',
|
|
working_dir='/nvme/share_data/VOC2012',
|
|
)
|
|
|
|
ali_oss = dict(
|
|
type='AliOSSFileReader',
|
|
access_key_secret='your secret key of aliyun oss',
|
|
endpoint='your endpoint of aliyun oss',
|
|
access_key_id='your access key of aliyun oss',
|
|
bucket_name='your bucket name of aliyun oss',
|
|
working_dir='the relative path of your media dir in the bucket')
|