Enum IsomapPathAlgorithm
- Namespace
- AiDotNet.Preprocessing.DimensionalityReduction
- Assembly
- AiDotNet.dll
Specifies the shortest path algorithm for Isomap.
public enum IsomapPathAlgorithm
Fields
Dijkstra = 1Dijkstra's algorithm (O(n² log n) for all pairs).
FloydWarshall = 0Floyd-Warshall algorithm (O(n³), finds all pairs).