horizon0408
Results
2
comments of
horizon0408
TF changed the API. You may try to use `concated = tf.concat([e5, a2], 1)` to see if it works.
To get the predictions in numpy, I just run ``` disparity = full_res_prediction_np if args.fullRes else raw_prediction_np np.save(dest[:-4], np.squeeze(disparity)) ``` in your `inference.py` The inputs are not rescaled. I run...