netket.nn.FastMaskedConv2D#
- class netket.nn.FastMaskedConv2D[source]#
Bases:
Module2D convolution module with mask for fast autoregressive NN.
See
netket.models.FastARNNSequentialfor a brief explanation of fast autoregressive sampling.- Attributes
- feature_group_count: int = 1#
1).
- Type:
if specified, divides the input features into groups (default
- precision: Any = None#
numerical precision of the computation, see
jax.lax.Precisionfor details.
- kernel_size: tuple[int, int]#
shape of the convolutional kernel (h, w). Typically, \(h = w // 2 + 1\).
- kernel_dilation: tuple[int, int]#
a sequence of 2 integers, giving the dilation factor to apply in each spatial dimension of the convolution kernel.
- Methods