can i train a Tensorflow Model in Google cloud machine learning Engine in python without using the commande Line :
`gcloud ml-engine jobs submit training $JOB_NAME \
--job-dir $OUTPUT_PATH \
--runtime-version 1.2 \
--module-name trainer.task \
--package-path trainer/ \
--region $REGION \ `
i aim to run the task from my python script
Yes.
gcloud ml-engineis just the CLI to the CloudML Engine REST API. The API documentation can be found here. Sample code can be found here; click on the Python tab.