You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: reference published ColorCode-1-Fast model; use SafeTensors inference path (#93)
* docs: reference published ColorCode-1-Fast model; use SafeTensors inference path
Add nvidia/Ising-Decoder-ColorCode-1-Fast to the published pre-trained
models in the README (badge + models list) and document loading it via
the color-code path. Also correct the surface inference instructions: the
published checkpoints are distributed as fp16 .safetensors (not .pt), so
load them with PREDECODER_SAFETENSORS_CHECKPOINT (which reads model_id and
precision from file metadata) and reference the actual published filenames.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
* docs: trim repeated SafeTensors mentions in the inference steps
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
---------
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
[](https://huggingface.co/nvidia/Ising-Decoder-ColorCode-1-Fast)
10
11
11
12
This repo offers AI training recipes to build, customize and deploy scalable quantum error correction **decoders**:
12
13
@@ -237,11 +238,17 @@ If you are not training locally, you can run inference using pre-trained models.
237
238
```
238
239
239
240
2. **Get the pre-trained models**
240
-
Two surface-code models are published on Hugging Face (they are licensed
241
-
separately from the code in this repo and are not part of it):
241
+
Pre-trained pre-decoders are published on Hugging Face as fp16 SafeTensors
242
+
files (they are licensed separately from the code in this repo and are not
243
+
part of it):
244
+
245
+
Surface code:
242
246
- [nvidia/Ising-Decoder-SurfaceCode-1-Fast](https://huggingface.co/nvidia/Ising-Decoder-SurfaceCode-1-Fast) (receptive field R=9)
243
247
- [nvidia/Ising-Decoder-SurfaceCode-1-Accurate](https://huggingface.co/nvidia/Ising-Decoder-SurfaceCode-1-Accurate) (receptive field R=13)
244
248
249
+
Color code:
250
+
- [nvidia/Ising-Decoder-ColorCode-1-Fast](https://huggingface.co/nvidia/Ising-Decoder-ColorCode-1-Fast) (receptive field R=13) — run through the color-code path (`code: color`); see the color example below.
251
+
245
252
The models are access-controlled: sign in with a Hugging Face token
246
253
(create one at <https://huggingface.co/settings/tokens>), then download
247
254
the files into `models/`:
@@ -251,26 +258,40 @@ If you are not training locally, you can run inference using pre-trained models.
0 commit comments