Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/30/17 15:03:51 (7 years ago)
Author:
bburlacu
Message:

#2760: Got rid of the shuffledProblemData by using a shared seed for all the folds (so that the dataset for each fold is shuffled in exactly the same way). Backwards compatibility should be restored.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis.Views/3.4/CrossValidationView.cs

    r14864 r15002  
    137137          stopButton.Enabled = (Content.ExecutionState == ExecutionState.Started) || (Content.ExecutionState == ExecutionState.Paused);
    138138          resetButton.Enabled = Content.ExecutionState != ExecutionState.Started;
     139          shuffleSamplesCheckBox.Checked = Content.ShuffleSamples.Value;
     140          // prevent changing the shuffle if the algorithm is not finished
     141          shuffleSamplesCheckBox.Enabled = Content.ExecutionState == ExecutionState.Prepared ||
     142                                           Content.ExecutionState == ExecutionState.Stopped;
    139143        }
    140144      }
Note: See TracChangeset for help on using the changeset viewer.