mirror of
https://github.com/open-mmlab/mmselfsup.git
synced 2025-06-03 14:59:38 +08:00
11 lines
340 B
Python
11 lines
340 B
Python
from ..registry import DATASOURCES
|
|
from .image_list import ImageList
|
|
|
|
|
|
@DATASOURCES.register_module
|
|
class Places205(ImageList):
|
|
|
|
def __init__(self, root, list_file, memcached, mclient_path, return_label=True, *args, **kwargs):
|
|
super(Places205, self).__init__(
|
|
root, list_file, memcached, mclient_path, return_label)
|