microduck_rl
Desplegar microduck_rl: workers reproducibles y puertas físicas
GPU, artefactos, export, límites, watchdog y parada.

Qué aprenderás
- Map environment, simulator, and runner
- Run a reproducible simulation
- Identify sim-to-real gates
Antes de empezar
- Basic Git and command-line usage
- Comfort reading a project README
You can explain the project, run its documented first step, and decide what to verify before adopting it.
Conclusiones clave
- Workers need simulator and asset pinning.
- Checkpoints require telemetry and config provenance.
- Hardware is a separate, safety-critical deployment.
Simulation worker
Los workers guardan configuración, reward, checkpoints y telemetría; el hardware exige timing, saturación, sensores y aprobación del operador.
Use the pinned source evidence, record versions and assumptions, and ask a qualified reviewer to validate the result before adopting it.
Artifact contract
Persist config, reward/termination definitions, code revision, checkpoints, telemetry, videos, and evaluation summaries. Make reruns possible without mutable latest tags.
Hardware boundary
Policy export, control frequency, actuator limits, sensor dropout, watchdogs, emergency stop, and operator approval are deployment gates, not afterthoughts.
Use the pinned source evidence, record versions and assumptions, and ask a qualified reviewer to validate the result before adopting it.
Cómo elegir
| Criterio | Opción A | Opción B |
|---|---|---|
| Best when | You need predictable behavior and easy auditing | You need adaptive optimization and have reliable telemetry |
| Main risk | May leave performance on the table | Can become difficult to explain or debug |
Pasos de implementación
- 1
Build a pinned simulation image.
- 2
Run smoke/evaluation workers.
- 3
Store immutable artifacts and logs.
- 4
Complete hardware gate tests before transfer.
Ejemplo para copiar
pinned image -> simulator worker -> checkpoint/telemetry
export -> timing/limits/watchdog tests
operator approval -> guarded hardware trialPreguntas frecuentes
Can training and serving use the same image?
They can, but separate images often make dependencies and safety boundaries easier to audit.
What is the emergency-stop requirement?
Use the qualified robot platform's independent stop path; do not rely on a policy process alone.
Fuentes
- microduck_rl repositoryFuente verificada 2026-08-31