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 NovaAutoRegressor
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 = NovaAutoRegressor()
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.3.tar.gz
(12.1 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
novatium-0.1.3-py3-none-any.whl
(12.0 kB
view details)
File details
Details for the file novatium-0.1.3.tar.gz.
File metadata
- Download URL: novatium-0.1.3.tar.gz
- Upload date:
- Size: 12.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
349075bfdd7c69fc0013c9a6ee41668de2b16660ab53c0ca247a7c169e50a04f
|
|
| MD5 |
a1adf195fcb4f4866494d118f94eeee2
|
|
| BLAKE2b-256 |
61ff3e734d3d23133fb6f26f3967bddd2e3530f6e9fe44ac8af08e3a6bbb00bf
|
File details
Details for the file novatium-0.1.3-py3-none-any.whl.
File metadata
- Download URL: novatium-0.1.3-py3-none-any.whl
- Upload date:
- Size: 12.0 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 |
b19a0270d423a65e652589a0ec9c79449097787d13348cc0112ca98559b9f009
|
|
| MD5 |
cedfe78356c48d92c7381a72e8f75ced
|
|
| BLAKE2b-256 |
6867d16f34d649f44c665d7abd6398f8c408f03816408130ca46a7b0434e4623
|