TensorFlow2.0-Examples
TensorFlow2.0-Examples copied to clipboard
🙄 Difficult algorithm, Simple code.
Hello, I was using the image_process function in core/utils.py at line 80. I saw that the image was resized to (nw, nh). I was wondering why it was not (nh,...
`self.pool5 = tf.keras.layers.MaxPooling2D(3, strides=1, padding='same') # [19, 19, 512] # fc6, => vgg backbone is finished. now they are all SSD blocks self.fc6 = tf.keras.layers.Conv2D(1024, 3, dilation_rate=6, activation='relu', padding='same') #...
Hi all, I'm a bit confused about the implementation of the `convolutional` function in `4-Object_Detection/YOLOV3/core/common.py` : how come only the first and last element of the input list `filters_shape` are...
看评论区对tf2的速度表达不一致,到底是tf1快还是tf2快呢,在实际的运行当中。
I have changed the test file according to my use in colab. I am getting the following error: ``` InvalidArgumentError Traceback (most recent call last) in () 75 # X...
如何根据自己的训练结果生成相应的weights文件呢
utils.load_weights(model, "./yolov3.weights") File "/home/fut/Downloads/TensorFlow2.0-Examples-master/4-Object_Detection/YOLOV3/core/utils.py", line 59, in load_weights assert len(wf.read()) == 0, 'failed to read all data' AssertionError: failed to read all data yolov3仔细检查没问题,官方都可以跑,你这个demo是不是有问题?
你好,就是在预测的时候,pred_conf和pred_prob 为什么没有经过sigmoid函数?望解答!