1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
4 | *
|
---|
5 | * This file is part of HeuristicLab.
|
---|
6 | *
|
---|
7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
8 | * it under the terms of the GNU General Public License as published by
|
---|
9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
10 | * (at your option) any later version.
|
---|
11 | *
|
---|
12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
15 | * GNU General Public License for more details.
|
---|
16 | *
|
---|
17 | * You should have received a copy of the GNU General Public License
|
---|
18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
19 | */
|
---|
20 | #endregion
|
---|
21 |
|
---|
22 |
|
---|
23 | using System;
|
---|
24 | namespace HeuristicLab.Problems.Instances.DataAnalysis {
|
---|
25 | public class Iris : IUCIDataDescriptor {
|
---|
26 | public string Name { get { return "Iris"; } }
|
---|
27 | public string Description {
|
---|
28 | get {
|
---|
29 | return "Data Set Information:" + Environment.NewLine
|
---|
30 | + "This is perhaps the best known database to be found in the pattern " + Environment.NewLine
|
---|
31 | + "recognition literature. Fisher's paper is a classic in the field and "
|
---|
32 | + "is referenced frequently to this day. (See Duda & Hart, for example.) "
|
---|
33 | + "The data set contains 3 classes of 50 instances each, where each class "
|
---|
34 | + "refers to a type of iris plant. One class is linearly separable from the "
|
---|
35 | + "other 2; the latter are NOT linearly separable from each other." + Environment.NewLine
|
---|
36 | + "Predicted attribute: class of iris plant." + Environment.NewLine
|
---|
37 | + "This is an exceedingly simple domain.";
|
---|
38 | }
|
---|
39 | }
|
---|
40 | public string Donor { get { return "M. Marshall"; } }
|
---|
41 | public int Year { get { return 1988; } }
|
---|
42 | }
|
---|
43 | }
|
---|