英文

EfficientNet(b0模型)

EfficientNet模型在ImageNet-1k数据集上以224x224的分辨率进行训练。该模型是由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-b0")
model = EfficientNetForImageClassification.from_pretrained("google/efficientnet-b0")

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

BibTeX条目和引用信息

@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}
}