Skip to content
Snippets Groups Projects
Commit a9482db4 authored by Guillaume Pasero's avatar Guillaume Pasero
Browse files

STYLE: remove noisy prints

parent cffb9130
No related branches found
No related tags found
No related merge requests found
......@@ -170,15 +170,12 @@ void TrainDimensionalityReductionApplicationBase<TInputValue,TOutputValue>::Trai
if (HasValue("algorithm.autoencoder.learningcurve") &&
IsParameterEnabled("algorithm.autoencoder.learningcurve"))
{
std::cout << "yo" << std::endl;
dimredTrainer->SetWriteLearningCurve(true);
dimredTrainer->SetLearningCurveFileName(GetParameterString("algorithm.autoencoder.learningcurve"));
}
dimredTrainer->SetInputListSample(trainingListSample);
std::cout << "before train" << std::endl;
dimredTrainer->Train();
std::cout << "after train" << std::endl;
dimredTrainer->Save(modelPath);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment