diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-04-18 12:55:39 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-04-18 12:55:39 +0200 |
| commit | 676c66164629820c21d8a629145add18212713bf (patch) | |
| tree | 19592aba089e956eec42d00aa66085a859e58154 /data/recursive_dataset.py | |
| parent | 30f065f3a2d8d4dc11c457d271cc622fc30a812b (diff) | |
recursive stuff
Diffstat (limited to 'data/recursive_dataset.py')
| -rw-r--r-- | data/recursive_dataset.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/data/recursive_dataset.py b/data/recursive_dataset.py index d85184e..c95654d 100644 --- a/data/recursive_dataset.py +++ b/data/recursive_dataset.py @@ -33,5 +33,8 @@ class RecursiveDataset(BaseDataset): def __len__(self): return float("inf") + def append(self, path): + self.next_image = path + def name(self): return 'RecursiveImageDataset' |
