UMAPProject {Microsoft.VisualBasic.DataMining.UMAP} | .NET clr documentation |
binary file data model for save the UMAP embedding result
# namespace Microsoft.VisualBasic.DataMining.UMAP
export class UMAPProject {
clusters: string;
# width of the vector inside the UMAPProject.embedding result.
dimension: integer;
# the UMAP embedding result
embedding: Double[][];
# KNN graph
graph: Double[][];
labels: string;
# number of samples
samples: integer;
}