| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- # Copyright 2023 Google Research, Inc. and The HuggingFace Inc. team. All rights reserved.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- """EfficientNet model configuration"""
- from huggingface_hub.dataclasses import strict
- from ...configuration_utils import PreTrainedConfig
- from ...utils import auto_docstring
- @auto_docstring(checkpoint="google/efficientnet-b7")
- @strict
- class EfficientNetConfig(PreTrainedConfig):
- r"""
- width_coefficient (`float`, *optional*, defaults to 2.0):
- Scaling coefficient for network width at each stage.
- depth_coefficient (`float`, *optional*, defaults to 3.1):
- Scaling coefficient for network depth at each stage.
- depth_divisor (`int`, *optional*, defaults to 8):
- A unit of network width.
- kernel_sizes (`list[int]`, *optional*, defaults to `[3, 3, 5, 3, 5, 5, 3]`):
- List of kernel sizes to be used in each block.
- out_channels (`list[int]`, *optional*, defaults to `[16, 24, 40, 80, 112, 192, 320]`):
- List of output channel sizes to be used in each block for convolutional layers.
- depthwise_padding (`list[int]`, *optional*, defaults to `[]`):
- List of block indices with square padding.
- num_block_repeats (`list[int]`, *optional*, defaults to `[1, 2, 2, 3, 3, 4, 1]`):
- List of the number of times each block is to repeated.
- expand_ratios (`list[int]`, *optional*, defaults to `[1, 6, 6, 6, 6, 6, 6]`):
- List of scaling coefficient of each block.
- squeeze_expansion_ratio (`float`, *optional*, defaults to 0.25):
- Squeeze expansion ratio.
- pooling_type (`str` or `function`, *optional*, defaults to `"mean"`):
- Type of final pooling to be applied before the dense classification head. Available options are [`"mean"`,
- `"max"`]
- batch_norm_momentum (`float`, *optional*, defaults to 0.99):
- The momentum used by the batch normalization layers.
- drop_connect_rate (`float`, *optional*, defaults to 0.2):
- The drop rate for skip connections.
- Example:
- ```python
- >>> from transformers import EfficientNetConfig, EfficientNetModel
- >>> # Initializing a EfficientNet efficientnet-b7 style configuration
- >>> configuration = EfficientNetConfig()
- >>> # Initializing a model (with random weights) from the efficientnet-b7 style configuration
- >>> model = EfficientNetModel(configuration)
- >>> # Accessing the model configuration
- >>> configuration = model.config
- ```"""
- model_type = "efficientnet"
- num_channels: int = 3
- image_size: int | list[int] | tuple[int, int] = 600
- width_coefficient: float = 2.0
- depth_coefficient: float = 3.1
- depth_divisor: int = 8
- kernel_sizes: list[int] | tuple[int, ...] = (3, 3, 5, 3, 5, 5, 3)
- in_channels: list[int] | tuple[int, ...] = (32, 16, 24, 40, 80, 112, 192)
- out_channels: list[int] | tuple[int, ...] = (16, 24, 40, 80, 112, 192, 320)
- depthwise_padding: list[int] | tuple[int, ...] = ()
- strides: list[int] | tuple[int, ...] = (1, 2, 2, 2, 1, 2, 1)
- num_block_repeats: list[int] | tuple[int, ...] = (1, 2, 2, 3, 3, 4, 1)
- expand_ratios: list[int] | tuple[int, ...] = (1, 6, 6, 6, 6, 6, 6)
- squeeze_expansion_ratio: float = 0.25
- hidden_act: str = "swish"
- hidden_dim: int = 2560
- pooling_type: str = "mean"
- initializer_range: float = 0.02
- batch_norm_eps: float = 0.001
- batch_norm_momentum: float = 0.99
- dropout_rate: float | int = 0.5
- drop_connect_rate: float | int = 0.2
- def __post_init__(self, **kwargs):
- super().__post_init__(**kwargs)
- self.num_hidden_layers = sum(self.num_block_repeats) * 4
- __all__ = ["EfficientNetConfig"]
|