Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/22/16 10:08:25 (7 years ago)
Author:
bwerth
Message:

#2700 TSNEAnalysis is now a BasicAlg, hid some Parameters, added optional data normalization to make TSNE scaling-invariant

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/TSNE/HeuristicLab.Algorithms.DataAnalysis/3.4/TSNE/Cell.cs

    r14414 r14518  
    5757using System.Linq;
    5858using HeuristicLab.Common;
    59 using HeuristicLab.Core;
    6059using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    6160
    6261namespace HeuristicLab.Algorithms.DataAnalysis {
    6362  [StorableClass]
    64   public class Cell : Item, ICell {
     63  public class Cell : DeepCloneable, ICell {
    6564    #region properties
    6665    [Storable]
     
    7473    #region HLConstructors & Cloning
    7574    [StorableConstructor]
    76     protected Cell(bool deserializing) : base(deserializing) { }
     75    protected Cell(bool deserializing) { }
    7776    protected Cell(Cell original, Cloner cloner) : base(original, cloner) {
    7877      dimension = original.dimension;
     
    112111      return true;
    113112    }
    114 
    115 
    116113  }
    117114}
Note: See TracChangeset for help on using the changeset viewer.