fix: launch trainer from extracted archive

This commit is contained in:
2026-08-14 05:12:47 -05:00
parent aab9ce0fe7
commit 3a568d150b
6 changed files with 26 additions and 10 deletions
+12 -1
View File
@@ -51,7 +51,7 @@ instead, run:
From the extracted archive:
```bash
scripts/build-wakeword-training-image jr-wakeword-training:0.2.1-jrich-2
scripts/build-wakeword-training-image jr-wakeword-training:0.2.1-jrich-3
```
The build is the only dependency-installing step. It verifies the reviewed dependency hashes and
@@ -153,6 +153,17 @@ attempt directory contains:
- `training-result.json`: hashes and a compact private-artifact inventory;
- resolved request/configuration, logs, resource evidence, stage evidence, and checksums.
The JR-Gateway result buttons expose four different artifacts:
- **Client bundle (recommended for another project):** the deployment-friendly ONNX model,
threshold/config manifest, evaluation report, checksums, license, and third-party notices.
- **ONNX:** only the model used by a client for wakeword detection.
- **PT:** the PyTorch model weights, mainly for developers and future conversion.
- **Retraining bundle:** the large private archive containing PT, generated and augmented training
data, feature arrays, configuration, provenance, and integrity records. Keep it only if you may
retrain, increase the data scale, or recover the training environment later. Clients do not need
it.
The final PT contains model weights, not a complete optimizer/RNG checkpoint. It supports safe
re-export and a future explicit warm start, but not exact interrupted-training resume. Do not share
the private run directory unless you intend to share its generated/training data and provenance.