ssd_tensorflow_traffic_sign_detection icon indicating copy to clipboard operation
ssd_tensorflow_traffic_sign_detection copied to clipboard

Help me out~

Open SpyderLord opened this issue 6 years ago • 1 comments

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~

SpyderLord avatar Nov 20 '18 06:11 SpyderLord

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.

xiaodandong avatar Dec 06 '18 02:12 xiaodandong