You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
394 B
14 lines
394 B
### Copyright (C) 2020 Roy Or-El. All rights reserved.
|
|
### Licensed under the CC BY-NC-SA 4.0 license (https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode).
|
|
import torch.utils.data as data
|
|
|
|
class BaseDataset(data.Dataset):
|
|
def __init__(self):
|
|
super(BaseDataset, self).__init__()
|
|
|
|
def name(self):
|
|
return 'BaseDataset'
|
|
|
|
def initialize(self, opt):
|
|
pass
|