Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/MibaFriction/MibaFrictionRegressionInstanceProvider.cs @ 15016

Last change on this file since 15016 was 15016, checked in by gkronber, 7 years ago

#2757: simplified code for regression instance providers which load data from a ZIP file

File size: 3.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2016 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
22using System;
23using System.Collections.Generic;
24using System.IO;
25using System.IO.Compression;
26using System.Linq;
27
28namespace HeuristicLab.Problems.Instances.DataAnalysis {
29  public class MibaFrictionRegressionInstanceProvider : ResourceRegressionInstanceProvider {
30    public override string Name {
31      get { return "Miba Friction Datasets"; }
32    }
33    public override string Description {
34      get {
35        return "A set of datasets for regression modelling of friction characteristics of friction plate systems. The data stem from tests of friction plates with commercial test benches for wet friction plate systems. Friction characteristics such as the coefficient of friction, wear, and temperatures are measured at different loads. The goal is to predict these values given load parameters. Data have been kindly provided by Miba frictec company";
36      }
37    }
38    public override Uri WebLink {
39      get { return null; }
40    }
41    public override string ReferencePublication {
42      get { return "E. Lughofer, G. K. Kronberger, M. Kommenda, S. Saminger-Platz, A. Promberger, F. Nickel, S. M. Winkler, M. Affenzeller - Robust Fuzzy Modeling and Symbolic Regression for Establishing Accurate and Interpretable Prediction Models in Supervising Tribological Systems - Proceedings of the 8th International Joint Conference on Computational Intelligence, Porto, Portugal, 2016, pp. 51-63"; }
43    }
44
45    protected override string FileName { get { return "MibaFriction"; } }
46
47    public override IEnumerable<IDataDescriptor> GetDataDescriptors() {
48      List<ResourceRegressionDataDescriptor> descriptorList = new List<ResourceRegressionDataDescriptor>();
49      descriptorList.Add(new CF1() { ResourceName = "CF1.csv" });
50      descriptorList.Add(new CF2() { ResourceName = "CF2.csv" });
51      descriptorList.Add(new CF3() { ResourceName = "CF3.csv" });
52      descriptorList.Add(new CF4() { ResourceName = "CF4.csv" });
53      descriptorList.Add(new NvhRating() { ResourceName = "NvhRating.csv" });
54      descriptorList.Add(new Temp1() { ResourceName = "Temp1.csv" });
55      descriptorList.Add(new Temp2() { ResourceName = "Temp2.csv" });
56      descriptorList.Add(new Wear1() { ResourceName = "Wear1.csv" });
57      descriptorList.Add(new Wear2() { ResourceName = "Wear2.csv" });
58
59      return descriptorList;
60    }
61  }
62}
Note: See TracBrowser for help on using the repository browser.