|
<html><head><title>dlib C++ Library - mnist_abstract.h</title></head><body bgcolor='white'><pre> |
|
<font color='#009900'>// Copyright (C) 2015 Davis E. King ([email protected]) |
|
</font><font color='#009900'>// License: Boost Software License See LICENSE.txt for the full license. |
|
</font><font color='#0000FF'>#undef</font> DLIB_MNIST_ABSTRACT_Hh_ |
|
<font color='#0000FF'>#ifdef</font> DLIB_MNIST_ABSTRACT_Hh_ |
|
|
|
<font color='#0000FF'>#include</font> <font color='#5555FF'><</font>string<font color='#5555FF'>></font> |
|
<font color='#0000FF'>#include</font> <font color='#5555FF'><</font>vector<font color='#5555FF'>></font> |
|
<font color='#0000FF'>#include</font> "<a style='text-decoration:none' href='../matrix.h.html'>../matrix.h</a>" |
|
|
|
<font color='#009900'>// ---------------------------------------------------------------------------------------- |
|
</font> |
|
<font color='#0000FF'>namespace</font> dlib |
|
<b>{</b> |
|
<font color='#0000FF'><u>void</u></font> <b><a name='load_mnist_dataset'></a>load_mnist_dataset</b> <font face='Lucida Console'>(</font> |
|
<font color='#0000FF'>const</font> std::string<font color='#5555FF'>&</font> folder_name, |
|
std::vector<font color='#5555FF'><</font>matrix<font color='#5555FF'><</font><font color='#0000FF'><u>unsigned</u></font> <font color='#0000FF'><u>char</u></font><font color='#5555FF'>></font> <font color='#5555FF'>></font><font color='#5555FF'>&</font> training_images, |
|
std::vector<font color='#5555FF'><</font><font color='#0000FF'><u>unsigned</u></font> <font color='#0000FF'><u>long</u></font><font color='#5555FF'>></font><font color='#5555FF'>&</font> training_labels, |
|
std::vector<font color='#5555FF'><</font>matrix<font color='#5555FF'><</font><font color='#0000FF'><u>unsigned</u></font> <font color='#0000FF'><u>char</u></font><font color='#5555FF'>></font> <font color='#5555FF'>></font><font color='#5555FF'>&</font> testing_images, |
|
std::vector<font color='#5555FF'><</font><font color='#0000FF'><u>unsigned</u></font> <font color='#0000FF'><u>long</u></font><font color='#5555FF'>></font><font color='#5555FF'>&</font> testing_labels |
|
<font face='Lucida Console'>)</font>; |
|
<font color='#009900'>/*! |
|
ensures |
|
- Attempts to load the MNIST dataset from the hard drive. This is the dataset |
|
of handwritten digits available from http://yann.lecun.com/exdb/mnist/. In |
|
particular, the 4 files comprising the MNIST dataset should be present in the |
|
folder indicated by folder_name. These four files are: |
|
- train-images-idx3-ubyte |
|
- train-labels-idx1-ubyte |
|
- t10k-images-idx3-ubyte |
|
- t10k-labels-idx1-ubyte |
|
- #training_images == The 60,000 training images from the dataset. |
|
- #training_labels == The labels for the contents of #training_images. |
|
I.e. #training_labels[i] is the label of #training_images[i]. |
|
- #testing_images == The 10,000 testing images from the dataset. |
|
- #testing_labels == The labels for the contents of #testing_images. |
|
I.e. #testing_labels[i] is the label of #testing_images[i]. |
|
throws |
|
- dlib::error if some problem prevents us from loading the data or the files |
|
can't be found. |
|
!*/</font> |
|
<b>}</b> |
|
|
|
<font color='#009900'>// ---------------------------------------------------------------------------------------- |
|
</font> |
|
<font color='#0000FF'>#endif</font> <font color='#009900'>// DLIB_MNIST_ABSTRACT_Hh_ |
|
</font> |
|
|
|
</pre></body></html> |