diff options
| author | jules@lens <julescarbon@gmail.com> | 2018-04-19 00:13:32 +0200 |
|---|---|---|
| committer | jules@lens <julescarbon@gmail.com> | 2018-04-19 00:13:32 +0200 |
| commit | a073c74360512e24a9b2d1e76fd38cb3aa5e88d2 (patch) | |
| tree | 77b5fb1d9cf2d2803c1f68404fe57693cc8ebce9 /test.py | |
| parent | 92223bd44b891536bf0423f9b7f43c29414331c6 (diff) | |
training!!
Diffstat (limited to 'test.py')
| -rw-r--r-- | test.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -7,6 +7,7 @@ from util import html import subprocess +from time import sleep if __name__ == '__main__': opt = TestOptions().parse() @@ -37,9 +38,10 @@ if __name__ == '__main__': if dataset.name() == 'RecursiveDatasetDataLoader': last_image = "results/woodscaled_4_pix2pix/test_latest/images/" + ims[1] next_image = "recursive/frame_{:04d}.png".format(i+1) + print(last_image) + print(next_image) cmd = ("/bin/cp", last_image, next_image) process = subprocess.Popen(cmd, stdout=subprocess.PIPE) output, error = process.communicate() - dataset.append(next_image) webpage.save() |
