Changeset 8596
- Timestamp:
- 09/07/12 11:46:15 (12 years ago)
- Location:
- trunk/sources/HeuristicLab.Tests
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Tests/HeuristicLab-3.3/SamplesTest.cs
r8554 r8596 354 354 symbClassProblem.Name = "Mammography Classification Problem"; 355 355 symbClassProblem.Description = "Mammography dataset imported from the UCI machine learning repository (http://archive.ics.uci.edu/ml/datasets/Mammographic+Mass)"; 356 ClassificationRealWorldInstanceProvider provider = new ClassificationRealWorldInstanceProvider();356 UCIInstanceProvider provider = new UCIInstanceProvider(); 357 357 var instance = provider.GetDataDescriptors().Where(x => x.Name.Equals("Mammography")).Single(); 358 358 var mammoData = (ClassificationProblemData)provider.LoadData(instance); -
trunk/sources/HeuristicLab.Tests/HeuristicLab.Problems.Instances.DataAnalysis-3.3/ClassificationInstanceProviderTest.cs
r7915 r8596 30 30 31 31 [TestMethod()] 32 public void GetRealWorldInstanceTest() {33 var target = new ClassificationRealWorldInstanceProvider();32 public void UCIInstanceTest() { 33 var target = new UCIInstanceProvider(); 34 34 StringBuilder erroneousInstances = new StringBuilder(); 35 35 int count = 0;
Note: See TracChangeset
for help on using the changeset viewer.