Skip to content

Instantly share code, notes, and snippets.

@nhammad
Created July 30, 2021 22:16
Show Gist options
  • Save nhammad/18ba1a6ad022473e1317b09eb745fe39 to your computer and use it in GitHub Desktop.
Save nhammad/18ba1a6ad022473e1317b09eb745fe39 to your computer and use it in GitHub Desktop.
function gotResult() {
classifier.current.classify(capture.current, (err: any, result: any) => {
console.log('result', result)
setPrediction(result[0].label);
setConfidence(result[0].confidence);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment