0

cloudml-samples/flowers/sample.sh 的Google 示例代码中,第 52 行和第 64 行之间是参数“runtime_version”:

# Training on CloudML is quick after preprocessing.  If you ran the above
# commands asynchronously, make sure they have completed before calling this one.
gcloud ml-engine jobs submit training "$JOB_ID" \
  --stream-logs \
  --module-name trainer.task \
  --package-path trainer \
  --staging-bucket "$BUCKET" \
  --region us-central1 \
  --runtime_version=1.0 \
  -- \
  --output_path "${GCS_PATH}/training" \
  --eval_data_paths "${GCS_PATH}/preproc/eval*" \
  --train_data_paths "${GCS_PATH}/preproc/train*"

不应该将“runtime_version”替换为“runtime-version”以避免错误吗?

4

1 回答 1

0

是的。我已经提交了PR(将来,请不要犹豫自己这样做)

于 2017-03-28T21:59:11.210 回答