11 lines
288 B
Python
Raw Normal View History

2020-06-16 00:05:18 +08:00
from ..registry import DATASOURCES
2020-06-16 16:30:46 +08:00
from .image_list import ImageList
2020-06-16 00:05:18 +08:00
@DATASOURCES.register_module
2020-06-16 16:30:46 +08:00
class ImageNet(ImageList):
2020-06-16 00:05:18 +08:00
def __init__(self, root, list_file, memcached, mclient_path):
2020-06-16 16:30:46 +08:00
super(ImageNet, self).__init__(
root, list_file, memcached, mclient_path)