diff options
| author | junyanz <junyanz@berkeley.edu> | 2017-04-18 03:38:47 -0700 |
|---|---|---|
| committer | junyanz <junyanz@berkeley.edu> | 2017-04-18 03:38:47 -0700 |
| commit | c99ce7c4e781712e0252c6127ad1a4e8021cc489 (patch) | |
| tree | ba99dfd56a47036d9c1f18620abf4efc248839ab /data/base_data_loader.py | |
first commit
Diffstat (limited to 'data/base_data_loader.py')
| -rw-r--r-- | 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 100644 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 + + + |
