diff options
Diffstat (limited to 'data/base_data_loader.py')
| -rwxr-xr-x | data/base_data_loader.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/data/base_data_loader.py b/data/base_data_loader.py new file mode 100755 index 0000000..0e1deb5 --- /dev/null +++ b/data/base_data_loader.py @@ -0,0 +1,14 @@ + +class BaseDataLoader(): + def __init__(self): + pass + + def initialize(self, opt): + self.opt = opt + pass + + def load_data(): + return None + + + |
