Free cookie consent management tool by TermsFeed Policy Generator

Changeset 2570


Ignore:
Timestamp:
12/23/09 13:30:40 (14 years ago)
Author:
gkronber
Message:

Renamed methods in MultiLayerPerceptronRegression. #751.

File:
1 edited

Legend:

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

    r2562 r2570  
    124124        if (!engine.Terminated) throw new InvalidOperationException("The algorithm is still running. Wait until the algorithm is terminated to retrieve the result.");
    125125        IScope bestModelScope = engine.GlobalScope;
    126         return CreateLRModel(bestModelScope);
     126        return CreateMlpModel(bestModelScope);
    127127      }
    128128    }
     
    335335
    336336      SequentialSubScopesProcessor seqSubScopesProc = new SequentialSubScopesProcessor();
    337 
    338337      SequentialProcessor seq = new SequentialProcessor();
    339 
    340338      seqSubScopesProc.AddSubOperator(seq);
    341339
     
    369367
    370368      seq.AddSubOperator(CreateModelAnalyzerOperator());
    371 
    372 
    373 
    374 
    375369      op.OperatorGraph.AddOperator(seqSubScopesProc);
    376370      op.OperatorGraph.InitialOperator = seqSubScopesProc;
     
    382376    }
    383377
    384     protected virtual IAnalyzerModel CreateLRModel(IScope bestModelScope) {
     378    protected virtual IAnalyzerModel CreateMlpModel(IScope bestModelScope) {
    385379      var model = new AnalyzerModel();
    386       CreateSpecificLRModel(bestModelScope, model);
     380      CreateSpecificMlpModel(bestModelScope, model);
    387381      #region variable impacts
    388382      ItemList qualityImpacts = bestModelScope.GetVariableValue<ItemList>(ModelingResult.VariableQualityImpact.ToString(), false);
     
    397391    }
    398392
    399     protected virtual void CreateSpecificLRModel(IScope bestModelScope, IAnalyzerModel model) {
     393    protected virtual void CreateSpecificMlpModel(IScope bestModelScope, IAnalyzerModel model) {
    400394      DefaultRegressionOperators.PopulateAnalyzerModel(bestModelScope, model);
    401395    }
Note: See TracChangeset for help on using the changeset viewer.