// Copyright (C) 2020 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_CIFAR_Hh_ #define DLIB_CIFAR_Hh_ #include "cifar_abstract.h" #include #include #include "../matrix.h" #include "../pixel.h" // ---------------------------------------------------------------------------------------- namespace dlib { void load_cifar_10_dataset ( const std::string& folder_name, std::vector>& training_images, std::vector& training_labels, std::vector>& testing_images, std::vector& testing_labels ); } // ---------------------------------------------------------------------------------------- #ifdef NO_MAKEFILE #include "cifar.cpp" #endif #endif // DLIB_CIFAR_Hh_