TensorFlow2.0-Examples
                                
                                 TensorFlow2.0-Examples copied to clipboard
                                
                                    TensorFlow2.0-Examples copied to clipboard
                            
                            
                            
                        🙄 Difficult algorithm, Simple code.
``` 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,   
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?