Neural network estimators¶
queso.estimators.flax.dnn.BayesianDNNEstimator
¶
Bases: Module
A Bayesian Deep Neural Network (DNN) Estimator implemented as a Flax module.
This class represents a Bayesian DNN estimator, which is a type of neural network
that can provide uncertainty estimates in addition to predictions. The network architecture
is defined by the nn_dims attribute, which specifies the number of neurons in each layer.
Attributes:
| Name | Type | Description |
|---|---|---|
nn_dims |
Sequence[int]
|
A sequence of integers specifying the number of neurons in each layer of the network. |
Methods:
| Name | Description |
|---|---|
__call__ |
Defines the computation performed at every call. |