Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
vinx13 authored and vigsterkr committed Jun 11, 2018
1 parent 9dc2d80 commit 607ca17
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
3 changes: 1 addition & 2 deletions src/shogun/converter/ica/ICAConverter.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,7 @@ namespace shogun
virtual CFeatures* transform(CFeatures* features, bool inplace = true);

/** Inverse apply the ICA converter to features by multiplying the
* feature
* matrix by the mixing matirx.
* feature matrix by the mixing matirx.
* @param features the features to transformed, should be an instance of
* CDenseFeatures<float64_t>
* @param inplace transform in place
Expand Down
3 changes: 1 addition & 2 deletions src/shogun/preprocessor/DensePreprocessor.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,7 @@ template <class ST> class CDensePreprocessor : public CPreprocessor
virtual SGMatrix<ST> apply_to_matrix(SGMatrix<ST> matrix) = 0;

/** Inverse apply preprocessor on matrix. Subclasses should try to apply
* in
* place to avoid copying.
* in place to avoid copying.
* @param matrix the input feature matrix
* @return the matrix after applying the preprocessor
*/
Expand Down
10 changes: 5 additions & 5 deletions src/shogun/transformer/Transformer.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@ namespace shogun
transform(CFeatures* features, bool inplace = true) = 0;

/** Apply inverse transformation to features. If transformation is
*performed in place, underlying data of input features will be reused
*if possible.
* @param features features to transform
* @param inplace whether transform in place
* @return the result feature object after inverse applying the
* performed in place, underlying data of input features will be reused
* if possible.
* @param features features to transform
* @param inplace whether transform in place
* @return the result feature object after inverse applying the
*transformer
*/
virtual CFeatures*
Expand Down

0 comments on commit 607ca17

Please sign in to comment.