cjlin1 / libsvm

LIBSVM -- A Library for Support Vector Machines
https://www.csie.ntu.edu.tw/~cjlin/libsvm/
BSD 3-Clause "New" or "Revised" License
4.54k stars 1.64k forks source link

probability density estimation by using libsvm #149

Open hp-ekko opened 5 years ago

hp-ekko commented 5 years ago

I did not find instructions on how to use libsvm for probability density estimation. Can you provide relevant help, thank you

cjlin1 commented 5 years ago

We don't have prob density estimation.. For unsupervised data, all we have is one-class SVM. For supervised data, we do have prob outputs, but I guess they are not what you want.

On 2019-09-13 20:29, hp-ekko wrote:

I did not find instructions on how to use libsvm for probability density estimation. Can you provide relevant help, thank you

-- You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub [1], or mute the thread [2]. [ { "@context": "http://schema.org", "@type": "EmailMessage", "potentialAction": { "@type": "ViewAction", "target": "https://github.com/cjlin1/libsvm/issues/149?email_source=notifications\u0026email_token=ABI3BHXEBDPMR4VEHAUMJWDQJRLDPA5CNFSM4IWVXXKKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLLMWVA", "url": "https://github.com/cjlin1/libsvm/issues/149?email_source=notifications\u0026email_token=ABI3BHXEBDPMR4VEHAUMJWDQJRLDPA5CNFSM4IWVXXKKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLLMWVA", "name": "View Issue" }, "description": "View this Issue on GitHub", "publisher": { "@type": "Organization", "name": "GitHub", "url": "https://github.com" } } ]

Links:

[1] https://github.com/cjlin1/libsvm/issues/149?email_source=notifications&email_token=ABI3BHXEBDPMR4VEHAUMJWDQJRLDPA5CNFSM4IWVXXKKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLLMWVA [2] https://github.com/notifications/unsubscribe-auth/ABI3BHQMQADZY5J3KEYEVUTQJRLDPANCNFSM4IWVXXKA

hp-ekko commented 5 years ago

Thank you for your reply. If I want to use it for probability density estimation, do I need to modify this library, for example, modify svm.cpp.

cjlin1 commented 5 years ago

Yes you need to modify svm.cpp (and even need to develop the methodology)

On 2019-09-24 00:59, hp-ekko wrote:

Thank you for your reply. If I want to use it for probability density estimation, do I need to modify this library, for example, modify svm.cpp.

-- You are receiving this because you commented. Reply to this email directly, view it on GitHub [1], or mute the thread [2]. [ { "@context": "http://schema.org", "@type": "EmailMessage", "potentialAction": { "@type": "ViewAction", "target": "https://github.com/cjlin1/libsvm/issues/149?email_source=notifications\u0026email_token=ABI3BHQUH4GTYHKRGUG5M33QLHCF3A5CNFSM4IWVXXKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7NOV4Q#issuecomment-534440690", "url": "https://github.com/cjlin1/libsvm/issues/149?email_source=notifications\u0026email_token=ABI3BHQUH4GTYHKRGUG5M33QLHCF3A5CNFSM4IWVXXKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7NOV4Q#issuecomment-534440690", "name": "View Issue" }, "description": "View this Issue on GitHub", "publisher": { "@type": "Organization", "name": "GitHub", "url": "https://github.com" } } ]

Links:

[1] https://github.com/cjlin1/libsvm/issues/149?email_source=notifications&email_token=ABI3BHQUH4GTYHKRGUG5M33QLHCF3A5CNFSM4IWVXXKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7NOV4Q#issuecomment-534440690 [2] https://github.com/notifications/unsubscribe-auth/ABI3BHWHFSQYPAD62EQ5DDDQLHCF3ANCNFSM4IWVXXKA

hp-ekko commented 5 years ago

Thank you for your reply!I will try it.