You will need Python 3.6x 64-bit from https://www.python.org/:
You will also need the following libraries:
from keras.models import Sequential
from keras.layers import Conv2D
from keras.layers import MaxPooling2D
from keras.layers import Flatten
from keras.layers import Dense
from keras.preprocessing.image import ImageDataGenerator
from keras.models import model_from_json
from keras.models import save_model
from keras.models import load_model
from keras import backend as K
from pprint import pprint
import Numpy as np
import matplotlib.image as mpimg
import scipy.ndimage.filters as filter
import matplotlib.pyplot as plt
Programs, GitHub Chapter09:
- CNN_STRATEGY_MODEL.py
- Edge_detection_Kernel.py
- ReLU.py
Check out the following video to see the code in action: