File size: 3,353 Bytes
f210e99
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
---
pretty_name: CodeLeWM Run Artifacts
license: other
tags:
- code
- python
- world-model
- evaluation
- research-artifact
---

# CodeLeWM Run Artifacts

This dataset repository is the public artifact registry for CodeLeWM training,
evaluation, demo, and publication runs. It is organized as manifest-backed run
trees rather than as a conventional train/test dataset.

## What Is Hosted Here

| Artifact family | Example path | Role |
| --- | --- | --- |
| v0.2 and earlier code-edit runs | `runs/codelewm-action-use-retrieval-20260520-7895d18/**` | negative action-use and retrieval evidence |
| v0.7/v0.8 execution runs | `codelewm-v0-8-short-execution-20260605-1b737e4-seed-42/**` | execution-transition diagnostics |
| v0.9 execution runs | `codelewm-v0-9-short-execution-20260606-69f798a-seed-{42,1729}/**` | final execution-training and reranking artifacts |
| Visual/demo bundles | `visual-observability/**` and related run paths | UI and harness diagnostics |

Artifacts include manifests, configs, reports, checkpoint metadata, benchmark
outputs, and selected checkpoint files. The primary current dataset is
`abdelstark/codelewm-execution-pack`; historical code-edit shards are in
`abdelstark/codelewm-public-shard`.

## Dataset And Model Context

- Current execution dataset: `abdelstark/codelewm-execution-pack@v0.9.0-rc1`,
  2,188 tokenized `(code, input, output)` records with deterministic sandbox
  provenance.
- Historical code-edit dataset: `abdelstark/codelewm-public-shard`, used by
  the scaled/action-use experiments.
- Historical transition-model checkpoints:
  `abdelstark/codelewm-transition-model`.
- v0.9 execution checkpoints and run reports are stored directly in this
  repository under their run ids.

## Claim Boundary

CodeLeWM is claim-gated. These artifacts support reproducibility, inspection,
and diagnostic comparisons. They do not support a broad claim that CodeLeWM
generally improves coding. The final public evidence supports negative
action-use conclusions plus a narrow HumanEval WS-D reranking slice; the
aggregate downstream claim remains closed.

## Verification

Download a v0.9 run tree and verify it locally:

```bash
hf download abdelstark/codelewm-runs \
  --repo-type dataset \
  --include 'codelewm-v0-9-short-execution-20260606-69f798a-seed-42/**' \
  --local-dir .artifacts/hf-download/codelewm-runs

uv run codelewm manifest verify \
  --manifest .artifacts/hf-download/codelewm-runs/codelewm-v0-9-short-execution-20260606-69f798a-seed-42/manifest.json \
  --parent-manifest .artifacts/v0_9/hf-pack-download/artifact_manifest.json \
  --json

uv run codelewm secret-scan \
  .artifacts/hf-download/codelewm-runs/codelewm-v0-9-short-execution-20260606-69f798a-seed-42 \
  --json
```

Expected result: manifest verification returns `ok=true` and the secret scan
returns `ok=true` with zero findings. The parent-manifest path should point to
a local download of `abdelstark/codelewm-execution-pack@v0.9.0-rc1`.

## Related Repositories

- Code repository: `https://github.com/AbdelStark/CodeLeWM`
- Current execution dataset: `https://huggingface.co/datasets/abdelstark/codelewm-execution-pack`
- Historical code-edit shard: `https://huggingface.co/datasets/abdelstark/codelewm-public-shard`
- Historical transition-model checkpoints: `https://huggingface.co/abdelstark/codelewm-transition-model`