File size: 9,606 Bytes
ecc81b3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
"""Train a 2-D LSTM under the viewer's control panel.

Run the viewer dev server, then:

    python examples/viewer_live.py

The script builds ``td.LSTM`` over a sparse 2-D lattice on the best available
device (MPS on Apple Silicon, else CUDA, else CPU) and then **waits**: nothing
trains until the Start button in the viewer is pressed. State flows one way,
control the other:

- state:   ``viewer/public/run.json`` is rewritten after every step β€” the
  architecture spec, loss history, status, and progress. The viewer polls it.
- control: a small HTTP server (default port 8765) accepts
  ``POST /control {"action": "start" | "pause" | "resume" | "stop"}`` from the
  panel's buttons. The run document carries the control URL, so the viewer
  knows where to send them.

The task is the library's own trainability task: a cumulative sum along the
``w`` axis, which a model that never mixes along ``w`` provably cannot learn.
"""

from __future__ import annotations

import json
import os
import threading
import time
from http.server import BaseHTTPRequestHandler, ThreadingHTTPServer
from pathlib import Path

import torch
import torch.nn as nn

import torch_dimensions as td

OUT = Path(__file__).resolve().parent.parent / "viewer" / "public" / "run.json"
PRESET = os.environ.get("TD_VIEWER_PRESET", "lstm2d")
STEPS = int(os.environ.get("TD_VIEWER_STEPS", "2000" if PRESET == "mamba4d" else "300"))
EVAL_EVERY = 10
CONTROL_PORT = 8765


class Control:
    """The run's state machine, shared between the HTTP thread and training.

    waiting β†’ (start) β†’ training ⇄ (pause/resume) paused
    any state β†’ (stop) β†’ stopped; training ends naturally β†’ done.
    """

    ACTIONS = {
        "start": ("waiting", "training"),
        "pause": ("training", "paused"),
        "resume": ("paused", "training"),
    }

    def __init__(self) -> None:
        self.state = "waiting"
        self.cond = threading.Condition()

    def apply(self, action: str) -> str:
        with self.cond:
            if action == "stop" and self.state in ("waiting", "training", "paused"):
                self.state = "stopped"
            else:
                expected = self.ACTIONS.get(action)
                if expected and self.state == expected[0]:
                    self.state = expected[1]
            self.cond.notify_all()
            return self.state

    def wait_while(self, *states: str) -> str:
        with self.cond:
            while self.state in states:
                self.cond.wait(timeout=1.0)
            return self.state

    def finish(self) -> None:
        with self.cond:
            if self.state != "stopped":
                self.state = "done"


def serve_control(ctrl: Control, port: int) -> ThreadingHTTPServer:
    class Handler(BaseHTTPRequestHandler):
        def _respond(self, code: int, body: dict | None = None) -> None:
            payload = json.dumps(body or {}).encode()
            self.send_response(code)
            self.send_header("Access-Control-Allow-Origin", "*")
            self.send_header("Access-Control-Allow-Methods", "GET, POST, OPTIONS")
            self.send_header("Access-Control-Allow-Headers", "Content-Type")
            self.send_header("Content-Type", "application/json")
            self.send_header("Content-Length", str(len(payload)))
            self.end_headers()
            self.wfile.write(payload)

        def do_OPTIONS(self) -> None:  # CORS preflight
            self._respond(204)

        def do_GET(self) -> None:
            self._respond(200, {"state": ctrl.state})

        def do_POST(self) -> None:
            if self.path != "/control":
                self._respond(404, {"error": "POST /control"})
                return
            try:
                raw = self.rfile.read(int(self.headers.get("Content-Length", 0)))
                action = json.loads(raw or b"{}").get("action", "")
            except (ValueError, TypeError):
                self._respond(400, {"error": "body must be JSON with an 'action'"})
                return
            self._respond(200, {"state": ctrl.apply(action)})

        def log_message(self, *args) -> None:  # keep stdout for training progress
            pass

    server = ThreadingHTTPServer(("127.0.0.1", port), Handler)
    threading.Thread(target=server.serve_forever, daemon=True).start()
    return server


def pick_device() -> str:
    if torch.backends.mps.is_available():
        return "mps"
    if torch.cuda.is_available():
        return "cuda"
    return "cpu"


