mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
fast-neural-doodle: fix script name
This commit is contained in:
parent
1280b110cb
commit
61fe09d670
2 changed files with 2 additions and 2 deletions
|
@ -43,12 +43,12 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
export pythonpath="$PYTHONPATH"
|
export pythonpath="$PYTHONPATH"
|
||||||
|
|
||||||
substituteAll "${./get-hdf5-mask.sh}" "$out/bin/get-hdf5-mask"
|
substituteAll "${./get-mask-hdf5.sh}" "$out/bin/get-mask-hdf5"
|
||||||
substituteAll "${./fast-neural-doodle.sh}" "$out/bin/fast-neural-doodle"
|
substituteAll "${./fast-neural-doodle.sh}" "$out/bin/fast-neural-doodle"
|
||||||
|
|
||||||
chmod a+x "$out/bin"/*
|
chmod a+x "$out/bin"/*
|
||||||
|
|
||||||
"$out/bin/get-hdf5-mask" --n_colors=4 --style_image data/Renoir/style.png --style_mask data/Renoir/style_mask.png --target_mask data/Renoir/target_mask.png --out_hdf5 masks.hdf5
|
"$out/bin/get-mask-hdf5" --n_colors=4 --style_image data/Renoir/style.png --style_mask data/Renoir/style_mask.png --target_mask data/Renoir/target_mask.png --out_hdf5 masks.hdf5
|
||||||
|
|
||||||
"$out/bin/fast-neural-doodle" -gpu -1 -masks_hdf5 masks.hdf5 -num_iterations 1
|
"$out/bin/fast-neural-doodle" -gpu -1 -masks_hdf5 masks.hdf5 -num_iterations 1
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in a new issue