Skip to content

Instantly share code, notes, and snippets.

@vmussak
Created October 4, 2018 02:22
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 vmussak/b01d84c40a5f1baa9b42002a532af397 to your computer and use it in GitHub Desktop.
Save vmussak/b01d84c40a5f1baa9b42002a532af397 to your computer and use it in GitHub Desktop.
async function treinarReconhecimento() {
let config = {
method: 'POST',
uri: `${faceApi}/largefacelists/minha-lista/train`,
headers: {
'Ocp-Apim-Subscription-Key': faceApiKey
}
};
let response = await request(config);
return response;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment