【AI实战】最全 TensorFlow 官方模型:计算机视觉、自然语言处理

【AI实战】最全 TensorFlow 官方模型

1.模型和实现

1.1计算机视觉

  • 图像分类
Model Reference (Paper)
ResNet Deep Residual Learning for Image Recognition
ResNet-RS Revisiting ResNets: Improved Training and Scaling Strategies
EfficientNet EfficientNet: Rethinking Model Scaling for Convolutional Neural Networks
Vision Transformer An Image is Worth 16x16 Words: Transformers for Image Recognition at Scale
* 目标检测和分割
Model Reference (Paper)
RetinaNet Focal Loss for Dense Object Detection
Mask R-CNN Mask R-CNN
SpineNet SpineNet: Learning Scale-Permuted Backbone for Recognition and Localization
Cascade RCNN-RS and RetinaNet-RS Simple Training Strategies and Model Scaling for Object Detection
* 视频分类
Model Reference (Paper)
Mobile Video Networks (MoViNets) MoViNets: Mobile Video Networks for Efficient Video Recognition

szZack的博客

1.2自然语言处理

  • Pre-trained Language Model
Model Reference (Paper)
ALBERT ALBERT: A Lite BERT for Self-supervised Learning of Language Representations
BERT BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding
ELECTRA ELECTRA: Pre-training Text Encoders as Discriminators Rather Than Generators
  • 神经机器翻译 Neural Machine Translation
Model Reference (Paper)
Transformer Attention Is All You Need
  • 自然语言生成 Natural Language Generation
Model Reference (Paper)
NHNet (News Headline generation model) Generating Representative Headlines for News Stories
  • 知识蒸馏 Knowledge Distillation
Model Reference (Paper)
MobileBERT MobileBERT: a Compact Task-Agnostic BERT for Resource-Limited Devices
[szZack的博客](https://blog.csdn.net/zengNLP)
  • 推荐 Recommendation
Model Reference (Paper)
DLRM Deep Learning Recommendation Model for Personalization and Recommendation Systems
DCN v2 Improved Deep & Cross Network and Practical Lessons for Web-scale Learning to Rank Systems
NCF Neural Collaborative Filtering

2.如何开始使用官方模型

2.1 pip安装

pip3 install tf-models-nightly
pip3 install tensorflow-text-nightly # when model uses `nlp` packages

对于针对特定版本的稳定版本,Tensorflow-models 存储库版本号与目标 TensorFlow 版本相匹配。

pip3 install tf-models-official==2.5.0
pip3 install tensorflow-text==2.5.0 # when model uses `nlp` packages

2.3其他安装参考
https://github.comhttps://github.com/tensorflow/models#Installation
szZack的博客

3.参考

  • https://github.comhttps://github.com/tensorflow/models/tree/master/official

你可能感兴趣的:(人工智能,自然语言处理,深度学习,人工智能,tensorflow,计算机视觉,NLP)