You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not sure if the issue is about tensorflow version.I was using tensorflow v1.12 and error occured at the function : final_pred_conf = tf.concat(1, preds_conf) final_pred_loc = tf.concat(1, preds_loc) at line 159 in file model.py. I have no idea how to solve it, I would appreciate it if someone can give a hand~
The text was updated successfully, but these errors were encountered:
tf.concat(1, preds_conf) -> tf.concat(preds_conf, 1).
I just remember that the issue is about tensorflow version.I hane meet this issue too. you can try the method above.
I'm not sure if the issue is about tensorflow version.I was using tensorflow v1.12 and error occured at the function : final_pred_conf = tf.concat(1, preds_conf) final_pred_loc = tf.concat(1, preds_loc) at line 159 in file model.py. I have no idea how to solve it, I would appreciate it if someone can give a hand~
The text was updated successfully, but these errors were encountered: