Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/external-miner/README.md
Original file line numberDiff line numberDiff line change
Expand Up@@ -14,7 +14,7 @@ over HTTP to the live challenges:
| Challenge | `challenge_id` | Scoring | Guide | Public miner repo |
|-----------|----------------|---------|-------|-------------------|
| Design | `design` | `challenge_scoring_version` **2** (daily share ≥2 wins + agentic) | [design.md](./design.md) | [BaseIntelligence/design-challenge](https://github.com/BaseIntelligence/design-challenge) |
| Prism | `prism` | `challenge_scoring_version` **2** (bpb-only) | [prism.md](./prism.md) | [BaseIntelligence/prism](https://github.com/BaseIntelligence/prism) (miner docs forthcoming) |
| Prism | `prism` | `challenge_scoring_version` **2** (bpb-only) | [prism.md](./prism.md) | [BaseIntelligence/prism](https://github.com/BaseIntelligence/prism) |

Do **not** conflate version axes:

Expand Down
3 changes: 3 additions & 0 deletions docs/external-miner/troubleshoot.md
Original file line numberDiff line numberDiff line change
Expand Up@@ -22,6 +22,9 @@
| Symptom | Likely cause | What to check |
|---------|--------------|---------------|
| Rejected submit | Recipe contract | `GET /v1/recipe` + baseline; follow [`PRISM_RECIPE.md`](../PRISM_RECIPE.md) |
| Source-tree rejected on raw ZIP | Need `zip_base64` JSON intake | Multi-file trees (helpers/`kernels/`/`tokenizer/`) must use JSON `zip_base64`, not raw `application/zip` |
| Tokenizer / hub errors on pod | No network; wrong declaration | Use `ctx["tokenizer"]`; declare via `tokenizer/` or `build_tokenizer` in `architecture.py` (not `training.py`). GPT-2 is fallback only |
| `CAP_EXCEEDED` / Score 0 | Model > 350M params | Terminal — resize `build_model`; not auto-retried |
| Score 0 after review | `Copied` / `Suspicious` | Similarity gate; rewrite; do not paste baseline wholesale |
| Stuck `Provisioning` | Lium market thinness | Ops-side; watch `GET /v1/jobs` / events |
| Idempotent replay | Same `submission_id` | Expected — returns prior row |
Expand Down