diff options
| author | Cameron <cysmith1010@gmail.com> | 2016-10-09 22:41:18 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-10-09 22:41:18 -0600 |
| commit | d2ace40a4df3d5e64db8d2189a9a9bc2f69207bf (patch) | |
| tree | d807cee53f85c57c20fab17f8591ea6023984c87 | |
| parent | 71c7f35aa4148769ce5d682df54c0fe846771057 (diff) | |
Add files via upload
| -rw-r--r-- | neural_style.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/neural_style.py b/neural_style.py index 1715ef2..fffa51f 100644 --- a/neural_style.py +++ b/neural_style.py @@ -1,4 +1,3 @@ -import tensorflow.python import tensorflow as tf import numpy as np import scipy.io @@ -647,7 +646,7 @@ def write_image_output(output_img, content_img, style_imgs, init_img): path = os.path.join(out_dir, str(index)+'_style.png') write_image(path, style_img) index += 1 - + # save the configuration settings out_file = os.path.join(out_dir, 'meta_data.txt') f = open(out_file, 'w') |
