August 2018
Intermediate to advanced
438 pages
12h 3m
English
We will now evaluate the five different models we built so far by first testing them on a sample test image, then visualizing how a CNN model actually tries to analyze and extract features from the image, and finally by testing each model's performance on our test dataset. The code for this section is available in the Model Performance Evaluations.ipynb Jupyter Notebook in case you want to execute the code and follow along with the chapter. We have also built a nifty utility module called model_evaluation_utils, which we will be using to evaluate the performance of our deep learning models. Let's load up the following dependencies before getting started:
import glob import numpy as np import matplotlib.pyplot ...
Read now
Unlock full access