TensorFlow2.0-Examples icon indicating copy to clipboard operation
TensorFlow2.0-Examples copied to clipboard

🙄 Difficult algorithm, Simple code.

Results 108 TensorFlow2.0-Examples issues
Sort by recently updated
recently updated
newest added

``` class ResNet(tf.keras.Model): def __init__(self, block, num_blocks, num_classes=10): ... def _make_layer(self, block, out_channels, num_blocks, stride): ... def call(self, x, training=False): out = tf.nn.relu(self.bn1(self.conv1(x), training)) out = self.layer1(out, training=training) out =...

` IndexError Traceback (most recent call last) /content/train.py in () 73 74 for epoch in range(cfg.TRAIN.EPOCHS): ---> 75 for image_data, target in trainset: 76 train_step(image_data, target) 77 model.save_weights("./yoface") 1 frames...

请问RPN例子中,synthetic_dataset里是不是还有数据,要去哪下载呀

Hi @YunYang1994, Any plan to add Yolov3-tiny implementation in near future?

其中训练的一些结果图,一张图片的处理速度为3s, ![8013](https://user-images.githubusercontent.com/33013904/69786091-acfa5200-11f4-11ea-9f75-2845da75cb3c.jpg) ![8009](https://user-images.githubusercontent.com/33013904/69786113-b683ba00-11f4-11ea-99f4-cc4ce18de252.jpg) ![8046](https://user-images.githubusercontent.com/33013904/69786123-bd123180-11f4-11ea-9a1a-8b87d51aa5d5.jpg)

Hi, I want to add validation in your train.py in yolov3. So I will know when the network is overfitting.... So, what I need is just add a valid_step func...

Can you explain the difference between the functionality of bbox_iou and bbox_giou?

大佬您好,我英语不好还是用中文吧。我想问问您的monodepth那SSIM loss是不是应该改成1 - SSIM loss?因为我试着跑了一下发现图片越变越不像原图。还有请问用了zip()函数是不是就不能用gpu跑了?

why did you define upsample function using` tf.image.resize` instead of using tf.keras.layers.upsample2D? Is there any specific reason?