Project- Predicting Noisy Images using KNN Classifier

10 / 10

Predicting Noisy Images - Predict Noisy Image

Finally, we will use our model to predict noisy images.

INSTRUCTIONS
  1. Predict any noisy image using the model we created:

    clean_digit = << your code goes here >>.predict([X_test_mod[5000]])
    
  2. Now show the corresponding image:

    showImage(clean_digit)
    
  3. Now let's see the original image:

    showImage(y_test_mod[5000])
    
See Answer

No hints are availble for this assesment


Note - Having trouble with the assessment engine? Follow the steps listed here

Loading comments...