Skip to content

Commit b91173c

Browse files
Changed 'Return None' to 'None' in step 4
1 parent 9109e5b commit b91173c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ def class_text_to_int(row_label):
235235
elif row_label == 'ace':
236236
return 6
237237
else:
238-
return None
238+
None
239239
```
240240
With this:
241241
```
@@ -248,7 +248,7 @@ def class_text_to_int(row_label):
248248
elif row_label == 'shoe':
249249
return 3
250250
else:
251-
return None
251+
None
252252
```
253253
Then, generate the TFRecord files by issuing these commands from the \object_detection folder:
254254
```

0 commit comments

Comments
 (0)