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 | |
| parent | 30f065f3a2d8d4dc11c457d271cc622fc30a812b (diff) | |
recursive stuff
| -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 |
