Free cookie consent management tool by TermsFeed Policy Generator

source: branches/MemPRAlgorithm/HeuristicLab.Algorithms.MemPR/3.3/Permutation/SolutionModel/Univariate/BiasedModelTrainer.cs @ 14496

Last change on this file since 14496 was 14496, checked in by abeham, 7 years ago

#2701:

  • Reusing similiarty calculator in BinaryMemPR
  • Fixing distance calculation for linear linkage and LinearLinkageMemPR
  • Small changes to base algorithm
  • Added biased model trainer for permutation (rank and fitness)
  • Fixing best known quality calculation for GCP
File size: 2.9 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.Linq;
23using HeuristicLab.Algorithms.MemPR.Interfaces;
24using HeuristicLab.Common;
25using HeuristicLab.Core;
26using HeuristicLab.Data;
27using HeuristicLab.Encodings.PermutationEncoding;
28using HeuristicLab.Optimization;
29using HeuristicLab.Parameters;
30using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
31
32namespace HeuristicLab.Algorithms.MemPR.Permutation.SolutionModel.Univariate {
33  [Item("Biased Univariate Model Trainer (Permutation)", "", ExcludeGenericTypeInfo = true)]
34  [StorableClass]
35  public class BiasedModelTrainer<TContext> : ParameterizedNamedItem, ISolutionModelTrainer<TContext>
36    where TContext : IPopulationBasedHeuristicAlgorithmContext<SingleObjectiveBasicProblem<PermutationEncoding>, Encodings.PermutationEncoding.Permutation>,
37    ISolutionModelContext<Encodings.PermutationEncoding.Permutation> {
38
39    [Storable]
40    private IValueParameter<EnumValue<ModelBiasOptions>> modelBiasParameter;
41    public ModelBiasOptions ModelBias {
42      get { return modelBiasParameter.Value.Value; }
43      set { modelBiasParameter.Value.Value = value; }
44    }
45
46    [StorableConstructor]
47    protected BiasedModelTrainer(bool deserializing) : base(deserializing) { }
48    protected BiasedModelTrainer(BiasedModelTrainer<TContext> original, Cloner cloner)
49      : base(original, cloner) {
50      modelBiasParameter = cloner.Clone(original.modelBiasParameter);
51    }
52    public BiasedModelTrainer() {
53      Parameters.Add(modelBiasParameter = new ValueParameter<EnumValue<ModelBiasOptions>>("Model Bias", "What kind of bias towards better individuals is chosen."));
54    }
55
56    public override IDeepCloneable Clone(Cloner cloner) {
57      return new BiasedModelTrainer<TContext>(this, cloner);
58    }
59
60    public void TrainModel(TContext context) {
61      context.Model = Trainer.TrainBiased(ModelBias, context.Random, context.Problem.Maximization, context.Population.Select(x => x.Solution).ToList(), context.Population.Select(x => x.Fitness).ToList(), context.Problem.Encoding.Length);
62    }
63  }
64}
Note: See TracBrowser for help on using the repository browser.