Fork me on GitHub
#data-science
<
2021-11-24
>
Krishan V23:11:34

Hey everyone, is there a performant implementation of KNN and other classifier algorithms available on clojars? Thinking of writing one myself if there isn't one already.

thom03:11:32

Only drawback there is it seems to bring in Fastmath which is at least a GB of stuff. I opted to write my own but that was partly because we were shipping a desktop app which probably isn't your use case.

genmeblog07:11:09

Actually it's Smile which relies on native libraries...

thom08:11:47

Are you saying I can depend on Fastmath and not end up with a gigabyte of dependencies including MKL?

genmeblog15:11:04

Just wanted to say that depending on Smile brings MKL (and fastmath depending on Smile brings MKL as well).

genmeblog15:11:02

I'll try to check if it's possible to get rid of MKL and where it is used actually.