cvat-ai / cvat

Annotate better with CVAT, the industry-leading data engine for machine learning. Used and trusted by teams at any scale, for data of any scale.
https://cvat.ai
MIT License
12.62k stars 3.01k forks source link

(nuclio) Failed to start yolo-v3-tf #6138

Closed rongirl closed 1 year ago

rongirl commented 1 year ago

My actions before raising this issue

Hello, I deployed successfully yolo-v3-tf

nuctl deploy --project-name cvat \
  --path serverless/openvino/omz/public/yolo-v3-tf/nuclio \
  --volume `pwd`/serverless/common:/opt/nuclio/common \
  --platform local

Then I tried to test the deployed model

image=$(curl https://upload.wikimedia.org/wikipedia/en/7/7d/Lenna_%28test_image%29.png --output - | base64 | tr -d '\n')
cat << EOF > /tmp/input.json
{"image": "$image"}
EOF
cat /tmp/input.json | nuctl invoke openvino.omz.public.yolo-v3-tf -c 'application/json'

I got this error

Error - Function not found: openvino.omz.public.yolo-v3-tf @ nuclio
    /nuclio/pkg/nuctl/command/invoke.go:132

Call stack:
Failed to invoke function
    /nuclio/pkg/nuctl/command/invoke.go:132

How can I solve it? Thank you.

Your Environment

Docker 23.0.6 KDE neon 5.27 Nuctl 1.8.14

bsekachev commented 1 year ago

@rongirl

Hello, I deployed successfully yolo-v3-tf

Nuclio literally says that the model does not exist. What is output of nuctl get functions?