API Reference
This section contains the complete API reference for JASMINE.
Core Modules
Package Overview
JASMINE is organized into several modules, each providing specific functionality:
jasmine.linear_model- Linear, ridge, lasso, and logistic regression modelsjasmine.neighbors- Nearest-neighbor classifiersjasmine.svm- Support Vector Machine classifiersjasmine.preprocessing- Data preprocessing utilitiesjasmine.datasets- Synthetic data generatorsjasmine.metrics- Performance metricsjasmine.model_selection- Data splitting utilities
Quick Reference
Most Common Classes
Linear regression trained with gradient descent. |
|
Binary logistic regression trained with gradient descent. |
|
|
Linear regression with L2 regularization. |
|
Linear regression with L1 regularization. |
|
K-Nearest Neighbors Classifier. |
|
A linear Support Vector Machine (SVM) classifier. |
|
StandardScaler standardizes features by removing the mean and scaling to unit variance. |
Most Common Functions
Generate a random regression problem with JAX. |
|
Generate a random n-class classification problem with. |
|
Split arrays into random train and test subsets. |
|
|
Mean Squared Error loss. |
|
Compute the accuracy score between true and predicted values. |