No project description provided
Project description
lssvr
lssvr
is a Python module implementing the Least Squares Support Vector Regression using the scikit-learn as base.
instalation
the lssvr
package is available in PyPI. to install, simply type the following command:
pip install lssvr
or using Poetry:
poetry add lssvr
basic usage
Example:
import numpy as np
from lssvr import LSSVR
from sklearn.datasets import load_boston
from sklearn.model_selection import train_test_split
from sklearn.metrics import mean_squared_error
boston = load_boston()
X_train, X_test, y_train, y_test = train_test_split(boston.data, boston.target, test_size=0.2)
model = LSSVR(kernel='rbf', gamma=0.01)
model.fit(X_train, y_train)
y_hat = model.predict(X_test)
print('MSE', mean_squared_error(y_test, y_hat))
print('R2 Score',model.score(X_test, y_test))
contributing
this project is open for contributions. here are some of the ways for you to contribute:
- bug reports/fix
- features requests
- use-case demonstrations
to make a contribution, just fork this repository, push the changes in your fork, open up an issue, and make a pull request!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
lssvr-0.1.0.tar.gz
(3.8 kB
view details)
Built Distribution
lssvr-0.1.0-py3-none-any.whl
(4.6 kB
view details)
File details
Details for the file lssvr-0.1.0.tar.gz
.
File metadata
- Download URL: lssvr-0.1.0.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.3 CPython/3.8.5 Linux/5.4.0-56-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 696d6d7c88daa96c292865b444c9be67bfbe6b0dc5411bcdeb78516ac6eb3a38 |
|
MD5 | 4028cc4a3757701b4096a239327b8c70 |
|
BLAKE2b-256 | c2e236d54bc7aae3603b85a3be161ed1892895008d101eb9f67326c09e993750 |
File details
Details for the file lssvr-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: lssvr-0.1.0-py3-none-any.whl
- Upload date:
- Size: 4.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.3 CPython/3.8.5 Linux/5.4.0-56-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5b4ebe455542fe24e6d2891ffcd0007dea2f5390ff1898f82eca1f3dc3e77483 |
|
MD5 | c56e5c874a71331f016c358437e000c2 |
|
BLAKE2b-256 | 63dee2a4c84b8df40dbbb533bb81638bb4ac26ddf5b5e9136c714183adecc64b |