1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456
|
/*
* Copyright (C) 2005-2017 Centre National d'Etudes Spatiales (CNES)
*
* This file is part of Orfeo Toolbox
*
* https://www.orfeo-toolbox.org/
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef otbAutoencoderModel_txx
#define otbAutoencoderModel_txx
#include "otbAutoencoderModel.h"
#include "otbMacro.h"
#include <fstream>
#if defined(__GNUC__) || defined(__clang__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wshadow"
#pragma GCC diagnostic ignored "-Wunused-parameter"
#pragma GCC diagnostic ignored "-Woverloaded-virtual"
#endif
#include "otbSharkUtils.h"
//include train function
#include <shark/ObjectiveFunctions/ErrorFunction.h>
#include <shark/ObjectiveFunctions/SparseAutoencoderError.h>//the error function performing the regularisation of the hidden neurons
#include <shark/Algorithms/GradientDescent/Rprop.h>// the RProp optimization algorithm
#include <shark/ObjectiveFunctions/Loss/SquaredLoss.h> // squared loss used for regression
#include <shark/ObjectiveFunctions/Regularizer.h> //L2 regulariziation
#include <shark/Models/ImpulseNoiseModel.h> //noise source to corrupt the inputs
#include <shark/Models/ConcatenatedModel.h>//to concatenate the noise with the model
#include <shark/Algorithms/StoppingCriteria/MaxIterations.h> //A simple stopping criterion that stops after a fixed number of iterations
#include <shark/Algorithms/StoppingCriteria/TrainingProgress.h> //Stops when the algorithm seems to converge, Tracks the progress of the training error over a period of time
#include <shark/Algorithms/GradientDescent/SteepestDescent.h>
#if defined(__GNUC__) || defined(__clang__)
#pragma GCC diagnostic pop
#endif
namespace otb
{
template <class TInputValue, class NeuronType>
AutoencoderModel<TInputValue,NeuronType>::AutoencoderModel()
{
this->m_IsDoPredictBatchMultiThreaded = true;
this->m_WriteLearningCurve = false;
}
template <class TInputValue, class NeuronType>
AutoencoderModel<TInputValue,NeuronType>::~AutoencoderModel()
{
}
template <class TInputValue, class NeuronType>
void
AutoencoderModel<TInputValue,NeuronType>
::Train()
{
std::vector<shark::RealVector> features;
Shark::ListSampleToSharkVector(this->GetInputListSample(), features);
shark::Data<shark::RealVector> inputSamples = shark::createDataFromRange( features );
shark::Data<shark::RealVector> inputSamples_copy = inputSamples;
std::ofstream ofs;
if (this->m_WriteLearningCurve == true)
{
ofs.open(m_LearningCurveFileName);
ofs << "learning curve" << std::endl;
}
// Initialization of the feed forward neural network
std::vector<size_t> layers;
layers.push_back(shark::dataDimension(inputSamples));
for (unsigned int i = 0 ; i < m_NumberOfHiddenNeurons.Size(); ++i)
{
layers.push_back(m_NumberOfHiddenNeurons[i]);
}
for (unsigned int i = std::max(0,static_cast<int>(m_NumberOfHiddenNeurons.Size()-1)) ; i > 0; --i)
{
layers.push_back(m_NumberOfHiddenNeurons[i-1]);
}
layers.push_back(shark::dataDimension(inputSamples));
m_Net.setStructure(layers);
shark::initRandomNormal(m_Net,0.1);
// Training of the first Autoencoder (first and last layer of the FF network)
if (m_Epsilon > 0)
{
shark::TrainingProgress<> criterion(5,m_Epsilon);
OutAutoencoderType net;
// Shark doesn't allow to train a layer using a sparsity term AND a noisy input.
if (m_Noise[0] != 0)
{
TrainOneLayer(criterion, net, 0, inputSamples, ofs);
}
else
{
TrainOneSparseLayer(criterion, net, 0, inputSamples, ofs);
}
criterion.reset();
}
else
{
shark::MaxIterations<> criterion(m_NumberOfIterations);
OutAutoencoderType net;
// Shark doesn't allow to train a layer using a sparsity term AND a noisy input.
if (m_Noise[0] != 0)
{
TrainOneLayer(criterion, net, 0, inputSamples, ofs);
otbMsgDevMacro(<< "m_Noise " << m_Noise[0]);
}
else
{
TrainOneSparseLayer(criterion, net, 0, inputSamples, ofs);
}
criterion.reset();
}
// Training of the other autoencoders
if (m_Epsilon > 0)
{
shark::TrainingProgress<> criterion(5,m_Epsilon);
for (unsigned int i = 1 ; i < m_NumberOfHiddenNeurons.Size(); ++i)
{
AutoencoderType net;
// Shark doesn't allow to train a layer using a sparsity term AND a noisy input.
if (m_Noise[i] != 0)
{
TrainOneLayer(criterion, net, i, inputSamples, ofs);
}
else
{
TrainOneSparseLayer(criterion, net, i, inputSamples, ofs);
}
criterion.reset();
}
}
else
{
shark::MaxIterations<> criterion(m_NumberOfIterations);
for (unsigned int i = 1 ; i < m_NumberOfHiddenNeurons.Size(); ++i)
{
AutoencoderType net;
// Shark doesn't allow to train a layer using a sparsity term AND a noisy input.
if (m_Noise[i] != 0)
{
TrainOneLayer(criterion, net, i, inputSamples, ofs);
otbMsgDevMacro(<< "m_Noise " << m_Noise[0]);
}
else
{
TrainOneSparseLayer( criterion, net, i, inputSamples, ofs);
}
criterion.reset();
}
}
if (m_NumberOfIterationsFineTuning > 0)
{
shark::MaxIterations<> criterion(m_NumberOfIterationsFineTuning);
TrainNetwork(criterion, inputSamples_copy, ofs);
}
this->SetDimension(m_NumberOfHiddenNeurons[m_NumberOfHiddenNeurons.Size()-1]);
}
template <class TInputValue, class NeuronType>
template <class T, class Autoencoder>
void
AutoencoderModel<TInputValue,NeuronType>
::TrainOneLayer(
shark::AbstractStoppingCriterion<T> & criterion,
Autoencoder & net,
unsigned int layer_index,
shark::Data<shark::RealVector> &samples,
std::ostream& File)
{
otbMsgDevMacro(<< "Noise " << m_Noise[layer_index]);
std::size_t inputs = dataDimension(samples);
net.setStructure(inputs, m_NumberOfHiddenNeurons[layer_index]);
initRandomUniform(net,-m_InitFactor*std::sqrt(1.0/inputs),m_InitFactor*std::sqrt(1.0/inputs));
shark::ImpulseNoiseModel noise(inputs,m_Noise[layer_index],1.0); //set an input pixel with probability m_Noise to 0
shark::ConcatenatedModel<shark::RealVector,shark::RealVector> model = noise>> net;
shark::LabeledData<shark::RealVector,shark::RealVector> trainSet(samples,samples);//labels identical to inputs
shark::SquaredLoss<shark::RealVector> loss;
shark::ErrorFunction error(trainSet, &model, &loss);
shark::TwoNormRegularizer regularizer(error.numberOfVariables());
error.setRegularizer(m_Regularization[layer_index],®ularizer);
shark::IRpropPlusFull optimizer;
error.init();
optimizer.init(error);
otbMsgDevMacro(<<"Error before training : " << optimizer.solution().value);
if (this->m_WriteLearningCurve == true)
{
File << "end layer" << std::endl;
}
unsigned int i=0;
do
{
i++;
optimizer.step(error);
if (this->m_WriteLearningCurve == true)
{
File << optimizer.solution().value << std::endl;
}
otbMsgDevMacro(<<"Error after " << i << " iterations : " << optimizer.solution().value);
} while( !criterion.stop( optimizer.solution() ) );
net.setParameterVector(optimizer.solution().point);
m_Net.setLayer(layer_index,net.encoderMatrix(),net.hiddenBias()); // Copy the encoder in the FF neural network
m_Net.setLayer( m_NumberOfHiddenNeurons.Size()*2 - 1 - layer_index,net.decoderMatrix(),net.outputBias()); // Copy the decoder in the FF neural network
samples = net.encode(samples);
}
template <class TInputValue, class NeuronType>
template <class T, class Autoencoder>
void AutoencoderModel<TInputValue,NeuronType>::TrainOneSparseLayer(
shark::AbstractStoppingCriterion<T> & criterion,
Autoencoder & net,
unsigned int layer_index,
shark::Data<shark::RealVector> &samples,
std::ostream& File)
{
//AutoencoderType net;
std::size_t inputs = dataDimension(samples);
net.setStructure(inputs, m_NumberOfHiddenNeurons[layer_index]);
shark::initRandomUniform(net,-m_InitFactor*std::sqrt(1.0/inputs),m_InitFactor*std::sqrt(1.0/inputs));
// Idea : set the initials value for the output weights higher than the input weights
shark::LabeledData<shark::RealVector,shark::RealVector> trainSet(samples,samples);//labels identical to inputs
shark::SquaredLoss<shark::RealVector> loss;
shark::SparseAutoencoderError error(trainSet,&net, &loss, m_Rho[layer_index], m_Beta[layer_index]);
shark::TwoNormRegularizer regularizer(error.numberOfVariables());
error.setRegularizer(m_Regularization[layer_index],®ularizer);
shark::IRpropPlusFull optimizer;
error.init();
optimizer.init(error);
otbMsgDevMacro(<<"Error before training : " << optimizer.solution().value);
unsigned int i=0;
do
{
i++;
optimizer.step(error);
otbMsgDevMacro(<<"Error after " << i << " iterations : " << optimizer.solution().value);
if (this->m_WriteLearningCurve == true)
{
File << optimizer.solution().value << std::endl;
}
} while( !criterion.stop( optimizer.solution() ) );
if (this->m_WriteLearningCurve == true)
{
File << "end layer" << std::endl;
}
net.setParameterVector(optimizer.solution().point);
m_Net.setLayer(layer_index,net.encoderMatrix(),net.hiddenBias()); // Copy the encoder in the FF neural network
m_Net.setLayer( m_NumberOfHiddenNeurons.Size()*2 - 1 - layer_index,net.decoderMatrix(),net.outputBias()); // Copy the decoder in the FF neural network
samples = net.encode(samples);
}
template <class TInputValue, class NeuronType>
template <class T>
void
AutoencoderModel<TInputValue,NeuronType>
::TrainNetwork(
shark::AbstractStoppingCriterion<T> & criterion,
shark::Data<shark::RealVector> &samples,
std::ostream& File)
{
//labels identical to inputs
shark::LabeledData<shark::RealVector,shark::RealVector> trainSet(samples,samples);
shark::SquaredLoss<shark::RealVector> loss;
shark::ErrorFunction error(trainSet, &m_Net, &loss);
shark::TwoNormRegularizer regularizer(error.numberOfVariables());
error.setRegularizer(m_Regularization[0],®ularizer);
shark::IRpropPlusFull optimizer;
error.init();
optimizer.init(error);
otbMsgDevMacro(<<"Error before training : " << optimizer.solution().value);
unsigned int i=0;
while( !criterion.stop( optimizer.solution() ) )
{
i++;
optimizer.step(error);
otbMsgDevMacro(<<"Error after " << i << " iterations : " << optimizer.solution().value);
if (this->m_WriteLearningCurve == true)
{
File << optimizer.solution().value << std::endl;
}
}
}
template <class TInputValue, class NeuronType>
bool
AutoencoderModel<TInputValue,NeuronType>
::CanReadFile(const std::string & filename)
{
try
{
this->Load(filename);
m_Net.name();
}
catch(...)
{
return false;
}
return true;
}
template <class TInputValue, class NeuronType>
bool
AutoencoderModel<TInputValue,NeuronType>
::CanWriteFile(const std::string & /*filename*/)
{
return true;
}
template <class TInputValue, class NeuronType>
void
AutoencoderModel<TInputValue,NeuronType>
::Save(const std::string & filename, const std::string & /*name*/)
{
otbMsgDevMacro(<< "saving model ...");
std::ofstream ofs(filename);
ofs << m_Net.name() << std::endl; // the first line of the model file contains a key
shark::TextOutArchive oa(ofs);
oa << m_Net;
ofs.close();
if (this->m_WriteWeights == true) // output the map vectors in a txt file
{
std::ofstream otxt(filename+".txt");
for (unsigned int i = 0 ; i < m_Net.layerMatrices().size(); ++i)
{
otxt << "layer " << i << std::endl;
otxt << m_Net.layerMatrix(i) << std::endl;
otxt << m_Net.bias(i) << std::endl;
otxt << std::endl;
}
}
}
template <class TInputValue, class NeuronType>
void
AutoencoderModel<TInputValue,NeuronType>
::Load(const std::string & filename, const std::string & /*name*/)
{
NetworkType net;
std::ifstream ifs(filename);
char autoencoder[256];
ifs.getline(autoencoder,256);
std::string autoencoderstr(autoencoder);
if (autoencoderstr != net.name()){
itkExceptionMacro(<< "Error opening " << filename.c_str() );
}
shark::TextInArchive ia(ifs);
ia >> m_Net;
ifs.close();
// This gives us the dimension if we keep the encoder and decoder
size_t feature_layer_index = m_Net.layerMatrices().size()/2;
// number of neurons in the feature layer (second dimension of the first decoder weight matrix)
this->SetDimension(m_Net.layerMatrix(feature_layer_index).size2());
}
template <class TInputValue, class NeuronType>
typename AutoencoderModel<TInputValue,NeuronType>::TargetSampleType
AutoencoderModel<TInputValue,NeuronType>
::DoPredict(const InputSampleType & value, ConfidenceValueType * /*quality*/) const
{
shark::RealVector samples(value.Size());
for(size_t i = 0; i < value.Size();i++)
{
samples[i]=value[i];
}
std::vector<shark::RealVector> features;
features.push_back(samples);
shark::Data<shark::RealVector> data = shark::createDataFromRange(features);
// features layer for a network containing the encoder and decoder part
data = m_Net.evalLayer( m_Net.layerMatrices().size()/2-1 ,data);
TargetSampleType target;
target.SetSize(this->m_Dimension);
for(unsigned int a = 0; a < this->m_Dimension; ++a)
{
target[a]=data.element(0)[a];
}
return target;
}
template <class TInputValue, class NeuronType>
void
AutoencoderModel<TInputValue,NeuronType>
::DoPredictBatch(
const InputListSampleType *input,
const unsigned int & startIndex,
const unsigned int & size,
TargetListSampleType * targets,
ConfidenceListSampleType * /*quality*/) const
{
std::vector<shark::RealVector> features;
Shark::ListSampleRangeToSharkVector(input, features,startIndex,size);
shark::Data<shark::RealVector> data = shark::createDataFromRange(features);
TargetSampleType target;
// features layer for a network containing the encoder and decoder part
data = m_Net.evalLayer( m_Net.layerMatrices().size()/2-1 ,data);
unsigned int id = startIndex;
target.SetSize(this->m_Dimension);
for(const auto& p : data.elements())
{
for(unsigned int a = 0; a < this->m_Dimension; ++a)
{
target[a]=p[a];
}
targets->SetMeasurementVector(id,target);
++id;
}
}
} // namespace otb
#endif
|