ZHANG ZHAOXIANG

Results 5 issues of ZHANG ZHAOXIANG

Hi, I am trying to train on the scratches to achieve the quantize-aware training, and apply the model to the Coral device. My machine is not good (Geforce 1060), so...

help wanted

您好: 我在读代码中的tok_k函数的时候发现: ```` def top_k(heat,k=100): batch,h,w,c=heat.get_shape().as_list() heat=tf.reshape(heat,(batch,-1)) k_value,k_index=tf.nn.top_k(heat,k) k_class=k_index//(h*w) k_position=k_index%(h*w) k_y=k_position//w#0 is also a cata k_x=k_position%w return k_value,k_position,k_class,k_y,k_x ```` 这里c在最后一个维度的话,得到k_index之后再反推出k_class 时候感觉不是很对。我自己尝试发现channel维度在h和w之前这么算才是对的。请问有人能告诉我怎么理解比较对呢

Hi, I just found there are some difference between the equation and the code in the function estimate_longlatdiamkm from get_unique_craters.py. That is , how to convert the pixel coordinate into...

* Doc you were trying to follow: coral tflite file * Your host OS: Ubuntu * Your Python3 version: python 3.6 Now I have my own complied .tflite model, the...

help wanted
Getting Started
Tutorial

您好,新出的1.6版本有自定义算子的用法,但是具体实操不太知道怎么进行编译,以及和现有的模型串联起来,能否在modelzoo里提供一个自定义算子的例程呢,这样可以更好的学习编译自定义算子