Skip to content
Snippets Groups Projects
Commit 7b717e3a authored by Cédric Traizet's avatar Cédric Traizet
Browse files

Get Dimension method added, this method needs to be overrided in the DR models

parent 1f14c5d1
No related branches found
No related tags found
1 merge request!4Dimensionality reduction algorithms
......@@ -117,6 +117,8 @@ public:
TargetSampleType Predict(const InputSampleType& input, ConfidenceValueType *quality = ITK_NULLPTR) const;
virtual unsigned int GetDimension() {return 1;}; /// This method is used to determine the output vector size after dimensionality reduction, and should be overrided for all machine learning models used for dimensionality reduction. This method is not used for classification and regression
/** Predict a batch of samples (InputListSampleType)
* \param input The batch of sample to predict
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment