Skip to content

Instantly share code, notes, and snippets.

@Visrozar
Created December 15, 2018 05:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Visrozar/144909dd4a33d97d83e26c88a6643c43 to your computer and use it in GitHub Desktop.
Save Visrozar/144909dd4a33d97d83e26c88a6643c43 to your computer and use it in GitHub Desktop.
Clarifai API - Create a Model
app.models.create(
"golden retriever",
[
{ "id": "golden retriever" }
]
).then(
function (response) {
console.log(response);
},
function (err) {
console.log(err);
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment