Skip to content
Snippets Groups Projects
Commit bf143664 authored by Martin Beseda's avatar Martin Beseda
Browse files

FIX: Removing max and min values after de-normalization of data-set, so the...

FIX: Removing max and min values after de-normalization of data-set, so the is_normalized() method will again return 'False' after de-normalization.
parent ebbcad5b
No related branches found
No related tags found
No related merge requests found
......@@ -368,6 +368,9 @@ namespace lib4neuro {
}
pair.second = tmp_out;
}
/* Remove found max and minimal values, because of is_normalized() method */
this->max_min_inp_val.clear();
}
void DataSet::de_normalize_single(std::vector<double> &d1, std::vector<double> &d2){
......
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