This repository has been archived on 2024-12-15. You can view files and clone it, but cannot push or open issues or pull requests.
Neuro/gui/NeuroUI/mnistloader.h

15 lines
227 B
C++

#ifndef MNISTLOADER_H
#define MNISTLOADER_H
#include <string>
class MnistLoader
{
public:
MnistLoader();
void load(const std::string &databaseFileName, const std::string &labelsFileName);
};
#endif // MNISTLOADER_H