Character Recognition
Overview
This example demonstrates using
tensor-flow
to learn to recognize the digits 1,2,3,4,5,6,7,8,9.
The digits are encoded as arrays of arrays. The following shows how the digit seven is encoded.
let matrix7 = [
[1,1,1,1],
[0,0,0,1],
[0,0,1,0],
[0,1,0,0],
[1,0,0,0]
];
When displayed, the digits appear as
Demos and Tutorials
Tensor Flow - Perceptron
This example demonstrates creating a neural network in
tensor-flow
to perform recognition of the 9 digits given above.
Tensor Flow - Multilayer Neural Network
This example demonstrates creating a neural network in
tensor-flow
to perform recognition of the 9 digits given above.