Install
openclaw skills install mlops-automation-cnTask automation, containerization, CI/CD, and experiment tracking
openclaw skills install mlops-automation-cnAutomate tasks, containers, CI/CD, and ML experiments.
Copy justfile:
cp references/justfile ../your-project/
Tasks:
just check - Run all checksjust test - Run testsjust build - Build packagejust clean - Remove artifactsjust train - Run trainingMulti-stage build:
cp references/Dockerfile ../your-project/
docker build -t my-model .
docker run my-model
Optimizations:
Automated pipeline:
cp references/ci-workflow.yml ../your-project/.github/workflows/ci.yml
Runs on push/PR:
# Setup task runner
cp references/justfile ./
# Setup CI
mkdir -p .github/workflows
cp references/ci-workflow.yml .github/workflows/ci.yml
# Setup Docker
cp references/Dockerfile ./
# Test locally
just check
docker build -t test .
import mlflow
mlflow.autolog()
with mlflow.start_run():
mlflow.log_param("lr", 0.001)
model.fit(X, y)
mlflow.log_metric("accuracy", acc)
Converted from MLOps Coding Course