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
Copy file name to clipboardExpand all lines: docs/sampling-options.qmd
+55-1Lines changed: 55 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ trace = nutpie.sample(
25
25
tune=500, # Number of warmup draws for adaptation
26
26
chains=6, # Number of independent chains
27
27
cores=None, # Number chains that are allowed to run simultainiously
28
-
seed=12345# Random seed for reproducibility
28
+
seed=12345# Random seed for reproducibility
29
29
)
30
30
```
31
31
@@ -143,6 +143,60 @@ trace = nutpie.sample(
143
143
)
144
144
```
145
145
146
+
## Zarr Storage (Experimental)
147
+
148
+
Nutpie includes experimental support for writing traces directly to zarr storage, which can be useful for large traces that don't fit in memory or for distributed storage scenarios. The zarr format provides efficient, chunked, compressed storage for multi-dimensional arrays.
149
+
150
+
### Basic Usage
151
+
152
+
You can write traces directly to zarr storage by providing a `zarr_store` parameter:
0 commit comments