Commit 5978a4a1 authored by Neal Wu's avatar Neal Wu Committed by GitHub
Browse files

Merge pull request #1182 from tensorflow/fix-comment-format

Fix up the inception float comment
parents 015490f3 2e165569
......@@ -102,8 +102,8 @@ def GetItem(name, root, index=0):
def GetInt(name, root, index=0):
# In some XML annotation files, the point value are not int, but float.
# So adding a float function to avoid ValueError.
# In some XML annotation files, the point values are not integers, but floats.
# So we add a float function to avoid ValueError.
return int(float(GetItem(name, root, index)))
......
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