Neuro/gui/NeuroUI/mnistloader.h

15 lines
227 B
C
Raw Normal View History

#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