TensorFlow2.0-Examples
TensorFlow2.0-Examples copied to clipboard
🙄 Difficult algorithm, Simple code.
请问,image_demo里面加载的是yolo3.weights,如果使用train.py训练出来的模型怎么测试呢,我测试图片是没有标记的,就像看一下具体的检测结果!!!谢谢
You can use tf.layers.Lambda to include all of your non-layer functions in the YOLO network(like tile,cast,etc.), thus they are technically a layer but not functions in the network, and you...
``` => STEP 748 lr: 0.000598 giou_loss: 2.10 conf_loss: 6.18 prob_loss: 0.03 total_loss: 8.31 => STEP 749 lr: 0.000599 giou_loss: 2.54 conf_loss: 6.51 prob_loss: 0.02 total_loss: 9.07 => STEP 750...
Hey @YunYang1994, do you think its possible to convert Yolo3 model into tflite model that can be run on a coral edge tpu. From docs: > You need to convert...
训练得到的模型请问如何用C++推理,请给一些提示,谢谢!
把YOLOv3整个模型(模型和参数)训练好了保存之后,再加载之后预测的结果shape变了。不保存直接推断是3个元素的tensor。而现在是6个元素的tensor。如下: 对于一张图片的预测 训练完直接预测的输出(只有一个类别)shape [1 52 52 3 6] [1 26 26 3 6] [1 13 13 3 6] 通过加载保存好的整个模型预测的输出(只有一个类别)shape [1 52 52 18] [1 26 26 3 6] [1 13...
After I changed misc.imread() to imageio.imread(), there came another error. ``` (base) E:\20815\Documents\python\TensorFlow2.0-Examples-master\5-Image_Segmentation\FCN>python train.py D:\Anaconda3\lib\site-packages\tensorflow\python\framework\dtypes.py:516: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a...
self.region_proposal_conv2 -> self.region_proposal_conv3
我基于此模型训练一个二分类目标检测,训练中,giou_loss 开始就是20左右,最后下降到12左右不下降了,有人遇到同样的问题吗
def call(self, x, training=False): if not training: training = tf.constant(False) training = tf.logical_and(training, self.trainable) return super().call(x, training) 代码training = tf.logical_and(training, self.trainable)是如何发挥训练时选择training模式,推理时选择非traning模式的作用的? 看不太懂self.trainabel这个变量。 请大神赐教!