Skip to main content

PyPi License Python3 downloads downloads_month DOI

Variant-SVMs

./logo/logo_header.png

VarSVM is a Python scikit-learn estimators module for solving variants Support Vector Machines (SVM).

Website: https://variant-svm.readthedocs.io

This project was created by Ben Dai. If there is any problem and suggestion please contact me via <bdai@umn.edu>.

Installation

Dependencies

varsvm requires:

  • Python

  • NumPy

  • Pandas

  • Sklearn

User installation

Install Variant-SVMs using pip

pip install varsvm

or

pip install git+https://github.com/statmlben/varsvm.git

Please install python3-dev before install varsvm

sudo apt-get install python3-dev

Source code

You can check the latest sources with the command:

git clone https://github.com/statmlben/varsvm.git

Documentation

weightsvm

Classical weighted SVMs.

  • class VarSVM.weightsvm(alpha=[], beta=[], C=1., max_iter = 1000, eps = 1e-4, print_step = 1)

    • Parameters:
      • alpha: Dual variable.

      • beta: Primal variable, or coefficients of the support vector in the decision function.

      • C: Penalty parameter C of the error term.

      • max_iter: Hard limit on iterations for coordinate descent.

      • eps: Tolerance for stopping criterion based on the relative l1 norm for difference of beta and beta_old.

      • print_step: If print the interations for coordinate descent, 1 indicates YES, 0 indicates NO.

    • Methods:
      • decision_function(X): Evaluates the decision function for the samples in X.
        • X : array-like, shape (n_samples, n_features)

      • fit(X, y, sample_weight=1.): Fit the SVM model.
        • X : {array-like, sparse matrix}, shape (n_samples, n_features)

        • y : array-like, shape (n_samples,) NOTE: y must be +1 or -1!

        • sample_weight : array-like, shape (n_samples,), weight for each sample.

Drift SVM

SVM with dift or fixed intercept for each instance.

  • class VarSVM.driftsvm(alpha=[], beta=[], C=1., max_iter = 1000, eps = 1e-4, print_step = 1)

    • Parameters:
      • alpha: Dual variable.

      • beta: Primal variable, or coefficients of the support vector in the decision function.

      • C: Penalty parameter C of the error term.

      • max_iter: Hard limit on iterations for coordinate descent.

      • eps: Tolerance for stopping criterion based on the relative l1 norm for difference of beta and beta_old.

      • print_step: If print the interations for coordinate descent, 1 indicates YES, 0 indicates NO.

    • Methods:
      • decision_function(X): Evaluates the decision function for the samples in X.
        • X : array-like, shape (n_samples, n_features)

      • fit(X, y, drift, sample_weight=1.): Fit the SVM model.
        • X : {array-like, sparse matrix}, shape (n_samples, n_features)

        • y : array-like, shape (n_samples,). NOTE: y must be +1 or -1!

        • drift: array-like, shape (n_samples,), drift or fixed intercept for each instance, see doc.

        • sample_weight : array-like, shape (n_samples,), weight for each instance.

Non-negative Drift SVM

SVM with non-negative constrains for coefficients.

  • class VarSVM.noneg_driftsvm(alpha=[], beta=[], C=1., max_iter = 1000, eps = 1e-4, print_step = 1)

    • Parameters:
      • alpha: Dual variable.

      • beta: Primal variable, or coefficients of the support vector in the decision function.

      • C: Penalty parameter C of the error term.

      • max_iter: Hard limit on iterations for coordinate descent.

      • eps: Tolerance for stopping criterion based on the relative l1 norm for difference of beta and beta_old.

      • print_step: If print the interations for coordinate descent, 1 indicates YES, 0 indicates NO.

    • Methods:
      • decision_function(X): Evaluates the decision function for the samples in X.
        • X : array-like, shape (n_samples, n_features)

      • fit(X, y, drift, sample_weight=1.): Fit the SVM model.
        • X : {array-like, sparse matrix}, shape (n_samples, n_features)

        • y : array-like, shape (n_samples,). NOTE: y must be +1 or -1!

        • drift: array-like, shape (n_samples,), drift or fixed intercept for each instance, see doc.

        • sample_weight : array-like, shape (n_samples,), weight for each instance.

Example

import numpy as np
from sklearn.datasets import make_classification
from varsvm import noneg_driftsvm
from sklearn.model_selection import GridSearchCV

X, y = make_classification(n_features=4, random_state=0)
y = y * 2 - 1

# fit a single model
n = len(X)
drift = .28*np.ones(n)

clf = noneg_driftsvm()
clf.fit(X=X, y=y, drift=drift)
y_pred = clf.decision_function(X=X, drift=drift)

# Tuning hyperparams based on sklearn.model_selection.GridSearchCV
parameters = {'C':[1, 10]}
psvm = noneg_driftsvm()
clf = GridSearchCV(psvm, parameters)
clf.fit(iris.data, iris.target)

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

varsvm-1.3.tar.gz (9.3 kB view details)

Uploaded Source

File details

Details for the file varsvm-1.3.tar.gz.

File metadata

  • Download URL: varsvm-1.3.tar.gz
  • Upload date:
  • Size: 9.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.8.10

File hashes

Hashes for varsvm-1.3.tar.gz
Algorithm Hash digest
SHA256 15d955c556b205c5f7fb2fa5ecc3d3fa96d13682c4a3592c8dc6b18197ae3d4d
MD5 d5b4e3b4b1711259f6cb49f3944c1906
BLAKE2b-256 570b09d3bc27542d42673ae41c258d4e0d74ac3d09abfe0df8f0268e95f4bf70

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page