DeepLearning-TensorFlow2
DeepLearning-TensorFlow2 copied to clipboard
本仓库我将使用谷歌TensorFlow2框架逐一复现经典的卷积神经网络:LeNet、AlexNet、VGG系列、GooLeNet、ResNet 系列、DenseNet 系列,以及现在比较经典的目标检测网络、语义分割网络等。
Thanks for your share, i want to ask you that these code can direct run in gpu mode.
Hello! I've found a performance issue in your project: `batch()` should be called before `map()`, which could make your program more efficient. Here is [the tensorflow document](https://tensorflow.google.cn/guide/data_performance?hl=zh_cn#vectorized_mapping) to support it....
Hello,I found a performance issue in `7.%20ResNet/train.py` , [train_db = train_db.shuffle(50000).map](https://github.com/Keyird/DeepLearning-TensorFlow2/blob/118e16981498ffd73e9b98c3805d0666fd0c70bc/7.%20ResNet/train.py#L21) was called without **num_parallel_calls**. I think it will increase the efficiency of your program if you add this. The...
SSD,Yolo目标检测继续更新吗?