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 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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

novatium-1.1.0.tar.gz (13.8 kB view details)

Uploaded Source

Built Distribution

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

novatium-1.1.0-py3-none-any.whl (15.8 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for novatium-1.1.0.tar.gz
Algorithm Hash digest
SHA256 d91c8e981378ada11dbd02a69f7f2d5a9aafa380a2a7f692e219c7cc4c5c912f
MD5 0f889a0284bed8c217cd040e807a894c
BLAKE2b-256 35a2d8eb1d1dbdb54f72d3407893696aadbd53ea6928dbe552c1861676764f3a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for novatium-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 fa9820fbb63932847d8c29e1c513963299537fe0c34b1e38b4eff02adde9de19
MD5 919a7da349a536b5a0fefd66bcd9fdad
BLAKE2b-256 5d5908024229e02ba686fdc0810c938dca1fad21ddc7593f9b2e42b72ed81ecf

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