|
Deep Neural Network for MNIST Handwriting Recognition
1.0
Deep Neural Network for MNIST Handwriting Recognition
|
Utitlies for displaying details of processing the MNIST data set in the terminal screen. More...
Functions | |
| void | displayImageFrame (int row, int col) |
| Outputs a 28x28 text frame at a defined screen position. More... | |
| void | displayImage (MNIST_Image *img, int lbl, int cls, int row, int col) |
| Outputs a 28x28 MNIST image as charachters ("."s and "X"s) More... | |
| void | displayTrainingProgress (int imgCount, int errCount) |
| Outputs progress to the console while processing MNIST training images. More... | |
| void | displayTestingProgress (int imgCount, int errCount) |
| Outputs progress to the console while processing MNIST testing images. More... | |
Utitlies for displaying details of processing the MNIST data set in the terminal screen.
| void displayImage | ( | MNIST_Image * | img, |
| int | lbl, | ||
| int | cls, | ||
| int | row, | ||
| int | col | ||
| ) |
Outputs a 28x28 MNIST image as charachters ("."s and "X"s)
| img | Pointer to a MNIST image |
| lbl | Target classification |
| cls | Actual classification |
| row | Row on screen (x-coordinate) where to display the image |
| col | Column on screen (y-coordinate) where to display the image |
| void displayImageFrame | ( | int | row, |
| int | col | ||
| ) |
Outputs a 28x28 text frame at a defined screen position.
| row | Row of terminal screen |
| col | Column of terminal screen |
| void displayTestingProgress | ( | int | imgCount, |
| int | errCount | ||
| ) |
Outputs progress to the console while processing MNIST testing images.
| imgCount | Number of images already read from the MNIST file |
| errCount | Number of errors (images incorrectly classified) |
| void displayTrainingProgress | ( | int | imgCount, |
| int | errCount | ||
| ) |
Outputs progress to the console while processing MNIST training images.
| imgCount | Number of images already read from the MNIST file |
| errCount | Number of errors (images incorrectly classified) |
1.8.10