tensorflow-playground
tensorflow-playground copied to clipboard
Run doc2vec raise errors
I installed all in requirement.txt but when i run it raise this error: TypeError: Input 'y' of 'Mul' Op has type float32 that does not match type int32 of argument 'x'.
Please tell me how to solve it. Thanks
some changes of parameter order in latest tensorflow, which I believe you are using.
- tf.concat, value and axis are in different order
- tf.nn.sampled_softmax_loss, 'input' and 'labels' are in different order.
Hope it helps