2

我正在尝试使用提供的示例从 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.  
4

2 回答 2

0

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

create_dataset("myproj-123456", "us-central1", "my_dataset_id", "en", "de")
于 2019-04-18T04:25:08.227 回答
0
  1. 我克隆了 repo "python-docs-samples" :

$ git clone https://github.com/GoogleCloudPlatform/python-docs-samples.git

  1. 我导航到 automl 示例

$ cd /home/MY_USER/python-docs-samples/language/automl/

  1. 我为 [1] 设置了环境变量:

    • GOOGLE_APPLICATION_CREDENTIALS
    • PROJECT_ID
    • REGION_NAME
  2. 我输入:

$ python automl_natural_language_dataset.py create_dataset automltest1 False

  1. 我收到了这条消息:

数据集名称:projects/198768927566/locations/us-central1/datasets/TCN7889001684301386365 数据集id:TCN7889001684301386365 数据集显示名称:automltest1 文本分类数据集元数据:classification_type:MULTICLASS

数据集示例计数:0 数据集创建时间:秒:1569367227 纳秒:873147000

  1. 我将环境变量设置为:

    • DATASET_ID

请注意,我在第 5 步得到了这个。

  1. 我输入:

python automl_natural_language_dataset.py import_data $DATASET_ID "gs://$PROJECT_ID-lcm/complaints_manual.csv"

  1. 我收到了这条消息:

处理导入... 数据集已导入。

于 2019-09-25T00:21:27.130 回答