I'm trying to get a tensorflow DNN code running on the gcloud. https://github.com/mozilla/DeepSpeech
Currently I've succeeded with getting the the trainer to run locally using
gcloud ml-engine local train --module-name trainer.task --package-path trainer/
But it doesn't seem to be working when I try pushing it on the cloud
gcloud ml-engine jobs submit training $JOB_NAME --job-dir $OUTPUT_PATH --runtime-version 1.0 --module-name trainer.task --package-path trainer/ --region $REGION
The error arises in the logs at:
Command "/usr/bin/python -u -c "import setuptools, tokenize;
__file__='/tmp/pip-build-AWOKoy/cryptography/setup.py';
f=getattr(tokenize, 'open', open)(__file__);
code=f.read().replace('\r\n', '\n');
f.close();
exec(compile(code, __file__, 'exec'))"
install --record /tmp/pip-bSegAw-record/install-record.txt --single-version-externally-managed --compile --user --prefix=" failed with error code 1 in /tmp/pip-build-AWOKoy/cryptography/
Module raised an exception for failing to call a subprocess Command '['pip', 'install', '--user', '--upgrade', '--force-reinstall', u'trainer-0.1.tar.gz']' returned non-zero exit status 1.