1. 程式人生 > >Input ‘split_dim’ of ‘Split’ Op has type float32 that does not match expected type of int32 報錯

Input ‘split_dim’ of ‘Split’ Op has type float32 that does not match expected type of int32 報錯

#原來是這樣的:
This is because in Tensorflow versions < 0.12.0 the split function takes the arguments as:
x = tf.split(0, n_steps, x) # tf.split(axis, num_or_size_splits, value)

#修改成這樣的:
The tutorial you are working from was written for versions > 0.12.0, which has been changed to be consistent with Numpy’s split syntax:
x = tf.split(x, n_steps, 0) # tf.split(value, num_or_size_splits, axis)