Sha256: 1dec617ad3b29d3153ceb775d9d95f4d0c773925ebff8ef9b0e7d445393f017e
Contents?: true
Size: 849 Bytes
Versions: 9
Compression:
Stored size: 849 Bytes
Contents
// Copyright (C) 2015 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_MNIST_Hh_ #define DLIB_MNIST_Hh_ #include "mnist_abstract.h" #include <string> #include <vector> #include "../matrix.h" // ---------------------------------------------------------------------------------------- namespace dlib { void load_mnist_dataset ( const std::string& folder_name, std::vector<matrix<unsigned char> >& training_images, std::vector<unsigned long>& training_labels, std::vector<matrix<unsigned char> >& testing_images, std::vector<unsigned long>& testing_labels ); } // ---------------------------------------------------------------------------------------- #ifdef NO_MAKEFILE #include "mnist.cpp" #endif #endif // DLIB_MNIST_Hh_
Version data entries
9 entries across 9 versions & 1 rubygems