__init__
- FullyConnected.__init__(input_dimension, quantiles, arch)[source]
Create a fully-connected neural network.
- Parameters:
input_dimension (
int
) – Number of input featuresquantiles (
array
) – The quantiles to predict given as fractions within [0, 1].arch (tuple) – Tuple
(d, w, a)
containingd
, the number of hidden layers in the network,w
, the width of the network anda
, the type of activation functions to be used as string.