You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -293,21 +293,21 @@ Finally, the object detection training pipeline must be configured. It defines w
293
293
294
294
Navigate to C:\tensorflow1\models\research\object_detection\samples\configs and copy the faster_rcnn_inception_v2_pets.config file into the \object_detection\training directory. Then, open the file with a text editor. There are several changes to make to the .config file, mainly changing the number of classes and examples, and adding the file paths to the training data.
295
295
296
-
Make the following changes to the faster_rcnn_inception_v2_pets.config file. Note: The path must be entered with two forward slashes after C: and single forward slashes elsewhere, or TensorFlow will give a file path error when trying to train the model!
296
+
Make the following changes to the faster_rcnn_inception_v2_pets.config file. Note: The path must be entered with single forward slashes, not backslashes, or TensorFlow will give a file path error when trying to train the model! Also, the path must be in double quotation marks ( " ), not single quotation marks ( ' ).
297
297
298
298
- Line 9. Change num_classes to the number of different objects you want the classifier to detect. For the above basketball, shirt, and shoe detector, it would be num_classes : 3 .
0 commit comments