The /tmp/model folder on the gcloud instance seems to be empty. It looks like the files are not been copied over correctly from the storage account even though the stderr log says otherwise.
Please how do I go about this and what am I missing. I am able to create the model version successfully when I make a request to predict.

Here is the command used to create the model version:
gcloud beta ai-platform versions create $VERSION_NAME --model $MODEL_NAME --runtime-version 1.15 --python-version 3.7 --origin gs://$BUCKET_NAME/custom_prediction_routine/model/ --package-uris gs://$BUCKET_NAME/custom_prediction_routine/custom_predict_code-0.1.tar.gz --prediction-class predictor.MyPredictor
And this is the from_path class method:
@classmethod
def from_path(cls, model_dir):
sys.stderr.write(str(model_dir))
return cls(model_dir)
gcloud beta ai-platform versions create $VERSION_NAME --model $MODEL_NAME --runtime-version 1.15 --python-version 3.7 --origin gs://$BUCKET_NAME/custom_prediction_routine/model/ --package-uris gs://$BUCKET_NAME/custom_prediction_routine/custom_predict_code-0.1.tar.gz --prediction-class predictor.MyPredictorAnd this is the from path class methoddef from_path(cls, model_dir): sys.stderr.write(str(model_dir)) return cls(model_dir)This is the method giving the wrong path - Oyinkansola Ariyo