Novatium — Cosmic-Grade Machine Learning with NovaRegressor and NovaClassifier
Project description
Novatium
Cosmic-Grade Machine Learning — supercharged Base+Delta models for regression and classification.
Install (from TestPyPI first)
pip install -i https://test.pypi.org/simple/ novatium
(Once released on PyPI: pip install novatium)
Quickstart
NovaRegressor
from novatium import NovaRegressor
from sklearn.datasets import load_diabetes
from sklearn.linear_model import LinearRegression
from sklearn.ensemble import RandomForestRegressor
X, y = load_diabetes(return_X_y=True)
model = NovaRegressor(base_model=LinearRegression(), delta_model=RandomForestRegressor(n_estimators=200, random_state=42))
model.fit(X, y)
pred = model.predict(X[:5])
print(pred)
NovaClassifier
from novatium import NovaClassifier
from sklearn.datasets import load_breast_cancer
from sklearn.linear_model import LogisticRegression
from sklearn.ensemble import GradientBoostingRegressor
X, y = load_breast_cancer(return_X_y=True)
clf = NovaClassifier(base_model=LogisticRegression(max_iter=1000), delta_model=GradientBoostingRegressor(random_state=42))
clf.fit(X, y)
proba = clf.predict_proba(X[:5])
print(proba)
Why Novatium?
- Drop-in Base+Delta pattern to uplift strong baselines.
- Sklearn-compatible: works with pipelines, grid search, etc.
- Domain-agnostic: tabular now; CV/NLP-ready APIs.
License
Apache-2.0 — see LICENSE.
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
novatium-0.1.0.tar.gz
(7.2 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file novatium-0.1.0.tar.gz.
File metadata
- Download URL: novatium-0.1.0.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6bbefbe245fd0620ba80a8f5f55af9f027098c31ba6e9f3536cd5e334aa576cd
|
|
| MD5 |
ecdb4569309e02da98ae8ab2b29b2648
|
|
| BLAKE2b-256 |
0fcb22b25e7ec6e627c359d37b394733aa38b653613afa770fdb8e1d1b572ac9
|
File details
Details for the file novatium-0.1.0-py3-none-any.whl.
File metadata
- Download URL: novatium-0.1.0-py3-none-any.whl
- Upload date:
- Size: 7.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d58659c2d8045afeb7805de977c7b1dae81e90f67957c3d22c3c2b1243002988
|
|
| MD5 |
77b7408c87a00fc953dd563dba006d98
|
|
| BLAKE2b-256 |
c6551f9312c647f96672c125beebffb8b5e2b7959f1305b083c2f8ce697c158d
|