November 2016
Beginner to intermediate
941 pages
21h 55m
English
Now that we know how to interact with the data, let's build a neural network-based optical character-recognition system.
import numpy as np import neurolab as nl
# Input file input_file = 'letter.data'
20 datapoints:# Number of datapoints to load from the input file num_datapoints = 20
# Distinct characters orig_labels ...