summaryrefslogtreecommitdiff
path: root/test.sh
diff options
context:
space:
mode:
authorjules <jules@asdf.us>2018-05-01 20:20:27 +0200
committerjules <jules@asdf.us>2018-05-01 20:20:27 +0200
commit20662ee305cd21838078eab97568bbbbb9acffd0 (patch)
tree16b58c750be5e054c7d9e266c8e2481f359b400c /test.sh
parent5979723a35c577ffe70c1107415199444fb5c7fe (diff)
new scripts using canny
Diffstat (limited to 'test.sh')
-rwxr-xr-xtest.sh38
1 files changed, 38 insertions, 0 deletions
diff --git a/test.sh b/test.sh
new file mode 100755
index 0000000..c25c987
--- /dev/null
+++ b/test.sh
@@ -0,0 +1,38 @@
+dataset="wood"
+
+#/home/lens/Desktop/dataset-random.pl
+#
+#python datasets/combine_A_and_B.py \
+# --fold_A "$HOME/Desktop/thumbs/$dataset/A" \
+# --fold_B "$HOME/Desktop/thumbs/$dataset/B" \
+# --fold_AB "./datasets/$dataset/"
+
+# python train.py \
+# --dataroot "./datasets/$dataset" \
+# --name "$dataset" \
+# --model pix2pix \
+# --loadSize 256 \
+# --fineSize 256 \
+# --which_model_netG unet_256 \
+# --which_direction AtoB \
+# --lambda_B 100 \
+# --dataset_mode aligned \
+# --which_epoch latest \
+# --no_lsgan --norm batch --pool_size 0
+# --continue_train \
+
+python test.py \
+ --dataroot "/home/lens/Desktop/thumbs/$dataset/A/train/" \
+ --name "$dataset" \
+ --start_img "/home/lens/Desktop/thumbs/$dataset/A/train/frame_1008.png" \
+ --how_many 1000 \
+ --model test \
+ --aspect_ratio 1.777777 \
+ --which_model_netG unet_256 \
+ --which_direction AtoB \
+ --dataset_mode test \
+ --loadSize 256 \
+ --fineSize 256 \
+ --norm batch
+
+