我已经在Google自动ML中训练了我的数据集。现在,我想通过文本项目通过CSV来预测其标签。不确定如何继续
已通过标签通过了17k文本项目。
已经看到REST API&python代码执行。
export GOOGLE_APPLICATION_CREDENTIALS=key-file-path
curl -X POST -H "Authorization: Bearer $(gcloud auth application-default print-access-token)" -H "Content-Type: application/json" https://automl.googleapis.com/v1beta1/projects/ticket-classification-poc/locations/us-central1/models/TCN8669499774734365168:predict -d '{ "payload" : { "textSnippet": { "content": "YOUR TEXT HERE", "mime_type": "text/plain" }, } }' Output : Need to pass future text items in bulk for prediction
您需要有一个循环才能通过编程方式浏览所有CSV项目,然后一一发送。