我必须手动上传训练数据标签 CSV 并单击“训练”来训练模型。我想最好用python自动化所有这些。
问问题
107 次
2 回答
1
您可以使用google-cloud-automl
Python 自动执行此操作。例如:
from google.cloud import automl_v1beta1
client = automl_v1beta1.AutoMlClient()
parent = client.location_path('[PROJECT]', '[LOCATION]')
# Create the dataset
dataset = {} . # TODO: Initialize `dataset`
response = client.create_dataset(parent, dataset)
# Create the model
model = {} # TODO: Initialize `model`
response = client.create_model(parent, model)
def callback(operation_future):
result = operation_future.result() # Handle result
response.add_done_callback(callback)
metadata = response.metadata()
于 2019-07-19T17:50:41.587 回答
0
我使用 AutoML RESTapi 创建数据集来训练模型。虽然如果我想在更多数据上重新训练模型,我必须删除之前训练的模型并创建并训练一个新模型。
于 2019-07-22T16:33:21.267 回答