Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/09/10 20:26:03 (14 years ago)
Author:
gkronber
Message:

Fixed bugs in MLP operators, extended operators to work for time series prognosis and added pre-configured engine for time series prognosis with MLP. #882 (Artificial neural networks engine for time series prognosis)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.ArtificialNeuralNetworks/3.2/MultiLayerPerceptronRegression.cs

    r2570 r2985  
    123123      get {
    124124        if (!engine.Terminated) throw new InvalidOperationException("The algorithm is still running. Wait until the algorithm is terminated to retrieve the result.");
    125         IScope bestModelScope = engine.GlobalScope;
     125        IScope bestModelScope = engine.GlobalScope.SubScopes[0];
    126126        return CreateMlpModel(bestModelScope);
    127127      }
Note: See TracChangeset for help on using the changeset viewer.