Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ModelZoo
ResNet50_tensorflow
Commits
d4cd02b9
Unverified
Commit
d4cd02b9
authored
Mar 22, 2018
by
Yukun Zhu
Committed by
GitHub
Mar 22, 2018
Browse files
Merge pull request #3686 from hsm207/patch-2
Fix DeprecationWarning
parents
51ea4925
908742dd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
research/deeplab/model_test.py
research/deeplab/model_test.py
+1
-1
No files found.
research/deeplab/model_test.py
View file @
d4cd02b9
...
@@ -78,7 +78,7 @@ class DeeplabModelTest(tf.test.TestCase):
...
@@ -78,7 +78,7 @@ class DeeplabModelTest(tf.test.TestCase):
# Expected number of logits = len(image_pyramid) + 1, since the
# Expected number of logits = len(image_pyramid) + 1, since the
# last logits is merged from all the scales.
# last logits is merged from all the scales.
self
.
assertEqual
s
(
len
(
scales_to_logits
),
expected_num_logits
[
i
])
self
.
assertEqual
(
len
(
scales_to_logits
),
expected_num_logits
[
i
])
def
testForwardpassDeepLabv3plus
(
self
):
def
testForwardpassDeepLabv3plus
(
self
):
crop_size
=
[
33
,
33
]
crop_size
=
[
33
,
33
]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment