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

    r14414 r14518  
    6464namespace HeuristicLab.Algorithms.DataAnalysis {
    6565  [StorableClass]
    66   public class VPTree<T> : Item, IVPTree<T> where T : class, IDeepCloneable {
     66  public class VPTree<T> : DeepCloneable, IVPTree<T> where T : class, IDeepCloneable {
    6767    #region properties
    6868    [Storable]
     
    7878    #region HLConstructors & Cloning
    7979    [StorableConstructor]
    80     protected VPTree(bool deserializing) : base(deserializing) { }
     80    protected VPTree(bool deserializing) { }
    8181    protected VPTree(VPTree<T> original, Cloner cloner)
    8282      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.