Buckets:
| # Backbone | |
| A backbone is a model used for feature extraction for higher level computer vision tasks such as object detection and image classification. Transformers provides an [AutoBackbone](/docs/transformers/main/en/main_classes/backbones#transformers.AutoBackbone) class for initializing a Transformers backbone from pretrained model weights, and two utility classes: | |
| * [BackboneMixin](/docs/transformers/main/en/main_classes/backbones#transformers.BackboneMixin) enables initializing a backbone from Transformers or [timm](https://hf.co/docs/timm/index) and includes functions for returning the output features and indices. | |
| * [BackboneConfigMixin](/docs/transformers/main/en/main_classes/backbones#transformers.BackboneConfigMixin) sets the output features and indices of the backbone configuration. | |
| [timm](https://hf.co/docs/timm/index) models are loaded with the [TimmBackbone](/docs/transformers/main/en/main_classes/backbones#transformers.TimmBackbone) and [TimmBackboneConfig](/docs/transformers/main/en/main_classes/backbones#transformers.TimmBackboneConfig) classes. | |
| Backbones are supported for the following models: | |
| * [BEiT](../model_doc/beit) | |
| * [BiT](../model_doc/bit) | |
| * [ConvNext](../model_doc/convnext) | |
| * [ConvNextV2](../model_doc/convnextv2) | |
| * [DiNAT](../model_doc/dinat) | |
| * [DINOV2](../model_doc/dinov2) | |
| * [FocalNet](../model_doc/focalnet) | |
| * [MaskFormer](../model_doc/maskformer) | |
| * [NAT](../model_doc/nat) | |
| * [ResNet](../model_doc/resnet) | |
| * [Swin Transformer](../model_doc/swin) | |
| * [Swin Transformer v2](../model_doc/swinv2) | |
| * [ViTDet](../model_doc/vitdet) | |
| ## AutoBackbone[[transformers.AutoBackbone]] | |
| #### transformers.AutoBackbone[[transformers.AutoBackbone]] | |
| [Source](https://github.com/huggingface/transformers/blob/main/src/transformers/models/auto/modeling_auto.py#L2326) | |
| ## BackboneMixin[[transformers.BackboneMixin]] | |
| #### transformers.BackboneMixin[[transformers.BackboneMixin]] | |
| [Source](https://github.com/huggingface/transformers/blob/main/src/transformers/backbone_utils.py#L181) | |
| post_inittransformers.BackboneMixin.post_inithttps://github.com/huggingface/transformers/blob/main/src/transformers/backbone_utils.py#L207[] | |
| Override `post_init` to always install capturing hooks, as backbone will ALWAYS capture outputs. We need to do | |
| it in `post_init`, as modules need to be already instantiated. | |
| It avoids some mixups with `torch.compile`, as the first hook installation will need/create a graph break, | |
| which can clash with external user call such as `model = torch.compile(model...)`. | |
| ## BackboneConfigMixin[[transformers.BackboneConfigMixin]] | |
| #### transformers.BackboneConfigMixin[[transformers.BackboneConfigMixin]] | |
| [Source](https://github.com/huggingface/transformers/blob/main/src/transformers/backbone_utils.py#L35) | |
| A Mixin to support handling the `out_features` and `out_indices` attributes for the backbone configurations. | |
| set_output_features_output_indicestransformers.BackboneConfigMixin.set_output_features_output_indiceshttps://github.com/huggingface/transformers/blob/main/src/transformers/backbone_utils.py#L40[{"name": "out_features", "val": ": list | None"}, {"name": "out_indices", "val": ": list | None"}]- **out_features** (`list[str]`, *optional*) -- | |
| The names of the features for the backbone to output. Defaults to `config._out_features` if not provided. | |
| - **out_indices** (`list[int]` or `tuple[int]`, *optional*) -- | |
| The indices of the features for the backbone to output. Defaults to `config._out_indices` if not provided.0 | |
| Sets output indices and features to new values and aligns them with the given `stage_names`. | |
| If one of the inputs is not given, find the corresponding `out_features` or `out_indices` | |
| for the given `stage_names`. | |
| **Parameters:** | |
| out_features (`list[str]`, *optional*) : The names of the features for the backbone to output. Defaults to `config._out_features` if not provided. | |
| out_indices (`list[int]` or `tuple[int]`, *optional*) : The indices of the features for the backbone to output. Defaults to `config._out_indices` if not provided. | |
| #### to_dict[[transformers.BackboneConfigMixin.to_dict]] | |
| [Source](https://github.com/huggingface/transformers/blob/main/src/transformers/backbone_utils.py#L149) | |
| Serializes this instance to a Python dictionary. Override the default `to_dict()` from `PreTrainedConfig` to | |
| include the `out_features` and `out_indices` attributes. | |
| #### verify_out_features_out_indices[[transformers.BackboneConfigMixin.verify_out_features_out_indices]] | |
| [Source](https://github.com/huggingface/transformers/blob/main/src/transformers/backbone_utils.py#L76) | |
| Verify that out_indices and out_features are valid for the given stage_names. | |
| ## TimmBackbone[[transformers.TimmBackbone]] | |
| #### transformers.TimmBackbone[[transformers.TimmBackbone]] | |
| [Source](https://github.com/huggingface/transformers/blob/main/src/transformers/models/timm_backbone/modeling_timm_backbone.py#L32) | |
| Wrapper class for timm models to be used as backbones. This enables using the timm models interchangeably with the | |
| other models in the library keeping the same API. | |
| ## TimmBackboneConfig[[transformers.TimmBackboneConfig]] | |
| #### transformers.TimmBackboneConfig[[transformers.TimmBackboneConfig]] | |
| [Source](https://github.com/huggingface/transformers/blob/main/src/transformers/models/timm_backbone/configuration_timm_backbone.py#L26) | |
| This is the configuration class to store the configuration of a TimmBackbone. It is used to instantiate a Timm Backbone | |
| model according to the specified arguments, defining the model architecture. Instantiating a configuration with the | |
| defaults will yield a similar configuration to that of the [](https://huggingface.co/) | |
| Configuration objects inherit from [PreTrainedConfig](/docs/transformers/main/en/main_classes/configuration#transformers.PreTrainedConfig) and can be used to control the model outputs. Read the | |
| documentation from [PreTrainedConfig](/docs/transformers/main/en/main_classes/configuration#transformers.PreTrainedConfig) for more information. | |
| Example: | |
| ```python | |
| >>> from transformers import TimmBackboneConfig, TimmBackbone | |
| >>> # Initializing a timm backbone | |
| >>> configuration = TimmBackboneConfig("resnet50") | |
| >>> # Initializing a model from the configuration | |
| >>> model = TimmBackbone(configuration) | |
| >>> # Accessing the model configuration | |
| >>> configuration = model.config | |
| ``` | |
| **Parameters:** | |
| backbone (`str`, *optional*) : The timm checkpoint to load. | |
| num_channels (`int`, *optional*, defaults to `3`) : The number of input channels. | |
| features_only (`bool`, *optional*, defaults to `True`) : Whether to output only the features or also the logits. | |
| freeze_batch_norm_2d (`bool`, *optional*, defaults to `False`) : Converts all `BatchNorm2d` and `SyncBatchNorm` layers of provided module into `FrozenBatchNorm2d`. | |
| output_stride (`int`, *optional*) : The ratio between the spatial resolution of the input and output feature maps. | |
Xet Storage Details
- Size:
- 6.89 kB
- Xet hash:
- c60a662fe6ae7a8181e24f71a028fea18b289473df17b761eb89151d6bf4df83
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.