deepakdsoni commited on
Commit
8187789
·
verified ·
1 Parent(s): 5604bd0

Card: absolute plot URLs + standard model name

Browse files
Files changed (1) hide show
  1. MODEL_CARD.md +4 -4
MODEL_CARD.md CHANGED
@@ -41,18 +41,18 @@ The agent both **remembers** (forgetting nearly eliminated) and **learns better*
41
  (accuracy ~doubled), because consolidation protects prior tasks while the
42
  forgetting-aware guṇa controller relaxes protection where it isn't needed.
43
 
44
- ![forgetting](plots/bench_forgetting.png)
45
 
46
  **Full benchmark** (11 models, 7 capabilities, live inference) → [`BENCHMARK_REPORT.md`](BENCHMARK_REPORT.md).
47
  Across two model sizes (36.5M / 52.6M), two datasets (CIFAR-100, Tiny-ImageNet), and 10- and 20-task
48
  streams: forgetting cut **12–41×**, calibrated abstention (gated acc 0.91–1.00, abstains on up to 99.7% of
49
  OOD), and a legible mind-state trajectory. **10 of 11 models pass 7/7 capability checks.**
50
 
51
- ![scorecard](plots/bench_scorecard.png)
52
 
53
  ## Files
54
 
55
- - `antahkarana_cifar100_wrn28-10.pt` — the checkpoint (`model_state`, `config`, `results`, `omega`, `theta_star`)
56
  - `load_akn.py` — **self-contained** loader (full model definition inside; only needs PyTorch)
57
 
58
  ## Usage
@@ -61,7 +61,7 @@ OOD), and a legible mind-state trajectory. **10 of 11 models pass 7/7 capability
61
  import torch
62
  from load_akn import load
63
 
64
- model, ck = load("antahkarana_cifar100_wrn28-10.pt") # eval mode
65
  # CIFAR-100 normalized 32×32 input; task in [0..9] selects the head
66
  x = torch.randn(1, 3, 32, 32)
67
  logits = model(x, task=0) # -> (1, 10)
 
41
  (accuracy ~doubled), because consolidation protects prior tasks while the
42
  forgetting-aware guṇa controller relaxes protection where it isn't needed.
43
 
44
+ ![forgetting](https://huggingface.co/deepakdsoni/antahkarana/resolve/main/plots/bench_forgetting.png)
45
 
46
  **Full benchmark** (11 models, 7 capabilities, live inference) → [`BENCHMARK_REPORT.md`](BENCHMARK_REPORT.md).
47
  Across two model sizes (36.5M / 52.6M), two datasets (CIFAR-100, Tiny-ImageNet), and 10- and 20-task
48
  streams: forgetting cut **12–41×**, calibrated abstention (gated acc 0.91–1.00, abstains on up to 99.7% of
49
  OOD), and a legible mind-state trajectory. **10 of 11 models pass 7/7 capability checks.**
50
 
51
+ ![scorecard](https://huggingface.co/deepakdsoni/antahkarana/resolve/main/plots/bench_scorecard.png)
52
 
53
  ## Files
54
 
55
+ - `antahkarana-36.5M-cifar100-wrn28-10.pt` — the checkpoint (`model_state`, `config`, `results`, `omega`, `theta_star`)
56
  - `load_akn.py` — **self-contained** loader (full model definition inside; only needs PyTorch)
57
 
58
  ## Usage
 
61
  import torch
62
  from load_akn import load
63
 
64
+ model, ck = load("antahkarana-36.5M-cifar100-wrn28-10.pt") # eval mode
65
  # CIFAR-100 normalized 32×32 input; task in [0..9] selects the head
66
  x = torch.randn(1, 3, 32, 32)
67
  logits = model(x, task=0) # -> (1, 10)