Zhiliang Zhou
Zhiliang Zhou
# 1. predict_op definition missed in pokemonclassifier.py there is only inference_predict_op for model_base64_input type ``` inference_logits = inference(model_base64_input) inference_predict_softmax = tf.nn.softmax(inference_logits) inference_predict_op = tf.argmax(inference_predict_softmax, 1) ``` missed predict_op for x...
Thanks for sharing your work, your code is so elegant, and inspired me a lot. Here is a question about the implementation of Efficient Self-Attention It seems you use a...
to factorize the camera matrix P line 26 to line 41 ``` python def factor(self): """ Factorize the camera matrix into K,R,t as P = K[R|t]. """ # factor first...