V1.5.1
Just stumbled on this error:
TF Node backend does not support normalized logits passed to multinomial
I know that as a workaround I can unnormalize the inputs, but what's the actual limitation? Why the node backend doesn't support this?
This is because TensorFlow C library multinomial op only support unnormalized logits: https://www.tensorflow.org/api_docs/cc/class/tensorflow/ops/multinomial
FYI tfjs-node library is using TensorFlow C library under the hood.
Most helpful comment
This is because TensorFlow C library multinomial op only support unnormalized logits: https://www.tensorflow.org/api_docs/cc/class/tensorflow/ops/multinomial
FYI tfjs-node library is using TensorFlow C library under the hood.