I am trying to mimic the behavior of PCA class available in sklearn.decomposition.
I have wrote a method which computes the SVD but I am not sure what does fit(), tranform(), and fit_transform() do without which I'm not able to proceed further.
I think fit() computes the svd and the singular values can be accessed using the singular_values_ attribute but I don't know about the remaining two methods.
BaseEstimatorandTransformerMixin, or another one? - Arne