summaryrefslogtreecommitdiff
path: root/neural_style.py
diff options
context:
space:
mode:
Diffstat (limited to 'neural_style.py')
-rw-r--r--neural_style.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/neural_style.py b/neural_style.py
index e583381..d0bb45f 100644
--- a/neural_style.py
+++ b/neural_style.py
@@ -61,7 +61,7 @@ def parse_args():
parser.add_argument('--tv_weight', type=float,
default=1e-3,
- help='Weight for the transvariational loss function. Set small (e.g. 1e-3). (default: %(default)s)')
+ help='Weight for the total variational loss function. Set small (e.g. 1e-3). (default: %(default)s)')
parser.add_argument('--temporal_weight', type=float,
default=2e2,
@@ -70,7 +70,7 @@ def parse_args():
parser.add_argument('--content_loss_function', type=int,
default=1,
choices=[1, 2, 3],
- help='Different constants for the content layer loss functions. (default: %(default)s)')
+ help='Different constants for the content layer loss function. (default: %(default)s)')
parser.add_argument('--content_layers', type=str,
default=['conv4_2'],
@@ -836,4 +836,4 @@ def main():
else: render_single_image()
if __name__ == '__main__':
- main()
+ main() \ No newline at end of file