summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcam <cameron@ideum.com>2016-10-15 15:07:12 -0600
committercam <cameron@ideum.com>2016-10-15 15:07:12 -0600
commit6ebf3429d2279bd0fddbacf1d674c6f1f04cea04 (patch)
treeece802e4549fdc3a58e46ba1b3cdc7d07618bd68
parentd11c3adfc2782e340e6390526115a3911e11abab (diff)
Fixed typos
-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