multi-class-text-classification-cnn-rnn
multi-class-text-classification-cnn-rnn copied to clipboard
issue regarding training file please help
W tensorflow/core/platform/cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use SSE3 instructions, but these are available on your machine and could speed up CPU computations.
W tensorflow/core/platform/cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use SSE4.1 instructions, but these are available on your machine and could speed up CPU computations.
W tensorflow/core/platform/cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use SSE4.2 instructions, but these are available on your machine and could speed up CPU computations.
Traceback (most recent call last):
File "train.py", line 161, in
Are you able to solve this error? Please let me know
I met this error using tf 1.0. After some googling, I found that the args of tf.concat() function were changed in tf 1.0. This project was built using tf 0.9, where args of tf.concat() func were tf.concat(int32, tensor), the args were changed to tf.concat(tensor, int32) in tf 1.0.