tests/test.sh exit code (0 → resolved); the classification below is post-hoc and cannot change it.List app structure
ls -la && echo "---SUBMISSION---" && ls -la submission/ && echo "---DATA---" && ls -la data/
total 89 drwxr-xr-x 4 user user 4096 Jun 30 22:50 . drwxr-xr-x 21 root root 4096 Jun 30 22:49 .. -rw-r--r-- 1 user user 14914 Jun 30 22:50 PROMPT.txt -rw-r--r-- 1 user user 5 Jun 30 22:50 agent.pid -rw-r--r-- 1 user user 0 Jun 30 22:50 agent.stderr -rw-r--r-- 1 user user 4554 Jun 30 22:50 agent_trajectory.jsonl drwxr-xr-x 2 user user 60 Jun 30 22:50 data -rw-r--r-- 1 user user 0 Jun 30 22:50 run.log -rwxr-xr-x 1 user user 45855 Jun 30 11:01 run_checks.py drwxr-xr-x 3 user user 128 Jun 30 22:50 submission -rwxr-xr-x 1 user user 1318 Jun 30 11:01 test.sh -rwxr-xr-x 1 user user 629 Jun 30 11:01 timer.sh ---SUBMISSION--- total 100 drwxr-xr-x 3 user user 128 Jun 30 22:50 . drwxr-xr-x 4 user user 4096 Jun 30 22:50 .. drwxr-xr-x 2 user user 4096 Jun 30 22:50 __pycache__ -rw-r--r-- 1 user user 48121 Jun 30 11:01 autograd.py -rw-r--r-- 1 user user 1692 Jun 30 11:01 data.py -rw-r--r-- 1 user user 23705 Jun 30 11:01 nn.py -rw-r--r-- 1 user user 12275 Jun 30 11:01 optim.py -rw-r--r-- 1 user user 2900 Jun 30 11:01 train.py ---DATA--- total 11108 drwxr-xr-x 2 user user 60 Jun 30 22:50 . drwxr-xr-x 4 user user 4096 Jun 30 22:50 .. -rw-r--r-- 1 user user 3953364 Jun 30 11:01 reweight.npz -rw-r--r-- 1 user user 7411924 Jun 30 11:01 train.npz
Line counts
wc -l submission/*.py run_checks.py test.sh 2>/dev/null
1306 submission/autograd.py
44 submission/data.py
543 submission/nn.py
272 submission/optim.py
65 submission/train.py
937 run_checks.py
24 test.sh
3191 total/app/submission/autograd.py
1 """Reverse-mode automatic differentiation over numpy arrays. 2 3 YOU MUST IMPLEMENT EVERYTHING MARKED ``# TODO`` / ``raise NotImplementedError`` using numpy 4 ONLY. No torch/jax/tensorflow/autograd/etc. The grader's conformance suite differentiates each 5 op below with central finite differences and compares against YOUR analytic backward, so every 6 backward must be correct (a single wrong reduction / Jacobian / group-weighting fails the checks). 7 8 A ``Tensor`` wraps one ``numpy.ndarray`` (stored as ``float64`` in ``self.data``) and records 9 the op that produced it so ``.backward()`` can accumulate ``.grad`` into every leaf. 10 11 CONTRACT (the grader builds its own reference against this exact API): 12 * ``Tensor(data, requires_grad=False)`` -- ``self.data`` is ``float64``; ``self.grad`` is None 13 until backward, then a same-shape ``float64`` array. requires_grad leaves accumulate grad. 14 * Every op returns a NEW Tensor whose ``requires_grad`` is the OR of its differentiable inputs, 15 and whose ``_backward`` closure does ``input._accum(local_grad)`` (so multiple paths add up). 16 * ``t.backward(grad=None)`` -- seeds ``grad`` (all-ones for a scalar) and walks the graph in 17 reverse topological order, calling each node's ``_backward``. Repeated backward accumulates. 18 * BROADCASTING: binary ops broadcast like numpy; the backward MUST reduce (sum) the upstream 19 gradient back to each input's ORIGINAL shape (use the provided ``_unbroadcast`` helper). 20 * …[truncated 52049 chars]
/app/submission/nn.py
1 """Neural-network layers + models + the robustness machinery, built on YOUR autograd engine. 2 3 Implement every ``# TODO`` forward (and the robustness-helper bodies). The parameters + 4 ``named_params`` naming + the checkpoint round-trip are already wired; you compose the autograd 5 ops. The grader checks each layer's forward against its OWN reference AND finite-difference-checks 6 the gradients that flow through your autograd, so the composition must be exactly right. 7 8 THE FINAL-METRIC MODEL is the pinned ``SmallCNN`` (a conv FEATURE EXTRACTOR + a single linear 9 CLASSIFIER). The split is what makes last-layer retraining (DFR) on a group-balanced set 10 expressible against the pinned graph: freeze the extractor and re-fit ONLY ``classifier``. 11 ``featurize(X, training)`` returns the post-ReLU embedding so you can freeze the extractor. 12 13 The other layers/models (Linear / Conv2d / BatchNorm2d / BatchNorm1d / LayerNorm / Dropout / 14 AvgPool2d / MLP / ResidualMLP / a TinyConvNet) are exercised by the conformance suite across a 15 WIDE surface -- each is an independent potential bug. The robustness machinery (``GroupDROState`` 16 exponentiated-gradient adversary-weight update, ``balanced_group_weights``, 17 ``class_balanced_weights``, ``log_class_prior``) is the domain-specific heart this task adds; the 18 ``robust`` milestone checks them. 19 20 SmallCNN naming contract (do not change -- the verifier indexes by these exact keys): 21 conv1.weight (Wd,3,3,3) | con …[truncated 24273 chars]
/app/submission/optim.py
1 """Optimizers + LR schedulers + grad clipping over a flat list of autograd ``Tensor`` parameters. 2 3 Implement the ``# TODO`` update math. All optimizers operate IN PLACE on ``param.data`` using 4 ``param.grad``. ``zero_grad()`` resets every grad to None. ``t`` is the 1-based step count. The 5 grader runs one (and several) steps of each and compares your updated params against its 6 reference within a tight tolerance, so the math must be EXACTLY right -- every optimizer / 7 scheduler / clipper is an independent potential bug. 8 9 The training recipe uses AdamW (decoupled weight decay) + ``clip_grad_norm`` for the ERM 10 extractor and the last-layer (DFR) retrain; the rest of the zoo is graded for parity. 11 12 SGD : g = grad + wd*p; v = mu*v + g; upd = (g + mu*v) if nesterov else v; p -= lr*upd 13 Adagrad : g = grad + wd*p; s += g^2; p -= lr*g/(sqrt(s)+eps) 14 RMSprop : g = grad + wd*p; s = alpha*s + (1-alpha)*g^2; p -= lr*g/(sqrt(s)+eps) 15 Adam : g = grad + wd*p (COUPLED L2); m,v EMA; mhat=m/(1-b1^t); vhat=v/(1-b2^t); 16 p -= lr*mhat/(sqrt(vhat)+eps) 17 AdamW : DECOUPLED wd; m,v EMA; p -= lr*( mhat/(sqrt(vhat)+eps) + wd*p ) 18 Adamax : m=b1*m+(1-b1)*g; u=max(b2*u, |g|); p -= (lr/(1-b1^t))*m/(u+eps) (infinity-norm) 19 NAdam : m,v EMA; mhat=m/(1-b1^t); vhat=v/(1-b2^t); 20 mnes = b1*mhat + (1-b1)*g/(1-b1^t); p -= lr*mnes/(sqrt(vhat)+eps) 21 Lion : upd = sign(b1*m + (1-b1)*g); p -= lr*(upd + wd*p); m = b2*m + (1-b2 …[truncated 11759 chars]
/app/submission/data.py
/app/submission/train.py
1 """Data loading + group helpers for the worst-group / spurious-correlation task.
2
3 Implement the ``# TODO`` bodies (numpy only). The splits ship as ``.npz`` files with arrays
4 ``X`` (N,3,S,S) float, ``y`` (the SHAPE class to predict) and ``g`` (the spurious background-color
5 id). A "group" is the pair ``(y, g)``; ``group_ids(y, g, n_classes) = y*n_classes + g`` flattens it
6 to a single id in ``[0, n_classes**2)``.
7 """
8 from __future__ import annotations
9
10 from typing import Dict, Tuple
11
12 import numpy as np
13
14
15 def load_npz(path: str) -> Tuple[np.ndarray, np.ndarray, np.ndarray]:
16 """Load (X, y, g) from a .npz; return float64 X, int64 y, int64 g. (Provided.)"""
17 d = np.load(path)
18 return (np.asarray(d["X"], dtype=np.float64),
19 np.asarray(d["y"], dtype=np.int64),
20 np.asarray(d["g"], dtype=np.int64))
21
22
23 def group_ids(y: np.ndarray, g: np.ndarray, n_classes: int) -> np.ndarray:
24 """Flatten (y, g) to a single group id y*n_classes + g (int64)."""
25 # TODO
26 raise NotImplementedError("group_ids")
27
28
29 def iterate(X, y, g, batch_size, rng):
30 """Yield (Xb, yb, gb) minibatches over a random permutation of the dataset."""
31 # TODO
32 raise NotImplementedError("iterate")
33
34
35 def worst_group_acc(preds, y, g, n_classes) -> Tuple[float, float, Dict[int, float]]:
36 """Return (min over (y,g) groups of within-group accuracy, average accuracy, per-group dict)."""
37
…[truncated 318 chars]1 """Training entry point. Implement your worst-group-robust recipe, train the pinned SmallCNN,
2 and save the checkpoint the grader will load.
3
4 Run it however you like (e.g. ``python3 /app/submission/train.py``). It MUST end by writing
5 ``/app/submission/model.npz`` via ``save_checkpoint`` below. The grader loads that file into its
6 OWN reference SmallCNN (architecture pinned to WIDTH/EMBED_DIM below -- keep these) and evaluates
7 WORST-GROUP accuracy on a SEALED, group-balanced test set; you pass the metric part iff
8 worst-group accuracy >= the frozen threshold. (You ALSO must pass the component conformance suite
9 over autograd.py / nn.py / optim.py.)
10
11 A naive cross-entropy ("ERM") run on the correlated train split will reach high AVERAGE accuracy
12 but ~0 worst-group accuracy -- it keys on the spurious background color. Removing that reliance is
13 the task. One well-known cheap recipe: train the feature extractor on the correlated data, then
14 RE-FIT ONLY the final ``classifier`` on the GROUP-BALANCED reweight split with a group-balanced
15 (group-weighted) loss so the head stops keying off color. You are free to use any method, as long
16 as you submit a state_dict for the pinned architecture.
17 """
18 from __future__ import annotations
19
20 import argparse
21 import json
22 import os
23 import sys
24
25 import numpy as np
26
27 sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
28 sys.path.insert(0, "/app")
29 sys.path.insert(0, "/app/su
…[truncated 1589 chars]/app/run_checks.py
1 #!/usr/bin/env python3 2 """PUBLIC component check runner for the from-scratch numpy framework (worst-group / spurious- 3 correlation task). 4 5 Run this AS OFTEN AS YOU LIKE while you implement to get a per-check progress signal: 6 7 python3 /app/run_checks.py # check the framework in /app/submission 8 python3 /app/run_checks.py --submission /dir 9 python3 /app/run_checks.py --only robust # focus a single milestone 10 11 It imports YOUR modules from /app/submission (autograd.py / nn.py / optim.py / data.py), exactly 12 as the grader does, and runs a PUBLIC portion of the component conformance suite, printing a clear 13 per-check report. Each FAIL line names the exact op / layer / optimizer / robustness-loss that is 14 wrong. 15 16 HOW THIS RELATES TO YOUR GRADE 17 ------------------------------ 18 This runner is a DEBUGGING AID, not the grader. It checks your framework against self-consistent 19 references it computes on its own: 20 * autograd_grads : central FINITE-DIFFERENCE of YOUR forward vs YOUR analytic backward. 21 * nn_forward : mathematical PROPERTIES your forward must satisfy. 22 * optim : YOUR optimizer step vs the closed-form update re-derived here in numpy, for 23 every optimizer + the LR schedulers + both grad clippers. 24 * robust : finite-diff of YOUR robustness-loss backward + the per-group-normalization / 25 Group-DRO / weight-helper PROPERTI …[truncated 47999 chars]
/app/submission/autograd.py
return grad.reshape(shape) class Tensor:
return grad.reshape(shape)
def _restore(grad, axis, keepdims, shape):
"""Broadcast a reduced gradient back to ``shape`` (for sum/mean/var/std/max/min)."""
g = np.asarray(grad, dtype=np.float64)
if axis is None:
return np.broadcast_to(g, shape)
axes = (axis,) if isinstance(axis, int) else tuple(axis)
nd = len(shape)
axes = sorted(ax % nd for ax in axes)
if not keepdims:
for ax in axes:
g = np.expand_dims(g, ax)
return np.broadcast_to(g, shape)
class Tensor:The file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
TODO: implement the topological walk + seeding. (The per-op ``_backward`` closures do
the local accumulation; here you only orchestrate the order + seed ``self.grad``.)
"""
raise NotImplementedError("Tensor.backward") TODO: implement the topological walk + seeding. (The per-op ``_backward`` closures do
the local accumulation; here you only orchestrate the order + seed ``self.grad``.)
"""
topo: List["Tensor"] = []
visited = set()
def build(v: "Tensor"):
if id(v) in visited:
return
visited.add(id(v))
for p in v._parents:
build(p)
topo.append(v)
build(self)
if grad is None:
grad = np.ones_like(self.data)
self._accum(_as_f64(grad))
for v in reversed(topo):
if v.grad is not None:
v._backward()The file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("add backward") # TODO
out._backward = _bw
return out def _bw():
g = out.grad
if a.requires_grad:
a._accum(_unbroadcast(g, a.data.shape))
if b.requires_grad:
b._accum(_unbroadcast(g, b.data.shape))
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("sub backward") # TODO
out._backward = _bw
return out def _bw():
g = out.grad
if a.requires_grad:
a._accum(_unbroadcast(g, a.data.shape))
if b.requires_grad:
b._accum(_unbroadcast(-g, b.data.shape))
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("mul backward") # TODO
out._backward = _bw
return out def _bw():
g = out.grad
if a.requires_grad:
a._accum(_unbroadcast(g * b.data, a.data.shape))
if b.requires_grad:
b._accum(_unbroadcast(g * a.data, b.data.shape))
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("div backward") # TODO
out._backward = _bw
return out def _bw():
g = out.grad
if a.requires_grad:
a._accum(_unbroadcast(g / b.data, a.data.shape))
if b.requires_grad:
b._accum(_unbroadcast(-g * a.data / (b.data * b.data), b.data.shape))
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("power backward") # TODO
out._backward = _bw
return out def _bw():
if a.requires_grad:
a._accum(out.grad * pf * (a.data ** (pf - 1.0)))
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("maximum backward") # TODO
out._backward = _bw
return out def _bw():
g = out.grad
sel = (a.data > b.data).astype(np.float64) + 0.5 * (a.data == b.data)
if a.requires_grad:
a._accum(_unbroadcast(g * sel, a.data.shape))
if b.requires_grad:
b._accum(_unbroadcast(g * (1.0 - sel), b.data.shape))
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("minimum backward") # TODO
out._backward = _bw
return out def _bw():
g = out.grad
sel = (a.data < b.data).astype(np.float64) + 0.5 * (a.data == b.data)
if a.requires_grad:
a._accum(_unbroadcast(g * sel, a.data.shape))
if b.requires_grad:
b._accum(_unbroadcast(g * (1.0 - sel), b.data.shape))
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("where backward") # TODO
out._backward = _bw
return out def _bw():
g = out.grad
cb = c.astype(bool)
if a.requires_grad:
a._accum(_unbroadcast(g * cb, a.data.shape))
if b.requires_grad:
b._accum(_unbroadcast(g * (~cb), b.data.shape))
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("exp backward") # TODO
out._backward = _bw
return out def _bw():
if a.requires_grad:
a._accum(out.grad * out.data)
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("log backward") # TODO
out._backward = _bw
return out def _bw():
if a.requires_grad:
a._accum(out.grad / a.data)
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("sqrt backward") # TODO
out._backward = _bw
return out def _bw():
if a.requires_grad:
a._accum(out.grad * 0.5 / out.data)
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("abs backward") # TODO
out._backward = _bw
return out def _bw():
if a.requires_grad:
a._accum(out.grad * np.sign(a.data))
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("clip backward") # TODO
out._backward = _bw
return out def _bw():
if a.requires_grad:
mask = (a.data > lo) & (a.data < hi)
a._accum(out.grad * mask)
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("sum backward") # TODO
out._backward = _bw
return out def _bw():
if a.requires_grad:
a._accum(_restore(out.grad, axis, keepdims, a.data.shape))
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("mean backward") # TODO
out._backward = _bw
return out def _bw():
if a.requires_grad:
a._accum(_restore(out.grad, axis, keepdims, a.data.shape) / n)
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("max backward") # TODO
out._backward = _bw
return out def _bw():
if a.requires_grad:
mfull = a.data.max(axis=axis, keepdims=True)
mask = (a.data == mfull).astype(np.float64)
counts = mask.sum(axis=axis, keepdims=True)
gfull = _restore(out.grad, axis, keepdims, a.data.shape)
a._accum(mask * gfull / counts)
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("min backward") # TODO
out._backward = _bw
return out def _bw():
if a.requires_grad:
mfull = a.data.min(axis=axis, keepdims=True)
mask = (a.data == mfull).astype(np.float64)
counts = mask.sum(axis=axis, keepdims=True)
gfull = _restore(out.grad, axis, keepdims, a.data.shape)
a._accum(mask * gfull / counts)
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("transpose backward") # TODO
out._backward = _bw
return out def _bw():
if a.requires_grad:
if axes is None:
a._accum(np.transpose(out.grad))
else:
inv = np.argsort(axes)
a._accum(np.transpose(out.grad, inv))
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("reshape backward") # TODO
out._backward = _bw
return out def _bw():
if a.requires_grad:
a._accum(out.grad.reshape(a.data.shape))
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("getitem backward") # TODO
out._backward = _bw
return out def _bw():
if a.requires_grad:
ga = np.zeros_like(a.data)
np.add.at(ga, idx, out.grad)
a._accum(ga)
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("concat backward") # TODO
out._backward = _bw
return out def _bw():
splits = np.cumsum(sizes)[:-1]
parts = np.split(out.grad, splits, axis=axis)
for ti, part in zip(ts, parts):
if ti.requires_grad:
ti._accum(part)
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("stack backward") # TODO
out._backward = _bw
return out def _bw():
for i, ti in enumerate(ts):
if ti.requires_grad:
sl = [slice(None)] * out.grad.ndim
sl[axis] = i
ti._accum(out.grad[tuple(sl)])
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("matmul backward") # TODO
out._backward = _bw
return out def _bw():
g = out.grad
ad, bd = a.data, b.data
if a.requires_grad:
ga = g @ np.swapaxes(bd, -1, -2)
a._accum(_unbroadcast(ga, ad.shape))
if b.requires_grad:
gb = np.swapaxes(ad, -1, -2) @ g
b._accum(_unbroadcast(gb, bd.shape))
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("relu backward") # TODO
out._backward = _bw
return out def _bw():
if a.requires_grad:
a._accum(out.grad * (a.data > 0.0))
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("leaky_relu backward") # TODO
out._backward = _bw
return out def _bw():
if a.requires_grad:
a._accum(out.grad * np.where(a.data > 0.0, 1.0, sl))
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("sigmoid backward") # TODO
out._backward = _bw
return out def _bw():
if a.requires_grad:
sd = out.data
a._accum(out.grad * sd * (1.0 - sd))
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("tanh backward") # TODO
out._backward = _bw
return out def _bw():
if a.requires_grad:
td = out.data
a._accum(out.grad * (1.0 - td * td))
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("gelu backward") # TODO
out._backward = _bw
return out def _bw():
if a.requires_grad:
pdf = np.exp(-0.5 * x * x) / np.sqrt(2.0 * np.pi)
a._accum(out.grad * (cdf + x * pdf))
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("softmax backward") # TODO
out._backward = _bw
return out def _bw():
if a.requires_grad:
g = out.grad
sd = out.data
a._accum(sd * (g - (g * sd).sum(axis=axis, keepdims=True)))
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("log_softmax backward") # TODO
out._backward = _bw
return out def _bw():
if a.requires_grad:
g = out.grad
a._accum(g - s * g.sum(axis=axis, keepdims=True))
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("softplus backward") # TODO
out._backward = _bw
return out def _bw():
if a.requires_grad:
a._accum(out.grad * (1.0 / (1.0 + np.exp(-bx))))
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("silu backward") # TODO
out._backward = _bw
return out def _bw():
if a.requires_grad:
a._accum(out.grad * (sig + a.data * sig * (1.0 - sig)))
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("elu backward") # TODO
out._backward = _bw
return out def _bw():
if a.requires_grad:
a._accum(out.grad * np.where(x > 0.0, 1.0, al * ex))
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("mish backward") # TODO
out._backward = _bw
return out def _bw():
if a.requires_grad:
sig = 1.0 / (1.0 + np.exp(-x))
a._accum(out.grad * (t + x * (1.0 - t * t) * sig))
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("hardtanh backward") # TODO
out._backward = _bw
return out def _bw():
if a.requires_grad:
mask = (a.data > lo) & (a.data < hi)
a._accum(out.grad * mask)
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("var backward") # TODO
out._backward = _bw
return out def _bw():
if a.requires_grad:
denom = n - ddof
gfull = _restore(out.grad, axis, keepdims, a.data.shape)
a._accum(gfull * 2.0 * (a.data - mu) / denom)
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("std backward") # TODO
out._backward = _bw
return out def _bw():
if a.requires_grad:
gfull = _restore(out.grad, axis, keepdims, a.data.shape)
a._accum(gfull * (a.data - mu) / (n * skeep))
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("cumsum backward") # TODO
out._backward = _bw
return out def _bw():
if a.requires_grad:
g = out.grad
a._accum(np.flip(np.cumsum(np.flip(g, axis), axis=axis), axis))
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("mse_loss backward") # TODO
out._backward = _bw
return out def _bw():
if pred.requires_grad:
pred._accum(out.grad * 2.0 * diff / n)
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("cross_entropy backward") # TODO
out._backward = _bw
return out def _bw():
if logits.requires_grad:
y = np.zeros_like(sm)
y[np.arange(n), t] = 1.0
logits._accum(out.grad * (sm - y) / n)
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("group_weighted_ce backward") # TODO
out._backward = _bw
return out def _bw():
if logits.requires_grad:
y = np.zeros_like(sm)
y[np.arange(n), t] = 1.0
logits._accum(out.grad * (sm - y) * scale[:, None])
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("reweighted_ce backward") # TODO
out._backward = _bw
return out def _bw():
if logits.requires_grad:
y = np.zeros_like(sm)
y[np.arange(n), t] = 1.0
logits._accum(out.grad * (sm - y) * (w[:, None] / wsum))
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("group_dro_loss backward") # TODO
out._backward = _bw
return out def _bw():
if logits.requires_grad:
y = np.zeros_like(sm)
y[np.arange(n), t] = 1.0
logits._accum(out.grad * (sm - y) * scale[:, None])
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("logit_adjusted_ce backward") # TODO
out._backward = _bw
return out def _bw():
if logits.requires_grad:
y = np.zeros_like(sm)
y[np.arange(n), t] = 1.0
logits._accum(out.grad * (sm - y) / n)
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("focal_loss backward") # TODO
out._backward = _bw
return out def _bw():
if logits.requires_grad:
term = g * ((1.0 - p) ** (g - 1.0)) * np.log(pc) - ((1.0 - p) ** g) / pc
fac = term * p
grad = -fac[:, None] * sm
grad[np.arange(n), t] += fac
logits._accum(out.grad * grad / n)
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("irm_penalty backward") # TODO
out._backward = _bw
return out def _bw():
if logits.requires_grad:
sx = (sm * x).sum(axis=-1, keepdims=True)
inner = (sm - y) + sm * (x - sx)
logits._accum(out.grad * 2.0 * grad_w * inner / n)
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("gce_loss backward") # TODO
out._backward = _bw
return out def _bw():
if logits.requires_grad:
y = np.zeros_like(sm)
y[np.arange(n), t] = 1.0
pq = pc ** qf
grad = -pq[:, None] * (y - sm)
logits._accum(out.grad * grad / n)
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("vrex_penalty backward") # TODO
out._backward = _bw
return out def _bw():
if r.requires_grad:
grad = (2.0 / K) * (rd - mu) * out.grad
r._accum(grad.reshape(r.data.shape))
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("ldam_loss backward") # TODO
out._backward = _bw
return out def _bw():
if logits.requires_grad:
y = np.zeros_like(sm)
y[np.arange(n), t] = 1.0
logits._accum(out.grad * sc * (sm - y) / n)
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("spectral_decoupling backward") # TODO
out._backward = _bw
return out def _bw():
if logits.requires_grad:
logits._accum(out.grad * lm * x / n)
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("layernorm backward") # TODO
out._backward = _bw
return out def _bw():
g = out.grad
if gamma.requires_grad:
gamma._accum(_unbroadcast(g * xhat, gamma.data.shape))
if beta.requires_grad:
beta._accum(_unbroadcast(g, beta.data.shape))
if a.requires_grad:
gy = g * gamma.data
mean1 = gy.mean(axis=-1, keepdims=True)
mean2 = (gy * xhat).mean(axis=-1, keepdims=True)
a._accum(inv * (gy - mean1 - xhat * mean2))
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("batchnorm backward") # TODO
out._backward = _bw
return out def _bw():
g = out.grad
if gamma.requires_grad:
gamma._accum(_unbroadcast(g * xhat, gamma.data.shape))
if beta.requires_grad:
beta._accum(_unbroadcast(g, beta.data.shape))
if a.requires_grad:
gy = g * gamma.data
mean1 = gy.mean(axis=0, keepdims=True)
mean2 = (gy * xhat).mean(axis=0, keepdims=True)
a._accum(inv * (gy - mean1 - xhat * mean2))
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("batchnorm2d backward") # TODO
out._backward = _bw
return out def _bw():
g = out.grad
if gamma.requires_grad:
gamma._accum((g * xhat).sum(axis=(0, 2, 3)))
if beta.requires_grad:
beta._accum(g.sum(axis=(0, 2, 3)))
if x.requires_grad:
gg = gamma.data.reshape(1, C, 1, 1)
gy = g * gg
if training:
mean1 = gy.mean(axis=(0, 2, 3), keepdims=True)
mean2 = (gy * xhat).mean(axis=(0, 2, 3), keepdims=True)
x._accum(inv * (gy - mean1 - xhat * mean2))
else:
x._accum(gy * inv)
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("rms_norm backward") # TODO
out._backward = _bw
return out def _bw():
g = out.grad
if gamma.requires_grad:
gamma._accum(_unbroadcast(g * xhat, gamma.data.shape))
if a.requires_grad:
gy = g * gamma.data
s = (gy * x).sum(axis=-1, keepdims=True)
a._accum(r * gy - (r ** 3 / D) * x * s)
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("groupnorm2d backward") # TODO
out._backward = _bw
return out def _bw():
g = out.grad
if gamma.requires_grad:
gamma._accum((g * xhat).sum(axis=(0, 2, 3)))
if beta.requires_grad:
beta._accum(g.sum(axis=(0, 2, 3)))
if x.requires_grad:
gy = (g * gamma.data.reshape(1, C, 1, 1)).reshape(N, G, cg * H * W)
xhatg = xhat.reshape(N, G, cg * H * W)
mean1 = gy.mean(axis=2, keepdims=True)
mean2 = (gy * xhatg).mean(axis=2, keepdims=True)
dxg = inv * (gy - mean1 - xhatg * mean2)
x._accum(dxg.reshape(N, C, H, W))
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("conv2d backward") # TODO
out._backward = _bw
return out def _bw():
g = out.grad # (N, Cout, OH, OW)
go = g.reshape(N, Cout, OH * OW)
if bias.requires_grad:
bias._accum(g.sum(axis=(0, 2, 3)))
if weight.requires_grad:
dWm = np.einsum("nop,nkp->ok", go, cols)
weight._accum(dWm.reshape(Cout, Cin, kh, kw))
if x.requires_grad:
dcols = np.einsum("ok,nop->nkp", Wm, go)
H, W = x.data.shape[2], x.data.shape[3]
dcols6 = dcols.reshape(N, Cin, kh, kw, OH, OW)
Hp, Wp = H + 2 * pad, W + 2 * pad
dxp = np.zeros((N, Cin, Hp, Wp))
for i in range(kh):
for j in range(kw):
dxp[:, :, i:i + st * OH:st, j:j + st * OW:st] += dcols6[:, :, i, j, :, :]
if pad > 0:
x._accum(dxp[:, :, pad:pad + H, pad:pad + W])
else:
x._accum(dxp)
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("maxpool2d backward") # TODO
out._backward = _bw
return out def _bw():
if x.requires_grad:
m = xr.max(axis=(3, 5), keepdims=True)
mask = (xr == m).astype(np.float64)
counts = mask.sum(axis=(3, 5), keepdims=True)
gg = out.grad.reshape(N, C, H // k, 1, W // k, 1)
dxr = mask * gg / counts
x._accum(dxr.reshape(N, C, H, W))
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("maxpool2d_stride backward") # TODO
out._backward = _bw
return out def _bw():
if x.requires_grad:
m = win.max(axis=(2, 3), keepdims=True)
mask = (win == m).astype(np.float64)
counts = mask.sum(axis=(2, 3), keepdims=True)
gg = out.grad.reshape(N, C, 1, 1, OH, OW)
contrib = mask * gg / counts
dxp = np.zeros_like(xp)
for i in range(k):
for j in range(k):
dxp[:, :, i:i + st * OH:st, j:j + st * OW:st] += contrib[:, :, i, j, :, :]
if pad:
x._accum(dxp[:, :, pad:pad + H, pad:pad + W])
else:
x._accum(dxp)
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("avgpool2d backward") # TODO
out._backward = _bw
return out def _bw():
if x.requires_grad:
gg = out.grad.reshape(N, C, H // k, 1, W // k, 1)
dxr = np.empty((N, C, H // k, k, W // k, k))
dxr[...] = gg / (k * k)
x._accum(dxr.reshape(N, C, H, W))
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("global_avg_pool backward") # TODO
out._backward = _bw
return out def _bw():
if x.requires_grad:
gg = out.grad[:, :, None, None] / (H * W)
x._accum(np.broadcast_to(gg, (N, C, H, W)))
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("embedding backward") # TODO
out._backward = _bw
return out def _bw():
if weight.requires_grad:
dw = np.zeros_like(weight.data)
np.add.at(dw, idx, out.grad)
weight._accum(dw)
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw_id():
raise NotImplementedError("dropout backward") # TODO
out._backward = _bw_id
return out def _bw_id():
if a.requires_grad:
a._accum(out.grad)
out._backward = _bw_id
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/autograd.py
def _bw():
raise NotImplementedError("dropout backward") # TODO
out._backward = _bw
return out def _bw():
if a.requires_grad:
a._accum(out.grad * keep)
out._backward = _bw
return outThe file /app/submission/autograd.py has been updated successfully. (file state is current in your context , no need to Read it back)
Check remaining TODOs in autograd
grep -n "NotImplementedError" submission/autograd.py; echo "---count---"; grep -c "raise NotImplementedError" submission/autograd.py
3:YOU MUST IMPLEMENT EVERYTHING MARKED ``# TODO`` / ``raise NotImplementedError`` using numpy ---count--- 1
Run autograd_grads checks
export OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 MKL_NUM_THREADS=1 && python3 run_checks.py --only autograd_grads 2>&1 | head -90
[autograd_grads] 67/81 grad/add_bcast OK (max_abs=3.17e-10) grad/sub_bcast OK (max_abs=3.17e-10) grad/mul_bcast OK (max_abs=1.02e-10) grad/div OK (max_abs=1.89e-11) grad/power3 OK (max_abs=2.41e-10) grad/maximum OK (max_abs=5.10e-11) grad/minimum OK (max_abs=5.10e-11) grad/where OK (max_abs=3.79e-11) grad/two_path_accum OK (max_abs=1.13e-10) grad/exp OK (max_abs=1.33e-10) grad/log OK (max_abs=7.18e-11) grad/sqrt OK (max_abs=1.81e-10) grad/abs OK (max_abs=1.40e-10) grad/clip OK (max_abs=6.55e-12) grad/sum_all OK (max_abs=3.79e-11) grad/sum_axis0 OK (max_abs=3.79e-11) grad/sum_axis1_keep OK (max_abs=3.79e-11) grad/sum_axis23 OK (max_abs=1.40e-10) grad/mean_all OK (max_abs=2.03e-12) grad/mean_axis OK (max_abs=5.75e-12) grad/mean_axis23 OK (max_abs=8.74e-12) grad …[truncated 4367 chars]
/app/submission/nn.py
def forward(self, x: Tensor) -> Tensor:
# TODO: implement (compose ag.* ops). See the docstring/contract.
raise NotImplementedError("forward")
def named_params(self):
d = {"weight": self.weight} def forward(self, x: Tensor) -> Tensor:
out = ag.matmul(x, self.weight)
if self.bias is not None:
out = ag.add(out, self.bias)
return out
def named_params(self):
d = {"weight": self.weight}The file /app/submission/nn.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/nn.py
def forward(self, x: Tensor) -> Tensor:
# TODO: implement (compose ag.* ops). See the docstring/contract.
raise NotImplementedError("forward")
def named_params(self):
return {"weight": self.weight, "bias": self.bias} def forward(self, x: Tensor) -> Tensor:
return ag.conv2d(x, self.weight, self.bias, pad=self.pad)
def named_params(self):
return {"weight": self.weight, "bias": self.bias}The file /app/submission/nn.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/nn.py
def forward(self, x: Tensor, training: bool = True) -> Tensor:
# TODO: implement (compose ag.* ops). See the docstring/contract.
raise NotImplementedError("forward")
def named_params(self):
return {"gamma": self.gamma, "beta": self.beta}
def buffers(self): def forward(self, x: Tensor, training: bool = True) -> Tensor:
return ag.batchnorm2d(x, self.gamma, self.beta, self.running_mean,
self.running_var, training=training,
momentum=self.momentum, eps=self.eps)
def named_params(self):
return {"gamma": self.gamma, "beta": self.beta}
def buffers(self):The file /app/submission/nn.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/nn.py
def forward(self, x: Tensor) -> Tensor:
# TODO: implement (compose ag.* ops). See the docstring/contract.
raise NotImplementedError("forward")
def named_params(self):
return {"gamma": self.gamma, "beta": self.beta}
class LayerNorm(Module): def forward(self, x: Tensor) -> Tensor:
return ag.batchnorm(x, self.gamma, self.beta, eps=self.eps)
def named_params(self):
return {"gamma": self.gamma, "beta": self.beta}
class LayerNorm(Module):The file /app/submission/nn.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/nn.py
def forward(self, x: Tensor) -> Tensor:
# TODO: implement (compose ag.* ops). See the docstring/contract.
raise NotImplementedError("forward")
def named_params(self):
return {"gamma": self.gamma, "beta": self.beta}
class Dropout(Module): def forward(self, x: Tensor) -> Tensor:
return ag.layernorm(x, self.gamma, self.beta, eps=self.eps)
def named_params(self):
return {"gamma": self.gamma, "beta": self.beta}
class Dropout(Module):The file /app/submission/nn.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/nn.py
def forward(self, x: Tensor, training: bool = False, rng=None) -> Tensor:
# TODO: implement (compose ag.* ops). See the docstring/contract.
raise NotImplementedError("forward") def forward(self, x: Tensor, training: bool = False, rng=None) -> Tensor:
return ag.dropout(x, self.p, training, rng)The file /app/submission/nn.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/nn.py
def forward(self, x: Tensor) -> Tensor:
# TODO: implement (compose ag.* ops). See the docstring/contract.
raise NotImplementedError("forward")
def named_params(self):
return {}
class MaxPool2d(Module): def forward(self, x: Tensor) -> Tensor:
return ag.avgpool2d(x, self.k)
def named_params(self):
return {}
class MaxPool2d(Module):The file /app/submission/nn.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/nn.py
def forward(self, x: Tensor) -> Tensor:
# TODO: implement (compose ag.* ops). See the docstring/contract.
raise NotImplementedError("forward")
def named_params(self):
return {}
class RMSNorm(Module): def forward(self, x: Tensor) -> Tensor:
return ag.maxpool2d(x, self.k)
def named_params(self):
return {}
class RMSNorm(Module):The file /app/submission/nn.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/nn.py
def forward(self, x: Tensor) -> Tensor:
# TODO: implement (compose ag.rms_norm). See the docstring/contract.
raise NotImplementedError("forward") def forward(self, x: Tensor) -> Tensor:
return ag.rms_norm(x, self.gamma, eps=self.eps)The file /app/submission/nn.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/nn.py
def forward(self, x: Tensor) -> Tensor:
# TODO: implement (compose ag.groupnorm2d). See the docstring/contract.
raise NotImplementedError("forward") def forward(self, x: Tensor) -> Tensor:
return ag.groupnorm2d(x, self.gamma, self.beta, self.num_groups, eps=self.eps)The file /app/submission/nn.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/nn.py
def forward(self, X, training: bool = True) -> Tensor:
# TODO: implement (stem->gn0->silu; then 2 residual blocks
# r=h; h=silu(b*n1(b*c1(h))); h=b*n2(b*c2(h)); h=silu(h + r);
# then strided downsample via ag.conv2d(h, down.weight, down.bias, pad=1, stride=2) + silu;
# then global-avg-pool over axes (2,3); then the linear head). Compose ag.* ops.
raise NotImplementedError("forward") def forward(self, X, training: bool = True) -> Tensor:
h = ag.silu(self.gn0(self.stem(X)))
# block 1
r = h
h = ag.silu(self.b1n1(self.b1c1(h)))
h = self.b1n2(self.b1c2(h))
h = ag.silu(ag.add(h, r))
# block 2
r = h
h = ag.silu(self.b2n1(self.b2c1(h)))
h = self.b2n2(self.b2c2(h))
h = ag.silu(ag.add(h, r))
# strided downsample
h = ag.silu(ag.conv2d(h, self.down.weight, self.down.bias, pad=1, stride=2))
h = ag.global_avg_pool(h)
return self.head(h)The file /app/submission/nn.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/nn.py
def featurize(self, X, training: bool = True) -> Tensor:
# TODO: implement (compose ag.* ops). See the docstring/contract.
raise NotImplementedError("featurize")
def forward(self, X, training: bool = True) -> Tensor:
# TODO: implement (compose ag.* ops). See the docstring/contract.
raise NotImplementedError("forward") def featurize(self, X, training: bool = True) -> Tensor:
h = ag.relu(self.bn1(self.conv1(X), training))
h = ag.maxpool2d(h, 2)
h = ag.relu(self.bn2(self.conv2(h), training))
h = ag.maxpool2d(h, 2)
h = ag.relu(self.bn3(self.conv3(h), training))
h = ag.global_avg_pool(h)
h = ag.relu(self.embed(h))
return h
def forward(self, X, training: bool = True) -> Tensor:
return self.classifier(self.featurize(X, training))The file /app/submission/nn.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/nn.py
def forward(self, x) -> Tensor:
# TODO: implement (compose ag.* ops). See the docstring/contract.
raise NotImplementedError("forward")
def named_params(self) -> Dict[str, Tensor]:
d: Dict[str, Tensor] = {}
for i, lin in enumerate(self.layers): def forward(self, x) -> Tensor:
h = x
last = len(self.layers) - 1
for i, lin in enumerate(self.layers):
h = lin(h)
if i < last:
h = ag.relu(h)
return h
def named_params(self) -> Dict[str, Tensor]:
d: Dict[str, Tensor] = {}
for i, lin in enumerate(self.layers):The file /app/submission/nn.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/nn.py
def forward(self, x) -> Tensor:
# TODO: implement (compose ag.* ops). See the docstring/contract.
raise NotImplementedError("forward")
def named_params(self) -> Dict[str, Tensor]:
d: Dict[str, Tensor] = {}
for k, v in self.proj_in.named_params().items(): def forward(self, x) -> Tensor:
h = self.proj_in(x)
for blk in self.blocks:
z = blk["ln"](h)
z = blk["fc1"](z)
z = ag.gelu(z)
z = blk["fc2"](z)
h = ag.add(h, z)
return self.proj_out(h)
def named_params(self) -> Dict[str, Tensor]:
d: Dict[str, Tensor] = {}
for k, v in self.proj_in.named_params().items():The file /app/submission/nn.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/nn.py
def forward(self, X, training: bool = True) -> Tensor:
# TODO: implement (compose ag.* ops). See the docstring/contract.
raise NotImplementedError("forward")
def named_params(self) -> Dict[str, Tensor]:
d: Dict[str, Tensor] = {}
for name in ("conv1", "bn1", "conv2", "bn2", "head"): def forward(self, X, training: bool = True) -> Tensor:
h = ag.relu(self.bn1(self.conv1(X), training))
h = ag.avgpool2d(h, 2)
h = ag.relu(self.bn2(self.conv2(h), training))
h = ag.maxpool2d(h, 2)
N = X.shape[0]
h = ag.reshape(h, (N, 2 * self.W * self.side * self.side))
return self.head(h)
def named_params(self) -> Dict[str, Tensor]:
d: Dict[str, Tensor] = {}
for name in ("conv1", "bn1", "conv2", "bn2", "head"):The file /app/submission/nn.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/nn.py
from typing import Dict, List import numpy as np
import math from typing import Dict, List import numpy as np
The file /app/submission/nn.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/nn.py
balanced-group / DFR weighting). If ``n_groups`` is None it is inferred as max(group_ids)+1."""
# TODO: implement (numpy only). See docstring.
raise NotImplementedError("balanced_group_weights")
def class_balanced_weights(targets, n_classes=None, beta=0.0): balanced-group / DFR weighting). If ``n_groups`` is None it is inferred as max(group_ids)+1."""
gids = np.asarray(group_ids).astype(np.int64).reshape(-1)
present = np.unique(gids)
if n_groups is None:
n_groups = int(gids.max()) + 1
w = np.zeros(int(n_groups), dtype=np.float64)
w[present] = 1.0 / len(present)
return w
def class_balanced_weights(targets, n_classes=None, beta=0.0):The file /app/submission/nn.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/nn.py
effective number is (1-beta^n_c)/(1-beta) (Cui et al.); beta=0 reduces to inverse-frequency
1/n_c. Each sample gets its class weight, and the vector is normalized to mean 1."""
# TODO: implement (numpy only). See docstring.
raise NotImplementedError("class_balanced_weights")
def log_class_prior(targets, n_classes=None, eps=1e-6): effective number is (1-beta^n_c)/(1-beta) (Cui et al.); beta=0 reduces to inverse-frequency
1/n_c. Each sample gets its class weight, and the vector is normalized to mean 1."""
t = np.asarray(targets).astype(np.int64).reshape(-1)
if n_classes is None:
n_classes = int(t.max()) + 1
counts = np.bincount(t, minlength=int(n_classes)).astype(np.float64)
if beta > 0:
eff = (1.0 - beta ** counts) / (1.0 - beta)
else:
eff = counts
cw = np.zeros(int(n_classes), dtype=np.float64)
nz = counts > 0
cw[nz] = 1.0 / eff[nz]
w = cw[t]
w = w / w.mean()
return w
def log_class_prior(targets, n_classes=None, eps=1e-6):The file /app/submission/nn.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/nn.py
vector. Empty classes get log(eps)."""
# TODO: implement (numpy only). See docstring.
raise NotImplementedError("log_class_prior")
def ldam_margins(targets, n_classes=None, max_margin=0.5): vector. Empty classes get log(eps)."""
t = np.asarray(targets).astype(np.int64).reshape(-1)
if n_classes is None:
n_classes = int(t.max()) + 1
counts = np.bincount(t, minlength=int(n_classes)).astype(np.float64)
N = t.size
lp = np.full(int(n_classes), math.log(eps), dtype=np.float64)
nz = counts > 0
lp[nz] = np.log(counts[nz] / N)
return lp
def ldam_margins(targets, n_classes=None, max_margin=0.5):The file /app/submission/nn.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/nn.py
margins on rare classes. Rare classes get bigger margins.
Returns a length-``n_classes`` vector."""
# TODO: implement (numpy only). See docstring.
raise NotImplementedError("ldam_margins")
def effective_number_weights(targets, n_classes=None, beta=0.999): margins on rare classes. Rare classes get bigger margins.
Returns a length-``n_classes`` vector."""
t = np.asarray(targets).astype(np.int64).reshape(-1)
if n_classes is None:
n_classes = int(t.max()) + 1
counts = np.bincount(t, minlength=int(n_classes)).astype(np.float64)
m = np.zeros(int(n_classes), dtype=np.float64)
nz = counts > 0
m[nz] = counts[nz] ** (-0.25)
if m.max() > 0:
m = m / m.max() * max_margin
return m
def effective_number_weights(targets, n_classes=None, beta=0.999):<tool_use_error>String to replace not found in file.
String: margins on rare classes. Rare classes get bigger margins.
Returns a length-``n_classes`` vector."""
# TODO: implement (numpy only). See docstring.
raise NotImplementedError("ldam_margins")
def effective_number_weights(targets, n_classes=None, beta=0.999):</tool_use_error>/app/submission/nn.py
# TODO: implement (numpy only). See docstring.
raise NotImplementedError("ldam_margins")
def effective_number_weights(targets, n_classes=None, beta=0.999): t = np.asarray(targets).astype(np.int64).reshape(-1)
if n_classes is None:
n_classes = int(t.max()) + 1
counts = np.bincount(t, minlength=int(n_classes)).astype(np.float64)
m = np.zeros(int(n_classes), dtype=np.float64)
nz = counts > 0
m[nz] = counts[nz] ** (-0.25)
if m.max() > 0:
m = m / m.max() * max_margin
return m
def effective_number_weights(targets, n_classes=None, beta=0.999):The file /app/submission/nn.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/nn.py
the PRESENT classes. Returns a length-``n_classes`` per-CLASS weight vector (NOT per-sample)."""
# TODO: implement (numpy only). See docstring.
raise NotImplementedError("effective_number_weights") the PRESENT classes. Returns a length-``n_classes`` per-CLASS weight vector (NOT per-sample)."""
t = np.asarray(targets).astype(np.int64).reshape(-1)
if n_classes is None:
n_classes = int(t.max()) + 1
counts = np.bincount(t, minlength=int(n_classes)).astype(np.float64)
w = np.zeros(int(n_classes), dtype=np.float64)
nz = counts > 0
eff = (1.0 - beta ** counts[nz]) / (1.0 - beta)
w[nz] = 1.0 / eff
w[nz] = w[nz] / w[nz].mean()
return wThe file /app/submission/nn.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/nn.py
def update(self, group_losses, present=None):
# TODO: implement the masked EMA update (see docstring). Return self.l.copy().
raise NotImplementedError("EMAGroupLoss.update")
def worst_group(self):
# TODO: implement (argmax of the current EMA). See docstring.
raise NotImplementedError("EMAGroupLoss.worst_group") def update(self, group_losses, present=None):
gl = np.asarray(group_losses, dtype=np.float64).reshape(-1)
if present is None:
mask = np.ones(self.n_groups, dtype=bool)
else:
mask = np.asarray(present, dtype=bool).reshape(-1)
first = mask & (~self._init)
blend = mask & self._init
self.l[first] = gl[first]
self.l[blend] = self.beta * self.l[blend] + (1.0 - self.beta) * gl[blend]
self._init[first] = True
return self.l.copy()
def worst_group(self):
return int(np.argmax(self.l))The file /app/submission/nn.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/nn.py
def update(self, group_losses):
# TODO: exponentiated-gradient update of self.q on group_losses; renormalize.
raise NotImplementedError("GroupDROState.update") def update(self, group_losses):
gl = np.asarray(group_losses, dtype=np.float64).reshape(-1)
self.q = self.q * np.exp(self.eta_q * gl)
self.q = self.q / self.q.sum()
return self.q.copy()The file /app/submission/nn.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/data.py
def group_ids(y: np.ndarray, g: np.ndarray, n_classes: int) -> np.ndarray:
"""Flatten (y, g) to a single group id y*n_classes + g (int64)."""
# TODO
raise NotImplementedError("group_ids")
def iterate(X, y, g, batch_size, rng):
"""Yield (Xb, yb, gb) minibatches over a random permutation of the dataset."""
# TODO
raise NotImplementedError("iterate")
def worst_group_acc(preds, y, g, n_classes) -> Tuple[float, float, Dict[int, float]]:
"""Return (min over (y,g) groups of within-group accuracy, average accuracy, per-group dict)."""
# TODO
raise NotImplementedError("worst_group_acc")
def stratified_group_split(y, g, n_classes, frac, rng) -> np.ndarray:
"""Boolean mask selecting ~frac of EACH (y,g) group (keeps both slices group-balanced)."""
# TODO
raise NotImplementedError("stratified_group_split")def group_ids(y: np.ndarray, g: np.ndarray, n_classes: int) -> np.ndarray:
"""Flatten (y, g) to a single group id y*n_classes + g (int64)."""
return (np.asarray(y).astype(np.int64) * int(n_classes) + np.asarray(g).astype(np.int64))
def iterate(X, y, g, batch_size, rng):
"""Yield (Xb, yb, gb) minibatches over a random permutation of the dataset."""
n = X.shape[0]
perm = rng.permutation(n)
for i in range(0, n, batch_size):
idx = perm[i:i + batch_size]
yield X[idx], y[idx], g[idx]
def worst_group_acc(preds, y, g, n_classes) -> Tuple[float, float, Dict[int, float]]:
"""Return (min over (y,g) groups of within-group accuracy, average accuracy, per-group dict)."""
preds = np.asarray(preds).reshape(-1)
y = np.asarray(y).reshape(-1)
g = np.asarray(g).reshape(-1)
gid = group_ids(y, g, n_classes)
correct = (preds == y).astype(np.float64)
avg = float(correct.mean()) if correct.size else 0.0
per: Dict[int, float] = {}
for k in np.unique(gid):
mask = gid == k
per[int(k)] = float(correct[mask].mean())
wga = min(per.values()) if per else 0.0
return wga, avg, per
def stratified_group_split(y, g, n_classes, frac, rng) -> np.ndarray:
"""Boolean mask selecting ~frac of EACH (y,g) group (keeps both slices group-balanced)."""
y = np.asarray(y).reshape(-1)
g = np.asarray(g).reshape(-1)
gid = group_ids(y, g, n_classes)
mask = np.zeros(y.shape[0], dtype=bool)
for k in np.u
…[truncated 233 chars]The file /app/submission/data.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/optim.py
def step(self):
# TODO: implement the SGD update (see module docstring). Update p.data in place.
raise NotImplementedError("SGD.step") def step(self):
for i, p in enumerate(self.params):
if p.grad is None:
continue
g = p.grad + self.weight_decay * p.data
v = self.momentum * self._v[i] + g
self._v[i] = v
upd = (g + self.momentum * v) if self.nesterov else v
p.data -= self.lr * updThe file /app/submission/optim.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/optim.py
def step(self):
# TODO: implement the Adagrad update (see module docstring). Update p.data in place.
raise NotImplementedError("Adagrad.step") def step(self):
for i, p in enumerate(self.params):
if p.grad is None:
continue
g = p.grad + self.weight_decay * p.data
self._s[i] = self._s[i] + g * g
p.data -= self.lr * g / (np.sqrt(self._s[i]) + self.eps)The file /app/submission/optim.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/optim.py
def step(self):
# TODO: implement the RMSprop update (see module docstring). Update p.data in place.
raise NotImplementedError("RMSprop.step") def step(self):
for i, p in enumerate(self.params):
if p.grad is None:
continue
g = p.grad + self.weight_decay * p.data
self._s[i] = self.alpha * self._s[i] + (1.0 - self.alpha) * (g * g)
p.data -= self.lr * g / (np.sqrt(self._s[i]) + self.eps)The file /app/submission/optim.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/optim.py
def step(self):
# TODO: implement the Adam update (see module docstring). Update p.data in place.
raise NotImplementedError("Adam.step") def step(self):
self.t += 1
b1, b2 = self.b1, self.b2
bc1 = 1.0 - b1 ** self.t
bc2 = 1.0 - b2 ** self.t
for i, p in enumerate(self.params):
if p.grad is None:
continue
g = p.grad + self.weight_decay * p.data
self._m[i] = b1 * self._m[i] + (1.0 - b1) * g
self._v[i] = b2 * self._v[i] + (1.0 - b2) * (g * g)
mhat = self._m[i] / bc1
vhat = self._v[i] / bc2
p.data -= self.lr * mhat / (np.sqrt(vhat) + self.eps)The file /app/submission/optim.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/optim.py
def step(self):
# TODO: implement the AdamW update (see module docstring). Update p.data in place.
raise NotImplementedError("AdamW.step") def step(self):
self.t += 1
b1, b2 = self.b1, self.b2
bc1 = 1.0 - b1 ** self.t
bc2 = 1.0 - b2 ** self.t
for i, p in enumerate(self.params):
if p.grad is None:
continue
g = p.grad
self._m[i] = b1 * self._m[i] + (1.0 - b1) * g
self._v[i] = b2 * self._v[i] + (1.0 - b2) * (g * g)
mhat = self._m[i] / bc1
vhat = self._v[i] / bc2
p.data -= self.lr * (mhat / (np.sqrt(vhat) + self.eps) + self.weight_decay * p.data)The file /app/submission/optim.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/optim.py
def step(self):
# TODO: implement the Adamax update (see module docstring). Update p.data in place.
raise NotImplementedError("Adamax.step") def step(self):
self.t += 1
b1, b2 = self.b1, self.b2
bc1 = 1.0 - b1 ** self.t
for i, p in enumerate(self.params):
if p.grad is None:
continue
g = p.grad + self.weight_decay * p.data
self._m[i] = b1 * self._m[i] + (1.0 - b1) * g
self._u[i] = np.maximum(b2 * self._u[i], np.abs(g))
p.data -= (self.lr / bc1) * self._m[i] / (self._u[i] + self.eps)The file /app/submission/optim.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/optim.py
def step(self):
# TODO: implement the NAdam update (see module docstring). Update p.data in place.
raise NotImplementedError("NAdam.step") def step(self):
self.t += 1
b1, b2 = self.b1, self.b2
bc1 = 1.0 - b1 ** self.t
bc2 = 1.0 - b2 ** self.t
for i, p in enumerate(self.params):
if p.grad is None:
continue
g = p.grad + self.weight_decay * p.data
self._m[i] = b1 * self._m[i] + (1.0 - b1) * g
self._v[i] = b2 * self._v[i] + (1.0 - b2) * (g * g)
mhat = self._m[i] / bc1
vhat = self._v[i] / bc2
mnes = b1 * mhat + (1.0 - b1) * g / bc1
p.data -= self.lr * mnes / (np.sqrt(vhat) + self.eps)The file /app/submission/optim.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/optim.py
def step(self):
# TODO: implement the Lion update (see module docstring). Update p.data in place.
raise NotImplementedError("Lion.step") def step(self):
b1, b2 = self.b1, self.b2
for i, p in enumerate(self.params):
if p.grad is None:
continue
g = p.grad
upd = np.sign(b1 * self._m[i] + (1.0 - b1) * g)
p.data -= self.lr * (upd + self.weight_decay * p.data)
self._m[i] = b2 * self._m[i] + (1.0 - b2) * gThe file /app/submission/optim.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/optim.py
def step(self):
# TODO: implement the RAdam update (see module docstring). Update p.data in place.
raise NotImplementedError("RAdam.step") def step(self):
self.t += 1
b1, b2 = self.b1, self.b2
bc1 = 1.0 - b1 ** self.t
bc2 = 1.0 - b2 ** self.t
rinf = 2.0 / (1.0 - b2) - 1.0
rt = rinf - 2.0 * self.t * (b2 ** self.t) / bc2
for i, p in enumerate(self.params):
if p.grad is None:
continue
g = p.grad + self.weight_decay * p.data
self._m[i] = b1 * self._m[i] + (1.0 - b1) * g
self._v[i] = b2 * self._v[i] + (1.0 - b2) * (g * g)
mhat = self._m[i] / bc1
if rt > 4.0:
l = np.sqrt(bc2 / (self._v[i] + self.eps))
r = math.sqrt(((rt - 4.0) * (rt - 2.0) * rinf) /
((rinf - 4.0) * (rinf - 2.0) * rt))
p.data -= self.lr * mhat * r * l
else:
p.data -= self.lr * mhatThe file /app/submission/optim.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/optim.py
def step(self):
# TODO: implement the AdaBelief update (see module docstring). Update p.data in place.
raise NotImplementedError("AdaBelief.step") def step(self):
self.t += 1
b1, b2 = self.b1, self.b2
bc1 = 1.0 - b1 ** self.t
bc2 = 1.0 - b2 ** self.t
for i, p in enumerate(self.params):
if p.grad is None:
continue
g = p.grad
self._m[i] = b1 * self._m[i] + (1.0 - b1) * g
d = g - self._m[i]
self._s[i] = b2 * self._s[i] + (1.0 - b2) * (d * d) + self.eps
mhat = self._m[i] / bc1
shat = self._s[i] / bc2
p.data -= self.lr * (mhat / (np.sqrt(shat) + self.eps) + self.weight_decay * p.data)The file /app/submission/optim.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/optim.py
exceeds ``max_norm`` every grad is scaled by ``max_norm / (total_norm + 1e-6)``."""
# TODO: implement (see docstring).
raise NotImplementedError("clip_grad_norm")
def clip_grad_value(params: List[Tensor], clip_value: float) -> None:
"""Element-wise gradient clamp to [-clip_value, clip_value] (in place)."""
# TODO: implement (see docstring).
raise NotImplementedError("clip_grad_value") exceeds ``max_norm`` every grad is scaled by ``max_norm / (total_norm + 1e-6)``."""
total = 0.0
for p in params:
if p.grad is not None:
total += float((p.grad ** 2).sum())
total = math.sqrt(total)
if total > max_norm:
scale = max_norm / (total + 1e-6)
for p in params:
if p.grad is not None:
p.grad = p.grad * scale
return total
def clip_grad_value(params: List[Tensor], clip_value: float) -> None:
"""Element-wise gradient clamp to [-clip_value, clip_value] (in place)."""
for p in params:
if p.grad is not None:
p.grad = np.clip(p.grad, -clip_value, clip_value)The file /app/submission/optim.py has been updated successfully. (file state is current in your context , no need to Read it back)
/app/submission/optim.py
``total``. ``step`` is 0-based. Holds at ``min_lr`` past ``total``."""
# TODO: implement (see docstring).
raise NotImplementedError("cosine_lr")
def warmup_lr(step, base_lr, warmup):
"""Linear warmup to ``base_lr`` over ``warmup`` steps, then constant ``base_lr``."""
# TODO: implement (see docstring).
raise NotImplementedError("warmup_lr")
def step_lr(step, base_lr, step_size, gamma=0.1):
"""Step decay: lr = base_lr * gamma ** (step // step_size)."""
# TODO: implement (see docstring).
raise NotImplementedError("step_lr")
def exponential_lr(step, base_lr, gamma=0.99):
"""Exponential decay: lr = base_lr * gamma ** step."""
# TODO: implement (see docstring).
raise NotImplementedError("exponential_lr")
def polynomial_lr(step, base_lr, total, power=1.0, min_lr=0.0):
"""Polynomial decay: lr = (base_lr - min_lr) * (1 - step/total)^power + min_lr, clamped so
``step >= total`` holds at ``min_lr``. ``step`` is 0-based."""
# TODO: implement (see docstring).
raise NotImplementedError("polynomial_lr")
def cosine_restart_lr(step, period, base_lr, min_lr=0.0, t_mult=1):
"""SGDR cosine annealing with warm restarts (Loshchilov & Hutter). The schedule restarts every
``period`` steps (each cycle's length multiplied by ``t_mult``). Within a cycle of length T at
in-cycle step s: lr = min_lr + 0.5*(base_lr-min_lr)*(1+cos(pi*s/T)). ``step`` is 0-based."""
# TODO: implement (see docstring).
raise NotImplementedError(
…[truncated 20 chars] ``total``. ``step`` is 0-based. Holds at ``min_lr`` past ``total``."""
if warmup > 0 and step < warmup:
return base_lr * (step + 1) / warmup
prog = min(1.0, max(0.0, (step - warmup) / max(1, total - warmup)))
return min_lr + 0.5 * (base_lr - min_lr) * (1.0 + math.cos(math.pi * prog))
def warmup_lr(step, base_lr, warmup):
"""Linear warmup to ``base_lr`` over ``warmup`` steps, then constant ``base_lr``."""
if step < warmup:
return base_lr * (step + 1) / warmup
return base_lr
def step_lr(step, base_lr, step_size, gamma=0.1):
"""Step decay: lr = base_lr * gamma ** (step // step_size)."""
return base_lr * (gamma ** (step // step_size))
def exponential_lr(step, base_lr, gamma=0.99):
"""Exponential decay: lr = base_lr * gamma ** step."""
return base_lr * (gamma ** step)
def polynomial_lr(step, base_lr, total, power=1.0, min_lr=0.0):
"""Polynomial decay: lr = (base_lr - min_lr) * (1 - step/total)^power + min_lr, clamped so
``step >= total`` holds at ``min_lr``. ``step`` is 0-based."""
if step >= total:
return min_lr
return (base_lr - min_lr) * ((1.0 - step / total) ** power) + min_lr
def cosine_restart_lr(step, period, base_lr, min_lr=0.0, t_mult=1):
"""SGDR cosine annealing with warm restarts (Loshchilov & Hutter). The schedule restarts every
``period`` steps (each cycle's length multiplied by ``t_mult``). Within a cycle of length T at
in-cycle step s: lr = min_lr + 0.5*(base_lr-min_lr)*(
…[truncated 209 chars]The file /app/submission/optim.py has been updated successfully. (file state is current in your context , no need to Read it back)
Run full check suite
export OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 MKL_NUM_THREADS=1 && python3 run_checks.py 2>&1 | tail -40
optim/sched_warmup_lr OK (match) optim/sched_step_lr OK (match) optim/sched_exponential_lr OK (match) optim/sched_polynomial_lr OK (match) optim/sched_cosine_restart_lr OK (match) [robust] 13/13 robust/group_weighted_ce_grad OK robust/group_weighted_ce_w_grad OK robust/group_dro_loss_grad OK robust/reweighted_ce_grad OK robust/logit_adjusted_ce_grad OK robust/focal_loss_g2_grad OK robust/focal_loss_g1_grad OK robust/irm_penalty_grad OK robust/per_group_normalization_differs OK (diff=4.10e-02) robust/balanced_group_weights OK ([0.25 0.25 0.25 0.25]) robust/class_balanced_weights OK (mean=1.000) robust/log_class_prior OK robust/groupdro_state_upweights_worst OK (q=[0.221 0.33 0.233 0.216]) [robust2] 8/8 robust2/gce_loss_grad OK robust2/gce_loss_q03_grad OK robust2/ldam_loss_grad OK robust2/spectral_decoupling_grad OK robust2/vrex_penalty_grad OK robust2/ldam_margins OK ([0.319 0.42 0.5 ]) robust2/effective_number_weights OK (mean=1.000) robust2/ema_group_loss_tracks_worst OK …[truncated 591 chars]
Inspect dataset
export OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 MKL_NUM_THREADS=1 && python3 -c "
import numpy as np
for f in ['train','reweight']:
d=np.load('data/%s.npz'%f)
X,y,g=d['X'],d['y'],d['g']
print(f, X.shape, X.dtype, X.min(), X.max(), 'ncls',len(np.unique(y)),'ng',len(np.unique(g)))
print(' y counts', np.bincount(y))
print(' g counts', np.bincount(g))
nc=len(np.unique(y))
gid=y*nc+g
print(' group counts', np.bincount(gid, minlength=nc*nc))
print(' frac y==g', (y==g).mean())
"train (2400, 3, 16, 16) float32 0.0 1.0 ncls 4 ng 4 y counts [600 600 600 600] g counts [604 593 603 600] group counts [585 1 7 7 6 580 3 11 3 5 586 6 10 7 7 576] frac y==g 0.9695833333333334 reweight (1280, 3, 16, 16) float32 0.0 1.0 ncls 4 ng 4 y counts [320 320 320 320] g counts [320 320 320 320] group counts [80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80] frac y==g 0.25
/app/submission/train.py
def main():
ap = argparse.ArgumentParser()
ap.add_argument("--train", default="/app/data/train.npz")
ap.add_argument("--reweight", default="/app/data/reweight.npz")
ap.add_argument("--out", default="/app/submission/model.npz")
ap.add_argument("--seed", type=int, default=0)
args = ap.parse_args()
# TODO: build a SmallCNN(n_classes, img_size, width=WIDTH, embed_dim=EMBED_DIM), train a
# worst-group-robust recipe with your framework (forward -> loss -> backward -> clip ->
# optimizer step), then save:
# save_checkpoint(args.out, model.state_dict(), n_classes, img_size)
raise NotImplementedError("implement training and call save_checkpoint")
if __name__ == "__main__":
main()def _evaluate(model, X, y, g, n_classes, bs=256):
preds = []
for i in range(0, len(X), bs):
logits = model.forward(X[i:i + bs], training=False).data
preds.append(logits.argmax(axis=1))
preds = np.concatenate(preds)
return D.worst_group_acc(preds, y, g, n_classes)
def _train_epoch(model, X, y, g, opt, n_classes, bs, rng, lr=None):
if lr is not None:
opt.lr = lr
for Xb, yb, gb in D.iterate(X, y, g, bs, rng):
for p in model.params():
p.grad = None
logits = model.forward(Xb, training=True)
loss = ag.cross_entropy(logits, yb)
loss.backward()
O.clip_grad_norm(model.params(), 5.0)
opt.step()
def main():
ap = argparse.ArgumentParser()
ap.add_argument("--train", default="/app/data/train.npz")
ap.add_argument("--reweight", default="/app/data/reweight.npz")
ap.add_argument("--out", default="/app/submission/model.npz")
ap.add_argument("--seed", type=int, default=0)
args = ap.parse_args()
Xtr, ytr, gtr = D.load_npz(args.train)
Xrw, yrw, grw = D.load_npz(args.reweight)
n_classes = int(max(ytr.max(), yrw.max())) + 1
img_size = Xtr.shape[-1]
rng = np.random.default_rng(args.seed)
model = SmallCNN(n_classes, img_size, width=WIDTH, embed_dim=EMBED_DIM, seed=args.seed)
# ---------------- Phase 1: ERM feature learning on the correlated train split -------------
E1 = 22
opt = O.AdamW(model.params(), lr=2e-3, weight_decay=1e-
…[truncated 2390 chars]The file /app/submission/train.py has been updated successfully. (file state is current in your context , no need to Read it back)
Time one training epoch
export OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 MKL_NUM_THREADS=1 && cd /app/submission && timeout 300 python3 -c "
import numpy as np, time, sys
sys.path.insert(0,'/app/submission')
import autograd as ag, data as D, optim as O
from nn import SmallCNN
Xtr,ytr,gtr=D.load_npz('/app/data/train.npz')
m=SmallCNN(4,16,16,48,0)
t=time.time()
rng=np.random.default_rng(0)
opt=O.AdamW(m.params(),lr=2e-3,weight_decay=1e-4)
# one epoch timing
for Xb,yb,gb in D.iterate(Xtr,ytr,gtr,128,rng):
for p in m.params(): p.grad=None
loss=ag.cross_entropy(m.forward(Xb,training=True),yb)
loss.backward(); O.clip_grad_norm(m.params(),5.0); opt.step()
print('1 epoch train sec', time.time()-t, 'last loss', float(loss.data))
" 2>&1 | tailNo file changes, the agent left the workspace untouched.
=== SyncVals verifier (local re-grade of the agent's own checkpoint) === COMPONENT CONFORMANCE SUITE: 194/194 cases passed (all milestones pass: True) FINAL METRIC: worst-group accuracy = 0.9633 >= threshold 0.86 REWARD = 1 (1 iff every component milestone passes AND the sealed held-out metric clears its threshold) NOTE: the in-sandbox training in the 481MB e2b box was OOM-killed (0-byte checkpoint), so the raw in-sandbox reward was an infrastructure artifact. This reward is from a faithful LOCAL re-train of the agent's OWN train.py (24GB, no OOM) with its own default hyperparameters, then re-graded by the real verifier.
Reproduce this trial: git checkout 2f94510 && PYTHONPATH=src python3 scripts/build_site.py , then open trial/trial_d92acb7a0bf84b60. Re-running the agent live requires EVAL_PLATFORM_ENABLE_OAUTH_SMOKE=1 and is non-deterministic.
Trial trial_d92acb7a0bf84b60 · verifier authoritative; classifier explanatory.