SamplingNeuralNetwork.probabilities¶
- SamplingNeuralNetwork.probabilities(input_data, weights)[ソース]¶
Histogram (as dict) of the samples from the network. Returns an array of samples. Format depends on the set interpret function.
- パラメータ
input_data (
Union
[List
[float
],ndarray
,float
]) – input data of the shape (num_inputs). In case of a single scalar input it is directly cast to and interpreted like a one-element array.weights (
Union
[List
[float
],ndarray
,float
]) – trainable weights of the shape (num_weights). In case of a single scalar weight it is directly cast to and interpreted like a one-element array.
- 戻り値の型
Union
[ndarray
,SparseArray
]- 戻り値
The sample histogram of the neural network.