Hi,
I want to implement one-class SVM in Julia(SVM.jl) very similar to scikit-learn in python (here).
I see that SVM.jl is unmaintained and will be removed from the metadata shortly. Is it going to be removed for sure? What would be the alternative to SVM.jl?
Probably the best course of action is to just go for it and create a new package if the topic is something that interests you. There certainly is room for it and I am sure people would find it useful if it is well made
Yes. I donāt want to discourage innovation because of the existence of a half finished package. At this state it should not be considered as relevant to anyone who is interested into tackling SVMs themselves.
I started KSVM with a very particular vision of what it should be, but quickly discovered that I need some other building blocks first in order to realize my plan the way I want to. Some parts are almost there (such as LossFunctions.jl), some I still need to flesh out. Basically I am following a bottom up approach that has very little āvisibleā progress, so I try to keep quiet unless I have something concrete to report. I only have my spare time available for this, but I will get there eventually.
Just curious, why is SVM.jl no longer maintained? What is the scope of improvement so that we can have it registered again in METADATA?
I would be happy to volunteer for it.
Has there been any further activity on this? I have tested the One-Class LIBSVM.jl implementation on simple test examples and it gives wrong answers (see my GitHub post on the LIBSVM.jl page). I have started a new query on Discourse about it because this thread is so old (also, I had missed this thread on my earlier searches).
Hi, Iāve been meaning to look into SVMs, and related, myself. Maybe you can use SciKitLearn through the Julia wrapper or some of these other libraries?
Hi. The last Convex link is very helpful and interesting indeed.
Thank you so much for that.
ScikitLearn apparenly uses LIBSVM and is just an additional interface. However, someone helpfully pointed out that by adjusting the ānuā parameter away from the default value (a blanket value set mainly for other SV types) one can get good performance.
Regarding the LIBINEAR it looks like it is still in development, but will be interesting as it develops.