Closed duboism closed 10 years ago
Hello,
The method set_params in PCA_L1_TV calls super(RR_L1_TV, self).set_params(**kwargs). I think it should call super(PCA_L1_TV, self).set_params(**kwargs).
set_params
PCA_L1_TV
super(RR_L1_TV, self).set_params(**kwargs)
super(PCA_L1_TV, self).set_params(**kwargs)
Yes, great find! I have fixed it.
Hello,
The method
set_params
inPCA_L1_TV
callssuper(RR_L1_TV, self).set_params(**kwargs)
. I think it should callsuper(PCA_L1_TV, self).set_params(**kwargs)
.