Skip to main content

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


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.1.tar.gz (12.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

novatium-0.1.1-py3-none-any.whl (12.9 kB view details)

Uploaded Python 3

File details

Details for the file novatium-0.1.1.tar.gz.

File metadata

  • Download URL: novatium-0.1.1.tar.gz
  • Upload date:
  • Size: 12.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.13

File hashes

Hashes for novatium-0.1.1.tar.gz
Algorithm Hash digest
SHA256 818757dfcf080f5d286a008d72c5478aa4775cc9d8ce82d21ff5361c703426bd
MD5 04731ecee0977e23a4ea7b18a33bb702
BLAKE2b-256 6e5c8e5112d903581dd5ea4cba13d03c7d53fdbf0106f64f0f0bd32c2b6072bd

See more details on using hashes here.

File details

Details for the file novatium-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: novatium-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 12.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.13

File hashes

Hashes for novatium-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 2cda86edf9b1f9c41a0bb15ae2a971e8bbdcf725bb353c2963d281b5332d963c
MD5 662334ca74ec9e13b872e5ab52fa5684
BLAKE2b-256 8960cb81529c23ddbb5d0f7e7c32b1062c36c42b3a42882f103e8a9f9215e009

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 Pingdom Monitoring Sentry Error logging StatusPage Status page