Changeset 15234
- Timestamp:
- 07/13/17 16:07:41 (7 years ago)
- Location:
- trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/TSNE
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/TSNE/Distances/CosineDistance.cs
r15207 r15234 30 30 31 31 /// <summary> 32 /// The angluar distance as defined as a normalized distance measure dependent on the angle between two vectors. 33 /// It is designed for vectors with all positive coordinates. 32 /// The angular distance as defined as a normalized distance measure dependent on the angle between two vectors. 34 33 /// </summary> 35 34 [StorableClass] 36 [Item("CosineDistance", "The ang luar distance as defined as a normalized distance measure dependent on the angle between two vectors.\nIt is designed for vectors with all positive coordinates")]35 [Item("CosineDistance", "The angular distance as defined as a normalized distance measure dependent on the angle between two vectors.")] 37 36 public class CosineDistance : DistanceBase<IEnumerable<double>> { 38 37 -
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/TSNE/TSNEAlgorithm.cs
r15227 r15234 227 227 Parameters.Add(new FixedValueParameter<BoolValue>(SetSeedRandomlyParameterName, "If the seed should be random.", new BoolValue(true))); 228 228 Parameters.Add(new FixedValueParameter<IntValue>(SeedParameterName, "The seed used if it should not be random.", new IntValue(0))); 229 230 //Name of the column specifying the class lables of each data point.If the label column can not be found training/test is used as labels." 231 Parameters.Add(new OptionalConstrainedValueParameter<StringValue>(ClassesNameParameterName, "Name of the column specifying the class lables of each data point.")); 229 Parameters.Add(new OptionalConstrainedValueParameter<StringValue>(ClassesNameParameterName, "Name of the column specifying the class lables of each data point. If this is not set training/test is used as labels.")); 232 230 Parameters.Add(new FixedValueParameter<BoolValue>(NormalizationParameterName, "Whether the data should be zero centered and have variance of 1 for each variable, so different scalings are ignored.", new BoolValue(true))); 233 Parameters.Add(new FixedValueParameter<IntValue>(UpdateIntervalParameterName, " ", new IntValue(50)));231 Parameters.Add(new FixedValueParameter<IntValue>(UpdateIntervalParameterName, "The interval after which the results will be updated.", new IntValue(50))); 234 232 Parameters[UpdateIntervalParameterName].Hidden = true; 235 233
Note: See TracChangeset
for help on using the changeset viewer.