Struct faiss_sys::FaissClusteringParameters [] [src]

#[repr(C)]
pub struct FaissClusteringParameters { pub niter: c_int, pub nredo: c_int, pub verbose: c_int, pub spherical: c_int, pub update_index: c_int, pub frozen_centroids: c_int, pub min_points_per_centroid: c_int, pub max_points_per_centroid: c_int, pub seed: c_int, }

Class for the clustering parameters. Can be passed to the constructor of the Clustering object.

Fields

< clustering iterations

< redo clustering this many times and keep best

< (bool)

< (bool) do we want normalized centroids?

< (bool) update index after each iteration?

< (bool) use the centroids provided as input and do not change them during iterations

< otherwise you get a warning

< to limit size of dataset

< seed for the random number generator

Trait Implementations

impl Debug for FaissClusteringParameters
[src]

[src]

Formats the value using the given formatter. Read more

impl Copy for FaissClusteringParameters
[src]

impl Clone for FaissClusteringParameters
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations