From 75e71bd0609ca0fc127382674f990a79a686ad1b Mon Sep 17 00:00:00 2001 From: jens Date: Wed, 31 Jan 2024 15:29:38 +0100 Subject: [PATCH] - use auto detect for training data load --- source/AStack.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/AStack.cpp b/source/AStack.cpp index 18daf2b..db61e43 100644 --- a/source/AStack.cpp +++ b/source/AStack.cpp @@ -171,7 +171,7 @@ size_t AStack::loadTrainingBatch(const std::string &dir, bool doNormalize) { std::string filename = dir + "/" + m_name + ".training.dat"; std::string path = dir + "/" + m_name + ".training.dat"; - bool success = m_trainingBatch.load(filename, arma::arma_ascii); + bool success = m_trainingBatch.load(filename, arma::auto_detect); if (success) {