- Timestamp:
- 09/07/12 11:29:30 (12 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Classification
- Files:
-
- 1 added
- 2 deleted
- 1 copied
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Classification/UCI/UCIInstanceProvider.cs
r8592 r8595 27 27 28 28 namespace HeuristicLab.Problems.Instances.DataAnalysis { 29 public class ClassificationRealWorldInstanceProvider : ResourceClassificationInstanceProvider {29 public class UCIInstanceProvider : ResourceClassificationInstanceProvider { 30 30 public override string Name { 31 get { return " Real World BenchmarkProblems"; }31 get { return "UCI Problems"; } 32 32 } 33 33 public override string Description { … … 37 37 } 38 38 public override Uri WebLink { 39 get { return n ull; }39 get { return new Uri("http://archive.ics.uci.edu/ml/datasets.html"); } 40 40 } 41 41 public override string ReferencePublication { … … 43 43 } 44 44 45 protected override string FileName { get { return " ClassificationRealWorld"; } }45 protected override string FileName { get { return "UCI"; } } 46 46 47 47 public override IEnumerable<IDataDescriptor> GetDataDescriptors() { 48 48 List<IDataDescriptor> descriptorList = new List<IDataDescriptor>(); 49 49 descriptorList.Add(new Mammography()); 50 descriptorList.Add(new Wine()); 50 51 var solutionsArchiveName = GetResourceName(FileName + @"\.zip"); 51 52 if (!String.IsNullOrEmpty(solutionsArchiveName)) {
Note: See TracChangeset
for help on using the changeset viewer.