Python SDK and CLI for logging InstantML training runs, metrics, artifacts, and rich objects.
Project description
InstantML Python SDK
InstantML is a training-loop observability SDK for logging runs, scalar metrics, rank-aware distributed metrics, configs, tags, notes, artifacts, checkpoints, tables, histograms, classification eval bundles, media, and source context to the InstantML platform.
Install
pip install instantml
Log in
instantml login
Opens your browser, completes a device-code flow against the InstantML platform, and stores the resulting org-scoped credential at ~/.instantml/credentials. The SDK reads it automatically for training-loop logging, artifact uploads, imports, TensorBoard sync, and exports — no env vars to manage. Same UX as wandb login, gh auth login, gcloud auth login.
Device-code credentials are scoped for scalar/rich-object SDK ingest and read/export jobs. Use a dashboard or onboarding API key with artifacts:write when a script uploads files, checkpoints, or artifact bytes.
instantml whoami # confirm who you're logged in as
instantml logout # clear the cached credential
Log a run
import os
import instantml as im
run = im.init(project="llm-7b-sft", config=cfg)
rank = int(os.environ.get("RANK", "0"))
world_size = int(os.environ.get("WORLD_SIZE", "1"))
for step, batch in enumerate(loader):
loss = train_step(batch)
run.log({"loss": loss}, step=step)
# Optional: distributed workers can log per-rank values for reducer,
# coverage, heatmap, and outlier dashboards.
run.log_rank_metrics(
{"loss": loss},
step=step,
rank=rank,
world_size=world_size,
weight=len(batch),
)
run.finish()
For binary classification evals, log a typed rich object instead of a screenshot:
run.log_classification_eval(
"eval/classification",
y_true=[0, 1, 1, 0],
y_score=[0.1, 0.8, 0.7, 0.2],
class_names=["negative", "positive"],
positive_label="positive",
step=10,
)
To upload checkpoints, use an API key that includes artifacts:write:
run = im.init(project="llm-7b-sft", api_key="instantml_...")
policy = im.CheckpointPolicy(every_steps=500)
for step, batch in enumerate(loader):
loss = train_step(batch)
run.log({"loss": loss}, step=step)
if policy.should_save(step):
save_model("./ckpt/model.pt")
run.log_checkpoint_file("./ckpt/model.pt", step=step)
run.finish()
Fork and attach to a checkpoint retry
When the dashboard or API creates a linked fork from a checkpoint, attach the SDK to that existing run record and continue logging:
api = im.Api(base_url="http://127.0.0.1:8000", api_key="instantml_...")
child = api.fork_run("source-run-id", checkpoint_artifact_id="artifact-id", step=500)
run = im.attach_run(child["id"], base_url="http://127.0.0.1:8000", api_key="instantml_...")
run.log({"loss": 0.12}, step=501)
run.finish()
Forking creates a same-project linked run record only; it does not start
training or copy metrics/artifacts. The SDK derives a stable fork idempotency
key from the request body by default so retrying the same fork call returns the
same child run instead of creating duplicates. attach_run() validates the
target run by default and uses async uploads; use validate=False only for
write-only credentials or intentionally offline attach flows, and call
finish() or wait_for_processing() before short scripts exit.
Running on a remote server or CI
Skip instantml login and pass credentials explicitly. Two ways:
export INSTANTML_API_KEY=instantml_...
run = im.init(project="cartpole", api_key="instantml_...")
Get a key from Settings → API Keys in the dashboard.
Self-hosted / local development
Override the API base URL via env var or kwarg:
export INSTANTML_API_BASE_URL=http://127.0.0.1:8000
run = im.init(
project="cartpole",
base_url="http://127.0.0.1:8000",
api_key="instantml_...",
)
Shadow Weights & Biases
If you're migrating from W&B and want to compare numbers side-by-side, pass shadow_wandb=True to init. Scalar run.log(...) calls, finish(), and local-file metadata artifacts created with log_artifact("name", "file://path", ...) are mirrored to a parallel wandb.Run, using your existing WANDB_API_KEY / WANDB_ENTITY env vars. wandb.init runs on a background thread so InstantML's init stays sub-millisecond.
run = im.init(project="llm-7b-sft", config=cfg, shadow_wandb=True)
Override the W&B project or entity independently:
run = im.init(
project="llm-7b-sft",
shadow_wandb={"project": "llm-experiments", "entity": "my-team"},
)
Attach to an already-initialized wandb.Run:
import wandb
wb_run = wandb.init(project="llm-7b-sft")
run = im.init(project="llm-7b-sft", shadow_wandb=wb_run)
If wandb is not installed or wandb.init fails, shadow logging is disabled with a warning and InstantML logging continues unaffected.
InstantML remains the source of truth for rich objects, uploaded files, checkpoint uploads, console capture, and system metrics.
Imports and framework adapters
Migration import commands run locally, redact source payloads, and upload canonical Import v2 chunks to InstantML. Third-party credentials stay on your machine.
instantml import wandb --project cartpole --entity my-team --source-project old-project
instantml import neptune --project cartpole --input ./neptune-export/data --files-path ./neptune-export/files
instantml import mlflow --project cartpole --input mlflow-export.json
instantml sync tensorboard runs/tensorboard --project cartpole --watch --watch-interval 10
Neptune Exporter metric histories stream as bounded Import v2 chunks, and repeated TensorBoard syncs append scalar points to the existing imported TensorBoard run when source identity matches. Imported external artifact references remain metadata-only, but they appear in the versioned Artifacts catalog and lineage graph as run-level external manifest bundles after commit.
For a W&B-style logging subset, intentionally alias the compatibility module:
import instantml.compat.wandb as wandb
run = wandb.init(project="cartpole", config={"seed": 13})
wandb.log({"train/loss": 0.1}, step=1)
run.finish()
Unsupported W&B surfaces, including sweeps and mode="offline"/"dryrun",
WANDB_MODE=offline/dryrun, and batching kwargs such as
wandb.log(..., commit=False), raise UnsupportedWandbFeature instead of
silently changing logging semantics.
Framework adapters are available from the top-level package and lazily subclass installed framework base classes when present:
trainer.add_callback(im.InstantMLCallback(project="cartpole"))
logger = im.InstantMLLogger(project="cartpole")
callbacks = [im.InstantMLKerasCallback(project="cartpole")]
Optional extras
The core package has no required third-party runtime dependencies. Install extras for richer local conversions and system metrics:
pip install "instantml[media]" # Pillow, imageio, moviepy, soundfile
pip install "instantml[system]" # psutil, pynvml
pip install "instantml[imports]" # pyarrow for Neptune Exporter imports
pip install "instantml[wandb]" # direct local W&B export and dual logging
pip install "instantml[tensorboard]" # TensorBoard event parsing
pip install "instantml[frameworks]" # HF/Lightning/Keras adapter bases
pip install "instantml[all]"
source_tracking=True uses privacy-safe defaults: entrypoint basename, git
availability/commit/dirty state, Python version, and platform. Pass
im.SourceTracking(...) to opt into argv, cwd/repo root, branch, host/pid, and
safe git diff summary/digest capture; raw patch text is not stored in run
metadata.
The SDK also ships a process-isolated spool uploader for high-throughput offline replay:
instantml-uploader --spool-dir .instantml/spool
By default, instantml.init() uses buffered async metric/log uploads:
run = im.init(project="cartpole")
run.log_metrics({"train/reward": 100.0}, step=1)
run.log_stdout("step=1 reward=100.0")
run.wait_for_submission(timeout=30)
run.finish(timeout=30)
Async mode snapshots scalar metrics, rank metrics, console logs, and final
status into a small process-local producer buffer, group-commits them to a
per-run SQLite WAL queue, then drains that queue in a background uploader
process. The default producer flushes at 64 events, 64 KiB, or 20 ms. A returned
async log() can be lost if the Python process is killed before that short
buffer reaches SQLite, so call finish(), flush(), or a wait helper before
short scripts exit. Network and delivery errors are surfaced through
run.upload_status() and warnings instead of raising from the hot logging path.
Pass upload_mode="sync" when a script or CI check needs immediate foreground
API errors from metric/log calls. Pass queue_dir="..." to move the default
.instantml/async local queue. Flushed queue payloads are stored as plaintext
SQLite WAL files with owner-only permissions where the OS supports them.
Orphaned flushed queues can be recovered with the same environment or
instantml login credentials:
instantml-uploader --queue-dir .instantml/async
License
Apache 2.0 — see LICENSE. The InstantML hosted backend (dashboard, API, storage) is a separate commercial offering; the SDK in this package is open source.
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 instantml-0.1.0.tar.gz.
File metadata
- Download URL: instantml-0.1.0.tar.gz
- Upload date:
- Size: 87.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc9097ffdb18001bdc198400085dcb6007a7bbbcc8c9950e94d9fc50e7cd4025
|
|
| MD5 |
1149f4e9d13b3a676c6881a521b54d87
|
|
| BLAKE2b-256 |
95476345dd780d8d842f8d9c55265bef8803b0a84bea36c2beefb5b9a4474fbc
|
Provenance
The following attestation bundles were made for instantml-0.1.0.tar.gz:
Publisher:
python-sdk-release.yml on InstantML/monorepo
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
instantml-0.1.0.tar.gz -
Subject digest:
dc9097ffdb18001bdc198400085dcb6007a7bbbcc8c9950e94d9fc50e7cd4025 - Sigstore transparency entry: 1711408177
- Sigstore integration time:
-
Permalink:
InstantML/monorepo@f78017e5d93213b331c2c5d1e418d17de4ed9904 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/InstantML
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-sdk-release.yml@f78017e5d93213b331c2c5d1e418d17de4ed9904 -
Trigger Event:
release
-
Statement type:
File details
Details for the file instantml-0.1.0-py3-none-any.whl.
File metadata
- Download URL: instantml-0.1.0-py3-none-any.whl
- Upload date:
- Size: 79.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bd7ed5f1cb69b35a2fd41d7ef4cc28743a2c92ef3ee5762da6722085771d65cb
|
|
| MD5 |
b9e78e4fd29bbe8b7f21fb827b1e6b37
|
|
| BLAKE2b-256 |
1a6974a5558e6717ec940624339c9410b4b653c8216a5f4f5c4897992b11da46
|
Provenance
The following attestation bundles were made for instantml-0.1.0-py3-none-any.whl:
Publisher:
python-sdk-release.yml on InstantML/monorepo
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
instantml-0.1.0-py3-none-any.whl -
Subject digest:
bd7ed5f1cb69b35a2fd41d7ef4cc28743a2c92ef3ee5762da6722085771d65cb - Sigstore transparency entry: 1711408570
- Sigstore integration time:
-
Permalink:
InstantML/monorepo@f78017e5d93213b331c2c5d1e418d17de4ed9904 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/InstantML
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-sdk-release.yml@f78017e5d93213b331c2c5d1e418d17de4ed9904 -
Trigger Event:
release
-
Statement type: