diff options
| -rw-r--r-- | data/recursive_dataset.py | 3 | ||||
| -rw-r--r-- | recursive.sh | 10 |
2 files changed, 13 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' diff --git a/recursive.sh b/recursive.sh new file mode 100644 index 0000000..d23a3fe --- /dev/null +++ b/recursive.sh @@ -0,0 +1,10 @@ +python test.py \ + --dataroot /home/lens/Desktop/thumbs/woodscaled_4/A/train/frame_0000.png \ + --name woodscaled_4_pix2pix \ + --how_many 1 \ + --model test \ + --which_model_netG unet_256 \ + --which_direction AtoB \ + --lambda_B 100 \ + --dataset_mode aligned \ + --no_lsgan --norm batch --pool_size 0 |
