pub enum DimensionalityReductionAlgorithm {
Show 24 variants
QPCA,
QICA,
QtSNE,
QUMAP,
QLDA,
QFactorAnalysis,
QCCA,
QNMF,
QVAE,
QDenoisingAE,
QSparseAE,
QManifoldLearning,
QKernelPCA,
QMDS,
QIsomap,
QMutualInfoSelection,
QRFE,
QLASSO,
QRidge,
QVarianceThresholding,
QTimeSeriesDR,
QImageTensorDR,
QGraphDR,
QStreamingDR,
}Expand description
Quantum dimensionality reduction algorithms
Variants§
QPCA
Quantum Principal Component Analysis
QICA
Quantum Independent Component Analysis
QtSNE
Quantum t-distributed Stochastic Neighbor Embedding
QUMAP
Quantum Uniform Manifold Approximation and Projection
QLDA
Quantum Linear Discriminant Analysis
QFactorAnalysis
Quantum Factor Analysis
QCCA
Quantum Canonical Correlation Analysis
QNMF
Quantum Non-negative Matrix Factorization
QVAE
Quantum Variational Autoencoder
QDenoisingAE
Quantum Denoising Autoencoder
QSparseAE
Quantum Sparse Autoencoder
QManifoldLearning
Quantum Manifold Learning
QKernelPCA
Quantum Kernel PCA
QMDS
Quantum Multidimensional Scaling
QIsomap
Quantum Isomap
QMutualInfoSelection
Quantum Mutual Information Selection
QRFE
Quantum Recursive Feature Elimination
QLASSO
Quantum LASSO
QRidge
Quantum Ridge Regression
QVarianceThresholding
Quantum Variance Thresholding
QTimeSeriesDR
Quantum Time Series Dimensionality Reduction
QImageTensorDR
Quantum Image/Tensor Dimensionality Reduction
QGraphDR
Quantum Graph Dimensionality Reduction
QStreamingDR
Quantum Streaming Dimensionality Reduction
Trait Implementations§
Source§impl Clone for DimensionalityReductionAlgorithm
impl Clone for DimensionalityReductionAlgorithm
Source§fn clone(&self) -> DimensionalityReductionAlgorithm
fn clone(&self) -> DimensionalityReductionAlgorithm
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl PartialEq for DimensionalityReductionAlgorithm
impl PartialEq for DimensionalityReductionAlgorithm
Source§fn eq(&self, other: &DimensionalityReductionAlgorithm) -> bool
fn eq(&self, other: &DimensionalityReductionAlgorithm) -> bool
self and other values to be equal, and is used by ==.impl Copy for DimensionalityReductionAlgorithm
impl StructuralPartialEq for DimensionalityReductionAlgorithm
Auto Trait Implementations§
impl Freeze for DimensionalityReductionAlgorithm
impl RefUnwindSafe for DimensionalityReductionAlgorithm
impl Send for DimensionalityReductionAlgorithm
impl Sync for DimensionalityReductionAlgorithm
impl Unpin for DimensionalityReductionAlgorithm
impl UnwindSafe for DimensionalityReductionAlgorithm
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self to the equivalent element of its superset.