mixle.stats.graphs.stochastic_block_graph module¶
Create, estimate, and sample from a stochastic block graph distribution.
This module handles Bernoulli edges conditional on observed or fixed node block assignments. It does not marginalize over unknown block assignments.
- class StochasticBlockGraphDistribution(block_probs, block_assignments=None, block_prior=None, directed=False, self_loops=False, include_assignment_prior=False, name=None, keys=None)[source]
Bases:
SequenceEncodableProbabilityDistributionBernoulli stochastic block graph distribution.
The distribution can be used conditionally on observed block assignments, or as a population model that samples assignments from
block_priorfor new graphs. Exact marginal likelihood over unknown assignments is intentionally not implied.- Parameters:
- classmethod compute_capabilities()[source]
- classmethod from_model(model, block_prior=None, include_assignment_prior=False)[source]
- density(x)[source]
Return the probability density or mass at a single observation.
Concrete default: exponentiate
log_density(the abstract method subclasses must provide). Leaves with a cheaper closed form may override this.
- log_density(x)[source]
Return the log-density or log-mass at a single observation.
- seq_log_density(x)[source]
Return vectorized log-density values for sequence-encoded observations.
- backend_seq_log_density(x, engine)[source]
Engine-routed block-structured Bernoulli edge log-likelihood.
Each graph’s edges are flattened host-side into per-edge (value, block-pair probability) arrays with a graph-segment id; the Bernoulli terms and the segment reduction run on the active engine (differentiable in
block_probson torch). The optional assignment prior is added per graph.
- link_probability(i, j, block_assignments=None)[source]
- edge_marginals(block_assignments=None, num_nodes=None)[source]
- sampler(seed=None)[source]
Return a sampler for drawing observations from this distribution.
- Parameters:
seed (int | None)
- Return type:
StochasticBlockGraphSampler
- enumerator()[source]
Enumerate binary graphs in descending probability order, for FIXED block assignments.
With the node block assignments fixed (
block_assignmentsset on the distribution), each edge(i, j)is an independent Bernoulli with its own probabilityblock_probs[a_i, a_j], so the graph distribution is a product of edge factors – enumerated by best-first over the per-edge supports and assembled into an adjacency matrix (mirrored when undirected). The constant assignment-prior term (wheninclude_assignment_prior) enters as a score offset so each graph carries its exactlog_density.Marginalizing over UNKNOWN assignments is intentionally not modeled by this family, so enumeration requires fixed assignments; otherwise EnumerationError.
- Return type:
DistributionEnumerator
- estimator(pseudo_count=None)[source]
Return an estimator for fitting this distribution from data.
- Parameters:
pseudo_count (float | None)
- Return type:
StochasticBlockGraphEstimator
- dist_to_encoder()[source]
Return the data encoder used by this distribution for vectorized methods.
- Return type:
GraphDataEncoder
- class StochasticBlockGraphEnumerator(dist)[source]
Bases:
DistributionEnumerator- Parameters:
dist (StochasticBlockGraphDistribution)
- class StochasticBlockGraphSampler(dist, seed=None)[source]
Bases:
DistributionSamplerSample binary graphs from an SBM.
- Parameters:
dist (StochasticBlockGraphDistribution)
seed (int | None)
- sample_graph(num_nodes=None, block_assignments=None, return_assignments=False)[source]
- sample(size=None, num_nodes=None, block_assignments=None, return_assignments=False)[source]
Draw observations.
Combinator samplers (mixture/sequence/…) accept
batched. Withbatched=True(the default) each child stream is drawn in one vectorized call instead of a per-draw Python loop – far faster. Because every child sampler owns an independentRandomState, batching consumes each stream in the same order as the loop, so the draws are identical to the legacy path.batched=Falseforces that legacy per-draw loop as a guaranteed- stable reference. Leaf samplers are already vectorized and ignore the flag.
- class StochasticBlockGraphAccumulator(num_blocks=None, block_assignments=None, directed=False, self_loops=False, name=None, keys=None)[source]
Bases:
SequenceEncodableStatisticAccumulatorAccumulate block-pair edge counts for SBM fitting.
- Parameters:
- update(x, weight, estimate)[source]
- initialize(x, weight, rng)[source]
- Parameters:
x (Any)
weight (float)
rng (RandomState | None)
- Return type:
None
- seq_update(x, weights, estimate)[source]
- seq_initialize(x, weights, rng)[source]
- Parameters:
x (Sequence[GraphObservation])
weights (ndarray)
rng (RandomState | None)
- Return type:
None
- combine(suff_stat)[source]
- from_value(x)[source]
- key_merge(stats_dict)[source]
Pool this accumulator’s statistics into
stats_dictunder its merge key.The structural default implements the common single-key pattern: store the accumulator under
self.keysthe first time the key is seen, elsecombineinto the one already there. Accumulators with several named keys (e.g. an HMM’s init/trans/state keys) or a non-accumulator stats payload override this. AkeysofNone(the default) is a no-op.
- key_replace(stats_dict)[source]
Replace this accumulator’s statistics from the pooled
stats_dictentry (see key_merge).
- acc_to_encoder()[source]
- Return type:
GraphDataEncoder
- class StochasticBlockGraphAccumulatorFactory(num_blocks=None, block_assignments=None, directed=False, self_loops=False, name=None, keys=None)[source]
Bases:
StatisticAccumulatorFactoryFactory for StochasticBlockGraphAccumulator.
- Parameters:
- make()[source]
- Return type:
StochasticBlockGraphAccumulator
- class StochasticBlockGraphEstimator(num_blocks=None, block_assignments=None, directed=False, self_loops=False, pseudo_count=None, prior_p=0.5, block_prior=None, estimate_block_prior=True, include_assignment_prior=False, name=None, keys=None)[source]
Bases:
ParameterEstimatorEstimate an SBM from graphs with observed block assignments.
- Parameters:
- accumulator_factory()[source]
- Return type:
StochasticBlockGraphAccumulatorFactory