Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/06/09 10:49:30 (15 years ago)
Author:
gkronber
Message:

Show input variable names, max/min time offset and upper/lower prediction limits in SVMModelView. #772

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.SupportVectorMachines/3.2/Predictor.cs

    r2412 r2413  
    2424using System.Text;
    2525using System.Xml;
     26using System.Linq;
    2627using HeuristicLab.Core;
    2728using System.Globalization;
     
    9495
    9596    public override IEnumerable<string> GetInputVariables() {
    96       return variableNames.Keys;
     97      return from pair in variableNames
     98             orderby pair.Value
     99             select pair.Key;
    97100    }
    98101
Note: See TracChangeset for help on using the changeset viewer.