Skip to content

Instantly share code, notes, and snippets.

@zaidalyafeai
Created September 7, 2018 08:08
Show Gist options
  • Save zaidalyafeai/a8f31d961282a0dad1ee447bccce0f91 to your computer and use it in GitHub Desktop.
Save zaidalyafeai/a8f31d961282a0dad1ee447bccce0f91 to your computer and use it in GitHub Desktop.
function predict(imgData) {
return tf.tidy(() => {
//get the prediction
const gImg = model.predict(preprocess(imgData))
//post process
const postImg = postprocess(gImg)
return postImg
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment