KladML SDK - Enterprise-grade MLOps toolkit
Project description
KladML
Build ML pipelines with pluggable backends. Simple. Modular. Yours.
⭐ Star us on GitHub to support the project!
Why KladML?
| Feature | KladML | MLflow | ClearML |
|---|---|---|---|
| Interface-based | ✅ Pluggable | ❌ Hardcoded | ❌ Hardcoded |
| Server required | ❌ No | ⚠️ Optional | ✅ Yes |
| Local-first | ✅ SQLite default | ✅ Yes | ❌ No |
| Learning curve | 🟢 Minutes | 🟡 Days | 🔴 Weeks |
| Custom backends | ✅ Easy | ⚠️ Complex | ❌ No |
Installation
pip install kladml
Quick Start
# Initialize a project
kladml init my-project
cd my-project
# Train the Gluformer model
kladml train single \
--model gluformer \
--data data/datasets/dataset.pkl \
--project my-project \
--experiment v1
Create Your Model
from kladml import TimeSeriesModel, ExperimentRunner
class MyForecaster(TimeSeriesModel):
def train(self, X_train, y_train=None, **kwargs):
# Your training logic
return {"loss": 0.1}
def predict(self, X, **kwargs):
return predictions
def evaluate(self, X_test, y_test=None, **kwargs):
return {"mae": 0.5, "mse": 0.25}
def save(self, path: str):
pass
def load(self, path: str):
pass
# Run with experiment tracking
runner = ExperimentRunner()
result = runner.run(
model_class=MyForecaster,
train_data=train_data,
experiment_name="my-experiment",
)
Architecture
KladML uses dependency injection with abstract interfaces. Swap implementations without changing your code:
┌─────────────────────────────────────────────────────────────┐
│ Your Code │
├─────────────────────────────────────────────────────────────┤
│ ExperimentRunner │
├─────────────────────────────────────────────────────────────┤
│ StorageInterface │ ConfigInterface │ TrackerInterface │
├─────────────────────────────────────────────────────────────┤
│ LocalStorage │ YamlConfig │ LocalTracker │
│ S3Storage │ EnvConfig │ MLflowTracker │
│ (your impl) │ (your impl) │ (your impl) │
└─────────────────────────────────────────────────────────────┘
Implement Custom Backends
from kladml.interfaces import StorageInterface
class S3Storage(StorageInterface):
"""Custom S3 implementation."""
def upload_file(self, local_path, bucket, key):
# Your S3 logic
...
# Plug it in
runner = ExperimentRunner(storage=S3Storage())
Interfaces
| Interface | Description | Default |
|---|---|---|
StorageInterface |
Object storage (files, artifacts) | LocalStorage |
ConfigInterface |
Configuration management | YamlConfig |
PublisherInterface |
Real-time metric publishing | ConsolePublisher |
TrackerInterface |
Experiment tracking | LocalTracker (MLflow + SQLite) |
Configuration
Create kladml.yaml:
project:
name: my-project
version: 0.1.0
training:
device: auto # auto | cpu | cuda | mps
storage:
artifacts_dir: ./artifacts
Or use environment variables:
export KLADML_TRAINING_DEVICE=cuda
export KLADML_STORAGE_ARTIFACTS_DIR=/data/artifacts
CLI Commands
kladml --help # Show all commands
kladml init <name> # Initialize new project
kladml train single ... # Train a model
kladml data convert ... # Convert datasets (PKL -> HDF5)
kladml version # Show version
Contributing
PRs welcome! See CONTRIBUTING.md for guidelines.
git clone https://github.com/kladml/kladml.git
cd kladml
pip install -e ".[dev]"
pytest
License
MIT License - see LICENSE for details.
Documentation · PyPI · GitHub
Made in 🇮🇹 by the KladML Team
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
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 kladml-0.2.0.tar.gz.
File metadata
- Download URL: kladml-0.2.0.tar.gz
- Upload date:
- Size: 83.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a33f9a9c6d560b3c40e59caee1c211ff7b9ffa26260f24ecb1feb7901d87a115
|
|
| MD5 |
ad1685f54e92ad10767c130124058680
|
|
| BLAKE2b-256 |
c43f14f1e93e87c1f7be4daefa11bd17b28fa48d860e23c344bd83ab4d60ce1e
|
Provenance
The following attestation bundles were made for kladml-0.2.0.tar.gz:
Publisher:
publish.yml on kladml/kladml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
kladml-0.2.0.tar.gz -
Subject digest:
a33f9a9c6d560b3c40e59caee1c211ff7b9ffa26260f24ecb1feb7901d87a115 - Sigstore transparency entry: 831316493
- Sigstore integration time:
-
Permalink:
kladml/kladml@84687788a282fe3adb2791c8170e9a403d0cfdee -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/kladml
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@84687788a282fe3adb2791c8170e9a403d0cfdee -
Trigger Event:
push
-
Statement type:
File details
Details for the file kladml-0.2.0-py3-none-any.whl.
File metadata
- Download URL: kladml-0.2.0-py3-none-any.whl
- Upload date:
- Size: 78.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c6ab1845946bda095a42498d7dd717a91a3ab68a81baaa4b3a6dd49ebb97862b
|
|
| MD5 |
50dfbb865a676531955a6db4fda5e0bb
|
|
| BLAKE2b-256 |
b29ef871284ec9c06e66d8ad83c2b9d478dd07a4661274afcb81d6d6dbfd6dda
|
Provenance
The following attestation bundles were made for kladml-0.2.0-py3-none-any.whl:
Publisher:
publish.yml on kladml/kladml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
kladml-0.2.0-py3-none-any.whl -
Subject digest:
c6ab1845946bda095a42498d7dd717a91a3ab68a81baaa4b3a6dd49ebb97862b - Sigstore transparency entry: 831316508
- Sigstore integration time:
-
Permalink:
kladml/kladml@84687788a282fe3adb2791c8170e9a403d0cfdee -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/kladml
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@84687788a282fe3adb2791c8170e9a403d0cfdee -
Trigger Event:
push
-
Statement type: