模型:
google/efficientnet-b7
EfficientNet模型在ImageNet-1k上以600x600的分辨率进行了训练。它是由Mingxing Tan和Quoc V. Le在论文 EfficientNet: Rethinking Model Scaling for Convolutional Neural Networks 中提出的,并于 this repository 首次发布。
免责声明:发布EfficientNet的团队没有为这个模型编写模型卡片,所以这个模型卡片是由Hugging Face团队编写的。
EfficientNet是一种适用于移动设备的纯卷积模型(ConvNet),它提出了一种新的缩放方法,可以使用一个简单但非常有效的复合系数来均匀缩放深度/宽度/分辨率的所有维度。
您可以使用原始模型进行图像分类。查看 model hub 以寻找您感兴趣的任务的微调版本。
下面是如何使用该模型将COCO 2017数据集中的图像分类为1,000个ImageNet类别之一的示例:
import torch from datasets import load_dataset from transformers import EfficientNetImageProcessor, EfficientNetForImageClassification dataset = load_dataset("huggingface/cats-image") image = dataset["test"]["image"][0] preprocessor = EfficientNetImageProcessor.from_pretrained("google/efficientnet-b7") model = EfficientNetForImageClassification.from_pretrained("google/efficientnet-b7") inputs = preprocessor(image, return_tensors="pt") with torch.no_grad(): logits = model(**inputs).logits # model predicts one of the 1000 ImageNet classes predicted_label = logits.argmax(-1).item() print(model.config.id2label[predicted_label]),
有关更多代码示例,请参阅 documentation 。
@article{Tan2019EfficientNetRM, title={EfficientNet: Rethinking Model Scaling for Convolutional Neural Networks}, author={Mingxing Tan and Quoc V. Le}, journal={ArXiv}, year={2019}, volume={abs/1905.11946} }