Skip to content

Instantly share code, notes, and snippets.

@Yuvnish017
Created July 10, 2021 06:50
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 Yuvnish017/a37d82f20c6868a2ec6fade27491a712 to your computer and use it in GitHub Desktop.
Save Yuvnish017/a37d82f20c6868a2ec6fade27491a712 to your computer and use it in GitHub Desktop.
Parkinson_disease_detection
figure = plt.figure(figsize=(2, 2))
img_healthy = np.squeeze(image_healthy, axis=0)
plt.imshow(img_healthy)
plt.axis('off')
plt.title(f'Prediction by the model: {labels[np.argmax(ypred_healthy[0], axis=0)]}')
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment