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/TSNE.cs

    r14512 r14518  
    6767namespace HeuristicLab.Algorithms.DataAnalysis {
    6868  [StorableClass]
    69   public class TSNE<T> : Item, ITSNE<T> where T : class, IDeepCloneable {
     69  public class TSNE<T> : DeepCloneable, ITSNE<T> where T : class, IDeepCloneable {
    7070
    7171    private const string IterationResultName = "Iteration";
     
    106106    #region HLConstructors & Cloning
    107107    [StorableConstructor]
    108     protected TSNE(bool deserializing) : base(deserializing) { }
     108    protected TSNE(bool deserializing) { }
    109109    protected TSNE(TSNE<T> original, Cloner cloner) : base(original, cloner) {
    110110      distance = cloner.Clone(original.distance);
Note: See TracChangeset for help on using the changeset viewer.