Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/13/12 09:54:54 (11 years ago)
Author:
sforsten
Message:

#1941:

  • added two additional classification instances as suggested by abeham
  • fixed a bug in UCIInstanceProvider
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Classification/UCI/UCIInstanceProvider.cs

    r8889 r8903  
    4949      descriptorList.Add(new Iris());
    5050      descriptorList.Add(new Mammography());
     51      descriptorList.Add(new Parkinson());
    5152      descriptorList.Add(new Thyroid());
     53      descriptorList.Add(new Vertebral_3C());
    5254      descriptorList.Add(new Wine());
    5355      var solutionsArchiveName = GetResourceName(FileName + @"\.zip");
     
    6264            string prettyName = Path.GetFileNameWithoutExtension(entry);
    6365            IUCIDataDescriptor desc = descriptorList.Where(x => x.Name.Equals(prettyName)).FirstOrDefault();
    64             prettyName = String.Format("{0}, {1}, {2}", prettyName, desc.Donor, desc.Year);
    6566            if (desc != null) {
     67              prettyName = String.Format("{0}, {1}, {2}", prettyName, desc.Donor, desc.Year);
    6668              yield return new ResourceClassificationDataDescriptor(prettyName, desc.Description, entry);
    6769            } else
Note: See TracChangeset for help on using the changeset viewer.