Changeset 17097 for stable/HeuristicLab.Algorithms.DataAnalysis/3.4/TSNE/Distances/CosineDistance.cs
- Timestamp:
- 07/07/19 23:40:10 (4 years ago)
- Location:
- stable
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Algorithms.DataAnalysis
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Algorithms.DataAnalysis/3.4
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Algorithms.DataAnalysis/3.4/TSNE/Distances/CosineDistance.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 24 24 using HeuristicLab.Common; 25 25 using HeuristicLab.Core; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 28 28 namespace HeuristicLab.Algorithms.DataAnalysis { … … 30 30 /// The angular distance as defined as a normalized distance measure dependent on the angle between two vectors. 31 31 /// </summary> 32 [Storable Class]32 [StorableType("C87DE522-CB6D-485B-B2F7-6FE79B4E4DC6")] 33 33 [Item("CosineDistance", "The angular distance as defined as a normalized distance measure dependent on the angle between two vectors.")] 34 34 public class CosineDistance : DistanceBase<IEnumerable<double>> { 35 35 #region HLConstructors & Cloning 36 36 [StorableConstructor] 37 protected CosineDistance( bool deserializing) : base(deserializing) { }37 protected CosineDistance(StorableConstructorFlag _) : base(_) { } 38 38 protected CosineDistance(CosineDistance original, Cloner cloner) 39 39 : base(original, cloner) { }
Note: See TracChangeset
for help on using the changeset viewer.