- Timestamp:
- 09/04/14 17:30:30 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/SupportVectorMachine/SupportVectorMachineUtil.cs
r11339 r11342 104 104 CalculateCrossValidationPartitions(partitions, parameters, out testMse); 105 105 if (testMse < mse.Value) { 106 lock (mse) { mse.Value = testMse; } 107 lock (bestParam) { bestParam = (svm_parameter)parameters.Clone(); } 106 lock (mse) { 107 mse.Value = testMse; 108 bestParam = (svm_parameter)parameters.Clone(); 109 } 108 110 } 109 111 });
Note: See TracChangeset
for help on using the changeset viewer.