summaryrefslogtreecommitdiff
path: root/neural_style.py
diff options
context:
space:
mode:
authorCameron <cysmith1010@gmail.com>2016-10-20 12:56:48 -0600
committerGitHub <noreply@github.com>2016-10-20 12:56:48 -0600
commit5ce83127e824122765cfdff633b8ca062abfce69 (patch)
tree81accbf3ae2dda2f0e7aaedf25e5f308efc38020 /neural_style.py
parent181647f8ac55ed8ec2eb536ce09532e9519afdb8 (diff)
Changed default style weight to 1e4
Diffstat (limited to 'neural_style.py')
-rw-r--r--neural_style.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/neural_style.py b/neural_style.py
index 4c08220..d709025 100644
--- a/neural_style.py
+++ b/neural_style.py
@@ -56,7 +56,7 @@ def parse_args():
help='Weight for the content loss function. (default: %(default)s)')
parser.add_argument('--style_weight', type=float,
- default=1e3,
+ default=1e4,
help='Weight for the style loss function. (default: %(default)s)')
parser.add_argument('--tv_weight', type=float,
@@ -836,4 +836,4 @@ def main():
else: render_single_image()
if __name__ == '__main__':
- main() \ No newline at end of file
+ main()