File size: 2,313 Bytes
1c15b85 8f81764 1c15b85 8f81764 1e4476a ffaf2bf 1e4476a a96a99a 8f81764 650dfc9 ffaf2bf 650dfc9 b118c8b 650dfc9 b118c8b 650dfc9 b118c8b 650dfc9 b118c8b 650dfc9 ffaf2bf b118c8b 650dfc9 ffaf2bf 650dfc9 ffaf2bf 1e4476a ffaf2bf 1e4476a ffaf2bf 1e4476a 8f81764 | 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 | ---
tags:
- multi-agent-systems
- memory
- routing
pipeline_tag: other
---
# Sigma-Mem Checkpoints
Trained Sigma-Mem parameters for five center-model configurations.
## Paper
[Σ-Mem: An Online Reliability Memory for LLM-based Multi-Agent Systems](https://arxiv.org/abs/2607.27958)
Code: https://github.com/declare-lab/Sigma-Mem

## What These Checkpoints Contain
These files contain the **Sigma-Mem components** illustrated in the figure above;
they do not contain a fine-tuned copy of the Central Model (CM). For each peer
\\(p\\), Sigma-Mem maintains a real symmetric memory matrix
\\(\mathbf{M}_p \in \mathbb{R}^{r \times r}\\), with
\\(\mathbf{M}_p = \mathbf{M}_p^\top\\). Given the current task direction
\\(\boldsymbol{\phi}(\mathbf{x}_t)\\), the memory readout is
$$
\mathbf{r}_{p,t} = \mathbf{M}_p\boldsymbol{\phi}(\mathbf{x}_t).
$$
The learned projection converts this readout into a peer-specific residual steering
vector:
$$
\boldsymbol{\delta}_{p,t}
= g\,\mathbf{P}\mathbf{M}_p\boldsymbol{\phi}(\mathbf{x}_t).
$$
The steering vector is added only to the upper residual stream while the CM judges
peer \\(p\\)'s response. It therefore influences response aggregation through the
CM's Yes-versus-No utility scores, while all original CM parameters remain frozen and
unchanged. The joint relationship matrix \\(\mathbf{G}\\) is updated separately from
peer correctness patterns and is used by the final peer-selection posterior.
Each checkpoint provides the learned Sigma-Mem address/projection and residual-
steering parameters needed by this process. Runtime \\(\mathbf{M}_p\\) and
\\(\mathbf{G}\\) states are initialized for the evaluation stream and updated only
after the current decision receives external correctness feedback.
## Available Checkpoints
| Directory | Central model |
| --- | --- |
| `Qwen3-0.6B/` | Qwen3-0.6B |
| `Qwen3-4B/` | Qwen3-4B |
| `Qwen3-8B/` | Qwen3-8B |
| `Qwen3.5-4B/` | Qwen3.5-4B |
| `Qwen3.5-9B/` | Qwen3.5-9B |
Each directory contains:
- `sym_memory.pt`: trained Sigma-Mem parameters.
- `train_config.json`: portable training and model metadata.
- `checkpoint_manifest.json`: integrity metadata for the checkpoint.
## Download
```bash
hf download Sssunset/Sigma-Mem --local-dir models/Sigma-Mem
``` |