论文阅读大纲
#论文阅读#基础
经典基础论文
- VGG Very Deep Convolutional Networks for Large-Scale Image Recognition
- GoogleNet Going deeper with convolutions
- ResNet Deep Residual Learning for Image Recognition
- MobileNet MobileNets: Efficient Convolutional Neural Networks for Mobile Vision Applications
- Faster R-CNN: Towards Real-Time Object Detection with Region Proposal Networks
- Attention is all you need
- AN IMAGE IS WORTH 16X16 WORDS: TRANSFORMERS FOR IMAGE RECOGNITION AT SCALE
- Hierarchical Vision Transformer using Shifted Windows
- Squeeze-and-Excitation Networks
- K-Net: Towards Unified Image Segmentation
顺序 3 → 6 → 7 → 8 → 1 → 2 → 4 → 9 → 5 → 10
代码
使用Colab需设置并检查GPU是否可用
import tensorflow as tf
gpus = tf.config.list_physical_devices('GPU')
print(f"可用的GPU设备:{gpus}")
print(f"GPU可用:{len(gpus) > 0}")