#region License Information /* HeuristicLab * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion using System; namespace HeuristicLab.Problems.Instances.DataAnalysis { public class Iris : IDataDescriptor { public string Name { get { return "Iris"; } } public string Description { get { return "Data Set Information:" + Environment.NewLine + "This is perhaps the best known database to be found in the pattern " + Environment.NewLine + "recognition literature. Fisher's paper is a classic in the field and " + "is referenced frequently to this day. (See Duda & Hart, for example.) " + "The data set contains 3 classes of 50 instances each, where each class " + "refers to a type of iris plant. One class is linearly separable from the " + "other 2; the latter are NOT linearly separable from each other." + Environment.NewLine + "Predicted attribute: class of iris plant." + Environment.NewLine + "This is an exceedingly simple domain."; } } } }