ParetoNBDRV.make_node#
- ParetoNBDRV.make_node(rng, size, dtype, r, alpha, s, beta, T)[source]#
Create a random variable node.
- Parameters:
rng (RandomGeneratorType or RandomStateType) – Existing PyTensor
GeneratororRandomStateobject to be used. Creates a new one, ifNone.size (int or Sequence) – NumPy-like size parameter.
dtype (str) – The dtype of the sampled output. If the value
"floatX"is given, thendtypeis set topytensor.config.floatX. This value is only used whenself.dtypeisn’t set.dist_params (list) – Distribution parameters.
Results
-------
out (Apply) – A node with inputs
(rng, size, dtype) + dist_argsand outputs(rng_var, out_var).