Closed asbisen closed 7 years ago
Thanks for working on this!
Hm, I don't think that is a good way to achieve the effect you want. predict!
with a !
is supposed to be mutating, so copying the input data circumvents that.
Probably the cleanest way to do it would be to adapt predict
.
T<:AbstractFloat
predict
for T<:Real
that uses convert(Array{Float64}, ...)
instead of copy(...)
thanks for guidance, makes complete sense. I will close this pull request and open a new one.
@Evizero made a small change to ensure integer matrix can be used for FeatureNormalizer