Deep Neural Network for MNIST Handwriting Recognition  1.0
Deep Neural Network for MNIST Handwriting Recognition
mnist-stats.h
Go to the documentation of this file.
1 
11 #ifndef MNIST_STATS_HEADER
12 #define MNIST_STATS_HEADER
13 
14 
15 
22 void displayImageFrame(int y, int x);
23 
24 
25 
26 
36 void displayImage(MNIST_Image *img, int lbl, int cls, int row, int col);
37 
38 
39 
40 
47 void displayTrainingProgress(int imgCount, int errCount);
48 
49 
50 
51 
58 void displayTestingProgress(int imgCount, int errCount);
59 
60 
61 
62 
63 #endif
void displayTestingProgress(int imgCount, int errCount)
Outputs progress to the console while processing MNIST testing images.
Definition: mnist-stats.c:111
void displayImageFrame(int y, int x)
Outputs a 28x28 text frame at a defined screen position.
Definition: mnist-stats.c:26
void displayImage(MNIST_Image *img, int lbl, int cls, int row, int col)
Outputs a 28x28 MNIST image as charachters ("."s and "X"s)
Definition: mnist-stats.c:54
void displayTrainingProgress(int imgCount, int errCount)
Outputs progress to the console while processing MNIST training images.
Definition: mnist-stats.c:88
Data block defining a MNIST image.
Definition: mnist-utils.h:65