Trying to submit a Google Cloud ML Training job for Tensorflow Object Detection task and I am following the official guideline
Following is the job that I am submitting:
export CONFIG=trainer/cloud.yaml
export TRAIN_DIR=kt-1000/training
export PIPELINE_CONFIG=kt-1000/training/ssd_mobilenet_v1_pets.config
gcloud ml-engine jobs submit training object_detection_`date +%s` \
--job-dir=gs://${TRAIN_DIR} \
--packages dist/object_detection-0.1.tar.gz,slim/dist/slim
0.1.tar.gz \
--module-name object_detection.train \
--region asia-east1-a \
--config ${CONFIG} \
-- \
--train_dir=gs://${TRAIN_DIR} \
--pipeline_config_path=gs://${PIPELINE_CONFIG}
I am getting the following error message:
ERROR: (gcloud.ml-engine.jobs.submit.training) unrecognized arguments:
The Error message however does not point out which argument/s is unrecognised though!!!!
Any help on this will be truly appreciated
Thanks,
Devjothi