Container-level ideal for autonomous workloads.
dotnet run -- --existence 033 --cycles 20 --format text--existence(-e):010 | 020 | 030 | 031 | 032 | 033 | 040(default033)--cycles(-c): integer>= 1(default20)--format(-f):text | json(defaulttext)--include-engine-logs: include internal learning logs in JSON mode--list-instructional-assets: print packaged instructional image paths and exit--print-instructional-readme: print the packaged Section 4 instructional README and exit--export-instructional-assets <output-dir>: copy packaged instructional assets (README + images) to a directory and exit
Build:
podman build -t localhost/ideal-amd64:local .Run with text output:
podman run --rm localhost/ideal-amd64:local --existence 033 --cycles 20 --format textRun with machine-readable trained outputs:
podman run --rm localhost/ideal-amd64:local --existence 033 --cycles 30 --format json --include-engine-logsRetrieve packaged instructional images (list paths):
podman run --rm localhost/ideal-amd64:local --list-instructional-assetsPrint the packaged Section 4 README:
podman run --rm localhost/ideal-amd64:local --print-instructional-readmeRetrieve packaged instructional assets as output files (mount host folder):
mkdir -p ./instructional-output
podman run --rm -v "$(pwd)/instructional-output:/output:Z" localhost/ideal-amd64:local --export-instructional-assets /outputDefault image: cartheur/ideal-amd64:latest
Export instructional README + images to ./instructional-output:
make docs-outPrint the instructional README to terminal:
make docs-readmeList instructional assets in the container:
make docs-listExport assets and render PDF automatically:
make docs-pdfOverride image and output directory:
make docs-out IMAGE=localhost/ideal-amd64:local OUTPUT_DIR="$(pwd)/tmp-docs"Override for PDF generation as well:
make docs-pdf IMAGE=localhost/ideal-amd64:local OUTPUT_DIR="$(pwd)/tmp-docs"The JSON output emits one object per step, for example:
{"step":0,"mood":"Pleased","engineLogs":["Enacted e1r2"]}podman login docker.io
podman tag localhost/ideal-amd64:local docker.io/<dockerhub-username>/ideal-amd64:0.1.0
podman push docker.io/<dockerhub-username>/ideal-amd64:0.1.0Optional latest tag:
podman tag localhost/ideal-amd64:local docker.io/<dockerhub-username>/ideal-amd64:latest
podman push docker.io/<dockerhub-username>/ideal-amd64:latest