首页 > 解决方案 > Google automl_v1beta1 错误“提供的位置 ID 无效”

问题描述

我正在尝试使用提供的示例从 google colab 调用训练有素的模型。

但是有一个错误。

谁知道这是 beta 错误还是我没有正确设置一些东西?

提前致谢。

编码

from google.cloud import automl_v1beta1 as automl

automl_client = automl.AutoMlClient()

# Create client for prediction service.
prediction_client = 
automl.PredictionServiceClient().from_service_account_json(
        'XXXXX.json')

# Get the full path of the model.
model_full_id = automl_client.model_path(
    project_id, compute_region, model_id
)

# Read the file content for prediction.
#with open(file_path, "rb") as content_file:
snippet = "fsfsf" #content_file.read()

# Set the payload by giving the content and type of the file.
payload = {"text_snippet": {"content": snippet, "mime_type": "text/plain"}}

# params is additional domain-specific parameters.
# currently there is no additional parameters supported.
params = {}
response = prediction_client.predict(model_full_id, payload, params)
print("Prediction results:")
for result in response.payload:
    print("Predicted class name: {}".format(result.display_name))
    print("Predicted class score: {}".format(result.classification.score))

错误消息^

 InvalidArgument: 400 List of found errors: 1.Field: name; Message: The provided location ID is not valid.  

标签: google-cloud-automl

解决方案


您必须使用支持 AutoML beta 的区域。这对我有用:

create_dataset("myproj-123456", "us-central1", "my_dataset_id", "en", "de")

推荐阅读