Commit cb1e6111 authored by Neal Wu's avatar Neal Wu
Browse files

Fix typo

parent 7e2435e5
...@@ -270,7 +270,7 @@ def inception_v1(inputs, ...@@ -270,7 +270,7 @@ def inception_v1(inputs,
is_training: whether is training or not. is_training: whether is training or not.
dropout_keep_prob: the percentage of activation values that are retained. dropout_keep_prob: the percentage of activation values that are retained.
prediction_fn: a function to get predictions out of logits. prediction_fn: a function to get predictions out of logits.
spatial_squeeze: if True, logits is of shape is [B, C], if false logits is spatial_squeeze: if True, logits is of shape [B, C], if false logits is
of shape [B, 1, 1, C], where B is batch_size and C is number of classes. of shape [B, 1, 1, C], where B is batch_size and C is number of classes.
reuse: whether or not the network and its variables should be reused. To be reuse: whether or not the network and its variables should be reused. To be
able to reuse 'scope' must be given. able to reuse 'scope' must be given.
......
...@@ -443,7 +443,7 @@ def inception_v2(inputs, ...@@ -443,7 +443,7 @@ def inception_v2(inputs,
usage will be to set this value in (0, 1) to reduce the number of usage will be to set this value in (0, 1) to reduce the number of
parameters or computation cost of the model. parameters or computation cost of the model.
prediction_fn: a function to get predictions out of logits. prediction_fn: a function to get predictions out of logits.
spatial_squeeze: if True, logits is of shape is [B, C], if false logits is spatial_squeeze: if True, logits is of shape [B, C], if false logits is
of shape [B, 1, 1, C], where B is batch_size and C is number of classes. of shape [B, 1, 1, C], where B is batch_size and C is number of classes.
reuse: whether or not the network and its variables should be reused. To be reuse: whether or not the network and its variables should be reused. To be
able to reuse 'scope' must be given. able to reuse 'scope' must be given.
......
...@@ -453,7 +453,7 @@ def inception_v3(inputs, ...@@ -453,7 +453,7 @@ def inception_v3(inputs,
usage will be to set this value in (0, 1) to reduce the number of usage will be to set this value in (0, 1) to reduce the number of
parameters or computation cost of the model. parameters or computation cost of the model.
prediction_fn: a function to get predictions out of logits. prediction_fn: a function to get predictions out of logits.
spatial_squeeze: if True, logits is of shape is [B, C], if false logits is spatial_squeeze: if True, logits is of shape [B, C], if false logits is
of shape [B, 1, 1, C], where B is batch_size and C is number of classes. of shape [B, 1, 1, C], where B is batch_size and C is number of classes.
reuse: whether or not the network and its variables should be reused. To be reuse: whether or not the network and its variables should be reused. To be
able to reuse 'scope' must be given. able to reuse 'scope' must be given.
......
...@@ -159,7 +159,7 @@ def resnet_v1(inputs, ...@@ -159,7 +159,7 @@ def resnet_v1(inputs,
ratio of input to output spatial resolution. ratio of input to output spatial resolution.
include_root_block: If True, include the initial convolution followed by include_root_block: If True, include the initial convolution followed by
max-pooling, if False excludes it. max-pooling, if False excludes it.
spatial_squeeze: if True, logits is of shape is [B, C], if false logits is spatial_squeeze: if True, logits is of shape [B, C], if false logits is
of shape [B, 1, 1, C], where B is batch_size and C is number of classes. of shape [B, 1, 1, C], where B is batch_size and C is number of classes.
reuse: whether or not the network and its variables should be reused. To be reuse: whether or not the network and its variables should be reused. To be
able to reuse 'scope' must be given. able to reuse 'scope' must be given.
......
...@@ -158,7 +158,7 @@ def resnet_v2(inputs, ...@@ -158,7 +158,7 @@ def resnet_v2(inputs,
include_root_block: If True, include the initial convolution followed by include_root_block: If True, include the initial convolution followed by
max-pooling, if False excludes it. If excluded, `inputs` should be the max-pooling, if False excludes it. If excluded, `inputs` should be the
results of an activation-less convolution. results of an activation-less convolution.
spatial_squeeze: if True, logits is of shape is [B, C], if false logits is spatial_squeeze: if True, logits is of shape [B, C], if false logits is
of shape [B, 1, 1, C], where B is batch_size and C is number of classes. of shape [B, 1, 1, C], where B is batch_size and C is number of classes.
reuse: whether or not the network and its variables should be reused. To be reuse: whether or not the network and its variables should be reused. To be
able to reuse 'scope' must be given. able to reuse 'scope' must be given.
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment