15 lines
195 B
Python
Executable File
15 lines
195 B
Python
Executable File
|
|
class BaseDataLoader():
|
|
def __init__(self):
|
|
pass
|
|
|
|
def initialize(self, opt):
|
|
self.opt = opt
|
|
pass
|
|
|
|
def load_data():
|
|
return None
|
|
|
|
|
|
|