maestro-economics
CLI and SDK for the RA Data platform — datasets, compute, and experiments.
pip install maestro-economics
mecon --help
mecon resources
mecon submit . --resource cpu-4c-16gb
CPU runs support two modes:
# Lower-cost default; may restart, so long jobs must resume from durable progress.
mecon submit . --resource cpu-16c-32gb --mode standard
# Fewer infrastructure interruptions; CPU only, billed at the Stable rate.
mecon submit . --resource cpu-16c-64gb --mode stable
For CPU timeouts above four hours, save progress during the run, load it at startup, and confirm the contract at submission:
def run(ctx):
state = ctx.load_checkpoint() or {"step": 0}
for step in range(int(state["step"]), 100):
# compute one restart-safe unit
ctx.save_checkpoint(step=step + 1)
return {"completed_steps": 100}
mecon submit . --resource cpu-16c-32gb --timeout 21600 --durable-resume
ctx.output_dir is also durable. Stable CPU reduces interruptions but does not
replace checkpoint/resume logic for long jobs.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
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 maestro_economics-0.8.4-py3-none-any.whl.
File metadata
- Download URL: maestro_economics-0.8.4-py3-none-any.whl
- Upload date:
- Size: 40.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b4f419cbd930a1748e18063875b60a0a0a9c9415102f4883b057d12d75b46fe
|
|
| MD5 |
06ca5132c1855b8e208d0b1366166ac1
|
|
| BLAKE2b-256 |
f931bf86b53ceefdc587d02dd758eeef9e5ba36025510e3b4bb3780c53a92d5f
|