Program¶
Top-level probabilistic program definitions and execution.
program
¶
Program: compile a morphism expression into a trainable nn.Module.
Program
¶
Program(morphism: Morphism | ContinuousMorphism | Module | None = None)
Bases: Module
Wraps a morphism expression as a trainable nn.Module.
Traverses the morphism DAG, collects all learnable parameters and observed buffers, and provides a forward() that materializes the composed tensor.
Supports both discrete Morphism instances (which produce a
membership tensor via forward()) and ContinuousMorphism
instances (which expose rsample / log_prob).
| PARAMETER | DESCRIPTION |
|---|---|
morphism
|
The root morphism expression (possibly a composition tree).
TYPE:
|
Examples:
>>> from quivers import FinSet, morphism, Program
>>> X = FinSet(name="X", cardinality=3)
>>> Y = FinSet(name="Y", cardinality=4)
>>> f = morphism(X, Y)
>>> prog = Program(f)
>>> out = prog() # shape (3, 4)
Source code in src/quivers/program.py
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 | |
morphism
property
¶
morphism: Morphism | ContinuousMorphism | Module | None
The underlying morphism expression, or None for a
morphism-less module (one declaring only signatures /
encoders / decoders / losses).
rsample
¶
rsample(x: Tensor, sample_shape: Size = Size()) -> Tensor
Reparameterized sample (continuous programs only).
| PARAMETER | DESCRIPTION |
|---|---|
x
|
Input tensor.
TYPE:
|
sample_shape
|
Extra leading sample dimensions.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
Tensor
|
Sampled output. |
| RAISES | DESCRIPTION |
|---|---|
TypeError
|
If the underlying morphism is not continuous. |
Source code in src/quivers/program.py
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 | |
log_prob
¶
log_prob(x: Tensor, y: Tensor) -> Tensor
Log-probability (continuous programs only).
| PARAMETER | DESCRIPTION |
|---|---|
x
|
Input tensor.
TYPE:
|
y
|
Output tensor.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
Tensor
|
Log-probability of y given x. |
| RAISES | DESCRIPTION |
|---|---|
TypeError
|
If the underlying morphism is not continuous. |
Source code in src/quivers/program.py
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 | |
forward
¶
forward(n_steps: int | None = None) -> Tensor
Materialize the composed tensor (discrete programs only).
| PARAMETER | DESCRIPTION |
|---|---|
n_steps
|
If provided, sets the step count on all
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
Tensor
|
Tensor of shape |
| RAISES | DESCRIPTION |
|---|---|
TypeError
|
If the underlying morphism is continuous. |
Source code in src/quivers/program.py
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 | |
log_membership
¶
log_membership() -> Tensor
Log of the membership tensor.
| RETURNS | DESCRIPTION |
|---|---|
Tensor
|
Log-membership values. Entries near 0 map to large negative values. |
Source code in src/quivers/program.py
216 217 218 219 220 221 222 223 224 225 226 | |
nll_loss
¶
nll_loss(domain_indices: Tensor, codomain_indices: Tensor) -> Tensor
Negative log-likelihood loss for observed (domain, codomain) pairs.
For each pair (x, y), computes -log(tensor[x, y]). Suitable when the morphism represents fuzzy membership and observed pairs should have high membership.
| PARAMETER | DESCRIPTION |
|---|---|
domain_indices
|
Integer tensor of shape (batch,) or (batch, n_domain_dims) indexing into the domain.
TYPE:
|
codomain_indices
|
Integer tensor of shape (batch,) or (batch, n_codomain_dims) indexing into the codomain.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
Tensor
|
Scalar mean negative log-likelihood. |
Source code in src/quivers/program.py
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 | |
bce_loss
¶
bce_loss(target: Tensor) -> Tensor
Binary cross-entropy between the morphism tensor and a target.
| PARAMETER | DESCRIPTION |
|---|---|
target
|
Target tensor of the same shape as the morphism tensor, with values in [0, 1].
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
Tensor
|
Scalar BCE loss. |
Source code in src/quivers/program.py
271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 | |