Skip to content Skip to sidebar Skip to footer

Clarifai - Face Detect - Model Does Not Exist

I'll be thankful if you can assist me on an issue with Clarifai API. I made a simple application of Face Detection using the API. I've followed the documentation and from my client

Solution 1:

The issue was solved when I used the perdict function By Model Version ID.

Therefore the code snippet is the following:

app.models
  .predict(
    {
      id: "a403429f2ddf4b49b307e318f00e528b",
      version: "34ce21a40cc24b6b96ffee54aabff139",
    },
    this.state.input
  )
  .then((response) =>setImageBox(this.calculateBox(response)))
  .catch((err) => {
    console.log("Clarifai Error:", err);
  });

I would like to thank the Clarifai support team for solving this issue.

Keep Safe!

Solution 2:

Clarifai Support here!

I apologize for the inconvenience. There was an error that happened on our side. We have resolved that issue and the model should be working fine. Please let us know if you are still receiving this error.

If you are still getting the error, please try using this model_id to get the face model and it should resolve the issue.

model_id= 'a403429f2ddf4b49b307e318f00e528b'

Best Regards, Clarifai Team

Post a Comment for "Clarifai - Face Detect - Model Does Not Exist"