blob: 281b708589a365636dfa8b4c5dff4ee76b2f438e [file] [log] [blame]
telsoa014fcda012018-03-09 14:13:49 +00001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// See LICENSE file in the project root for full license information.
4//
5#pragma once
6
7#include "ClassifierTestCaseData.hpp"
8
9#include <string>
10#include <memory>
11
12class MnistDatabase
13{
14public:
15 using TTestCaseData = ClassifierTestCaseData<float>;
16
17 explicit MnistDatabase(const std::string& binaryFileDirectory, bool scaleValues = false);
18 std::unique_ptr<TTestCaseData> GetTestCaseData(unsigned int testCaseId);
19
20private:
21 std::string m_BinaryDirectory;
22 bool m_ScaleValues;
23};