I tried to run tensorflow-wavenet on the google cloud ml-engine with gcloud ml-engine jobs submit training but the cloud job crashed when it was trying to read
gcloud ml-engine jobs submit training
Python's open function cannot read files from GCS. You will need to use a library capable of doing so. TensorFlow includes one such library:
open
import tensorflow as tf from tensorflow.python.lib.io import file_io with file_io.FileIO(args.wavenet_params, 'r') as f: wavenet_params = json.load(f)