aboutsummaryrefslogtreecommitdiff
path: root/tests/MnistDatabase.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/MnistDatabase.hpp')
-rw-r--r--tests/MnistDatabase.hpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/MnistDatabase.hpp b/tests/MnistDatabase.hpp
new file mode 100644
index 0000000000..281b708589
--- /dev/null
+++ b/tests/MnistDatabase.hpp
@@ -0,0 +1,23 @@
+//
+// Copyright © 2017 Arm Ltd. All rights reserved.
+// See LICENSE file in the project root for full license information.
+//
+#pragma once
+
+#include "ClassifierTestCaseData.hpp"
+
+#include <string>
+#include <memory>
+
+class MnistDatabase
+{
+public:
+ using TTestCaseData = ClassifierTestCaseData<float>;
+
+ explicit MnistDatabase(const std::string& binaryFileDirectory, bool scaleValues = false);
+ std::unique_ptr<TTestCaseData> GetTestCaseData(unsigned int testCaseId);
+
+private:
+ std::string m_BinaryDirectory;
+ bool m_ScaleValues;
+}; \ No newline at end of file