gcloud 实例上的 /tmp/model 文件夹似乎是空的。即使标准错误日志另有说明,文件似乎也没有从存储帐户正确复制。
请问我该怎么做,我错过了什么。当我提出预测请求时,我能够成功创建模型版本。
这是用于创建模型版本的命令:
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
这是from_path
类方法:
@classmethod
def from_path(cls, model_dir):
sys.stderr.write(str(model_dir))
return cls(model_dir)