Skip to content

This Python code returns the weights, bias (if any) and margin using more general support-vector machine (SVM) in which weights can be constrained and bias can be discarded.

License

Notifications You must be signed in to change notification settings

myyim/SVM_weight_constraints

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 

Repository files navigation

SVM_weight_constraints

This Python code returns the weights, bias (if any) and margin using more general support-vector machine (SVM) with optional bias and weight constraints.

Introduction

Support vector machine (SVM) is a binary classifer with optimal hyperplane that separates the two classes of linear separable patterns. The standard implementation involves a bias and weight constraints, and can be performed using sklearn. However, in reality, bias may not exist, and weights may be constrained by the neuron types (excitatory and inhibitory neurons). This more general SVM resolves those questions. See svm.pdf for details.

More general SVM with optional bias and weight constraints

svm_standard performs the standard SVM using sklearn package. svm_qp implements the more general SVM with optional bias and weight constraints. Examples are given for illustration.

Contact

I have written some notes on the implementation of SVMs with constraints. The notes can be shared upon request ([email protected]).

License

This project is licensed under the MIT License.

About

This Python code returns the weights, bias (if any) and margin using more general support-vector machine (SVM) in which weights can be constrained and bias can be discarded.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages