Hi,
I'm stuck at following error message when I try to deploy custom model to vertex-ai endpoint.
Command:
gcloud ai endpoints deploy-model {ENDPOINT_ID}\
--region={REGION} \
--model={MODEL_ID} \
--display-name={DEPLOYED_MODEL_NAME} \
--machine-type=n1-standard-2 \
--enable-access-logging \
--enable-container-logging \
--min-replica-count=1 \
--max-replica-count=100 \
--traffic-split=0=100
Error:
Using endpoint [https://europe-west3-aiplatform.googleapis.com/] ERROR: (gcloud.beta.ai.endpoints.deploy-model) Model server terminated: model server container terminated: exit_code: 0
reason: "Completed"
started_at { seconds: 1668599448 } finished_at { seconds: 1668599448 } .
The same error appears if I try to deploy from UI.
Note: I was able to import my custom model, and also I can create a new endpoint, but if I try to deploy model or make batch prediction this error appears. Where am I wrong?
Please help me