efficientnet_b1¶
- torchvision.models.efficientnet_b1(*, weights: Optional[EfficientNet_B1_Weights] = None, progress: bool = True, **kwargs: Any) EfficientNet[source]¶
EfficientNet B1 model architecture from the EfficientNet: Rethinking Model Scaling for Convolutional Neural Networks paper.
- Parameters:
weights (
EfficientNet_B1_Weights, optional) – The pretrained weights to use. SeeEfficientNet_B1_Weightsbelow for more details, and possible values. By default, no pre-trained weights are used.progress (bool, optional) – If True, displays a progress bar of the download to stderr. Default is True.
**kwargs – parameters passed to the
torchvision.models.efficientnet.EfficientNetbase class. Please refer to the source code for more details about this class.