def build(preset: str):
    """Presets: lstm2d (small, fast) and mamba4d (the deep end β€” a sparse 4-D
    lattice under Mamba-ND with the official paired schedule)."""
    torch.manual_seed(0)
    if preset == "mamba4d":
        valid = torch.rand(4, 5, 6, 4) > 0.3
        valid.reshape(-1)[0] = True
        lat = td.Lattice(
            shape=(4, 5, 6, 4), names=("depth", "row", "col", "group"), valid=valid, time=True
        )
        plan = td.ScanPlan.paired(
            lat.axis_names, n_layers=18, bidirectional=("depth", "row", "col", "group")
        )
        model = td.Mamba(d_model=48, lattice=lat, plan=plan, d_input=1, d_state=16)
        task = "cumsum along col β€” sparse 4Γ—5Γ—6Γ—4, Mamba-ND, paired schedule"
        return lat, model, task, "col", 4, 6
    valid = torch.rand(6, 8) > 0.25
    valid[0, 0] = True
    lat = td.Lattice(shape=(6, 8), names=("h", "w"), valid=valid, time=True)
    model = td.LSTM(d_model=32, n_layers=6, lattice=lat, d_input=1, bidirectional=("h", "w"))
    return lat, model, "cumsum along w (sparse 6Γ—8 lattice)", "w", 8, 5


def main() -> None:
    device = pick_device()
    lat, model, task, target_axis, batch, t_len = build(PRESET)
    model = model.to(device)
    head = nn.Linear(model.config["d_model"], 1).to(device)
    opt = torch.optim.Adam([*model.parameters(), *head.parameters()], lr=1e-2)

    mask = lat.mask(torch.float32).to(device)
    w_dim = lat.tensor_dim(target_axis)

    # Which flat positions are present, in the order the viewer rebuilds them:
    # `parseSpec` walks the flattened lattice and keeps the present cells, so a
    # present-only array in C order lines up index for index with the cells it
    # draws. Sending the absent ones too would be padding the wire with values
    # the model is not allowed to see.
    present = mask.reshape(-1).bool().cpu()

    def draw(g: torch.Generator) -> tuple[torch.Tensor, torch.Tensor]:
        x = torch.randn(batch, t_len, *lat.shape, 1, generator=g).to(device) * mask
        return x, x.cumsum(dim=w_dim) * mask

    ctrl = Control()
    serve_control(ctrl, CONTROL_PORT)

    run: dict = {
        "started": time.time(),
        "device": device,
        "task": task,
        "status": "waiting",
        "control": f"http://127.0.0.1:{CONTROL_PORT}",
        "total_steps": STEPS,
        "spec": model.to_spec(),
        "metrics": [],
    }

    def flush() -> None:
        run["status"] = ctrl.state
        tmp = OUT.with_suffix(".tmp")
        OUT.parent.mkdir(parents=True, exist_ok=True)
        tmp.write_text(json.dumps(run))
        os.replace(tmp, OUT)

    flush()
    print(f"model built on {device}; waiting for Start in the viewer (control :{CONTROL_PORT})")
    if ctrl.wait_while("waiting") == "stopped":
        flush()
        print("stopped before training began")
        return

    g = torch.Generator().manual_seed(1)
    x_eval, y_eval = draw(torch.Generator().manual_seed(9973))

    for step in range(STEPS):
        if ctrl.state == "paused":
            flush()
            print(f"paused at step {step}")
            if ctrl.wait_while("paused") == "stopped":
                break
            print("resumed")
        if ctrl.state == "stopped":
            break

        x, y = draw(g)
        out = head(model(x))
        loss = (out - y).pow(2).mean()
        opt.zero_grad()
        loss.backward()
        opt.step()

        # What the lattice actually holds this step, for the viewer's
        # `data_show` labels: one sample, the last timestep, present cells
        # only. Reusing the training forward rather than running a second one β€”
        # a viewer that changes the training cost is measuring itself.
        with torch.no_grad():
            flat = lambda t: t[0, -1].reshape(-1)[present].cpu()  # noqa: E731
            run["cells"] = {
                "step": step,
                "pred": [round(v, 3) for v in flat(out.detach()).tolist()],
                "true": [round(v, 3) for v in flat(y).tolist()],
            }

        entry: dict = {"step": step, "loss": float(loss.detach())}
        if step % EVAL_EVERY == 0 or step == STEPS - 1:
            # The weight diagrams show what the model holds *now*, not what it
            # held when the page was opened. Refreshed on the eval cadence
            # rather than every step: the digest probes each mixer with an
            # impulse to measure its operator, and doing that per step would
            # make the viewer a measurable part of the training cost.
            run["weights"] = {
                "step": step,
                **td.viz.weights(model, max_units=16, operator_size=12),
            }
            model.eval()
            with torch.no_grad():
                entry["held_out"] = float((head(model(x_eval)) - y_eval).pow(2).mean())
            model.train()
            print(f"step {step:4d}  loss {entry['loss']:.5f}  held-out {entry['held_out']:.5f}")
        run["metrics"].append(entry)
        flush()

    ctrl.finish()
    flush()
    print(ctrl.state)


if __name__ == "__main__":
    main()