There may be some description errors!
shenzgang opened this issue · 1 comments
shenzgang commented
There may be some description errors, may bring confusion to the user! It should be a logarithmic transformer.
Part of the code :at line 222 of class com.salesforce.op.dsl
/**
* Square root transformer
* @return transformed feature
*/
def log(base: Double): FeatureLike[Real] =
f.transformWith(new LogTransformer[I](base = base))
and
/**
* Square root transformer
* @return transformed feature
*/
def power(power: Double): FeatureLike[Real] =
f.transformWith(new PowerTransformer[I](power = power))
I think I forgot to change the description when copying the template code. It would have looked better if I had the correct description!
tovbinm commented
Thank for reporting this. Feel free to make a PR with corrected description ;)