Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fc91858

Browse files
authored
Update the runtime version in bash script
The bash script to submit training job for pets detection has runtime-version of 1.8. This will trigger `TypeError: non_max_suppression() got an unexpected keyword argument 'score_threshold'` on the Google Cloud since 1.8 and older does not support this keyword argument. Therefore, update this runtime version to 1.9, which is the most recent runtime version that is published on June 27, 2018. See tensorflow#5056 https://cloud.google.com/ml-engine/docs/tensorflow/runtime-version-list
1 parent fe6536b commit fc91858

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

research/object_detection/g3doc/running_pets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ To start training and evaluation, execute the following command from the
216216
```bash
217217
# From tensorflow/models/research/
218218
gcloud ml-engine jobs submit training `whoami`_object_detection_pets_`date +%m_%d_%Y_%H_%M_%S` \
219-
--runtime-version 1.8 \
219+
--runtime-version 1.9 \
220220
--job-dir=gs://${YOUR_GCS_BUCKET}/model_dir \
221221
--packages dist/object_detection-0.1.tar.gz,slim/dist/slim-0.1.tar.gz,/tmp/pycocotools/pycocotools-2.0.tar.gz \
222222
--module-name object_detection.model_main \

0 commit comments

Comments
 (0)