2015-10-24 16:03:07 +00:00
|
|
|
#include "netlearner.h"
|
|
|
|
#include "../../Net.h"
|
2015-10-29 12:06:30 +00:00
|
|
|
#include "mnistloader.h"
|
2015-10-24 16:03:07 +00:00
|
|
|
|
2015-10-26 08:19:48 +00:00
|
|
|
#include <QElapsedTimer>
|
2015-10-27 17:20:50 +00:00
|
|
|
#include <QImage>
|
2015-10-26 08:19:48 +00:00
|
|
|
|
2015-10-24 16:03:07 +00:00
|
|
|
void NetLearner::run()
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2015-10-26 08:19:48 +00:00
|
|
|
QElapsedTimer timer;
|
|
|
|
|
2015-10-27 14:33:54 +00:00
|
|
|
emit logMessage("Loading training data...");
|
|
|
|
emit progress(0.0);
|
|
|
|
|
2015-10-29 12:06:30 +00:00
|
|
|
MnistLoader mnistLoader;
|
2015-10-29 15:00:58 +00:00
|
|
|
mnistLoader.load("../NeuroUI/MNIST Database/train-images.idx3-ubyte",
|
|
|
|
"../NeuroUI/MNIST Database/train-labels.idx1-ubyte");
|
2015-10-27 14:33:54 +00:00
|
|
|
|
|
|
|
emit logMessage("done");
|
|
|
|
emit progress(0.0);
|
|
|
|
|
2015-10-31 11:28:35 +00:00
|
|
|
return;
|
|
|
|
|
2015-10-27 14:33:54 +00:00
|
|
|
Net digitClassifier({32*32, 16*16, 32, 1});
|
2015-10-24 16:03:07 +00:00
|
|
|
|
2015-10-26 08:19:48 +00:00
|
|
|
timer.start();
|
|
|
|
|
2015-10-27 14:33:54 +00:00
|
|
|
size_t numIterations = 10000;
|
2015-10-24 16:03:07 +00:00
|
|
|
for (size_t iteration = 0; iteration < numIterations; ++iteration)
|
|
|
|
{
|
|
|
|
std::vector<double> targetValues =
|
|
|
|
{
|
2015-10-29 12:06:30 +00:00
|
|
|
//trainingSample.first / 10.0
|
2015-10-24 16:03:07 +00:00
|
|
|
};
|
|
|
|
|
2015-10-29 12:06:30 +00:00
|
|
|
//digitClassifier.feedForward(trainingSample.second);
|
2015-10-24 16:03:07 +00:00
|
|
|
|
2015-10-27 14:33:54 +00:00
|
|
|
std::vector<double> outputValues = digitClassifier.getOutput();
|
2015-10-24 16:03:07 +00:00
|
|
|
|
|
|
|
double error = outputValues[0] - targetValues[0];
|
|
|
|
|
2015-10-27 14:33:54 +00:00
|
|
|
QString logString;
|
2015-10-24 16:03:07 +00:00
|
|
|
|
2015-10-27 14:33:54 +00:00
|
|
|
logString.append("Error: ");
|
|
|
|
logString.append(QString::number(std::abs(error)));
|
2015-10-24 16:03:07 +00:00
|
|
|
|
2015-10-27 14:33:54 +00:00
|
|
|
emit logMessage(logString);
|
|
|
|
emit currentNetError(error);
|
|
|
|
emit progress((double)iteration / (double)numIterations);
|
2015-10-24 16:03:07 +00:00
|
|
|
|
2015-10-27 14:33:54 +00:00
|
|
|
digitClassifier.backProp(targetValues);
|
2015-10-24 16:03:07 +00:00
|
|
|
}
|
2015-10-25 16:40:22 +00:00
|
|
|
|
2015-10-26 08:19:48 +00:00
|
|
|
QString timerLogString;
|
|
|
|
timerLogString.append("Elapsed time: ");
|
|
|
|
timerLogString.append(QString::number(timer.elapsed() / 1000.0));
|
|
|
|
timerLogString.append(" seconds");
|
|
|
|
|
|
|
|
emit logMessage(timerLogString);
|
|
|
|
|
2015-10-27 14:33:54 +00:00
|
|
|
digitClassifier.save("DigitClassifier.nnet");
|
2015-10-24 16:03:07 +00:00
|
|
|
}
|
|
|
|
catch (std::exception &ex)
|
|
|
|
{
|
|
|
|
QString logString("Error: ");
|
|
|
|
logString.append(ex.what());
|
|
|
|
emit logMessage(logString);
|
|
|
|
}
|
|
|
|
}
|