ModelForge
ModelForge is a transparent, local-first AutoML framework for discovering, evaluating, explaining, and persisting scikit-learn pipelines. It keeps the workflow inspectable: data audits, preprocessing, model screening, cross-validation, ranking, reproducibility metadata, and artifacts are all available as Python objects and local files.
Quick start
python -m pip install -e ".[dev]"
modelforge train --data examples/house_prices.csv --target price \
--task-type regression --output model.joblib
modelforge predict --model model.joblib --data examples/house_prices_new.csv
The same workflow is available from Python:
from modelforge import AutoML
automl = AutoML(cv=5, random_state=42)
result = automl.fit(data, target="price", task_type="regression")
automl.save("artifacts/house-prices.joblib", overwrite=True)
print(result["best_model"])
What is included
ModelForge currently provides ingestion, target detection, profiling, column intelligence, data-quality and leakage auditing, preprocessing, feature engineering and selection, a model registry, screening, cross-validation, ranking, explainability, persistence, prediction validation, optimization, experiment tracking, run management, configuration, CLI workflows, failure isolation, robustness checks, and reproducibility snapshots.
Optional model and optimization integrations are declared in pyproject.toml:
python -m pip install -e ".[boosting,optimization]"
CLI
modelforge --help
modelforge models --task-type classification
modelforge experiments list --directory .modelforge/experiments
modelforge experiments get EXPERIMENT_ID
modelforge experiments compare ID_ONE ID_TWO
The CLI uses Rich tables and keeps generated models, experiment JSON, and metadata local by default.
Examples and benchmarks
examples/end_to_end_regression.pydemonstrates a complete Python workflow.examples/end_to_end_classification.pydemonstrates classification and probability prediction.benchmarks/benchmark_baselines.pycompares ModelForge with simple baseline estimators and records runtime and quality metrics.
Run an example with python examples/end_to_end_regression.py or run the
benchmark with python benchmarks/benchmark_baselines.py.
Development
.venv\\Scripts\\python.exe -m pytest -q
ruff check .
GitHub Actions runs the test suite on supported Python versions. The roadmap
for the remaining product work lives in docs/ROADMAP.md; it separates
implemented foundations from integrations that require optional dependencies
or additional design work.
Release files for autoforge-engine 0.1.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| autoforge_engine-0.1.1.tar.gz | 83.8 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| autoforge_engine-0.1.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 146.9 kB
Release files / autoforge_engine-0.1.1.tar.gz
| Download URL | autoforge_engine-0.1.1.tar.gz |
|---|---|
| Size | 83.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
e0ef5b5ece8e456d7581b187461c7968a3bddafea760068c5c6063b312ac8a65
|
|
BLAKE2b-256 checksum How to use checksums |
a102116a8ce0ffa198dd5e70385fe7f28174293e06c5d6e260260a0a592d8cc5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency logRelease files / autoforge_engine-0.1.1-py3-none-any.whl
| Download URL | autoforge_engine-0.1.1-py3-none-any.whl |
|---|---|
| Size | 63.1 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
c26aed1a144018d9546091b72b2cbdc06f144a2faef7f6abe5a7f34ca943b591
|
|
BLAKE2b-256 checksum How to use checksums |
08047eab77b862df769bed8e6ee84b3d7b14bf457cdf09576b434179feca8701
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency log