Shortcuts

Source code for torchgeo.models.resnet

# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.

"""Pre-trained ResNet models."""

from typing import Any, Optional

import kornia.augmentation as K
import timm
import torch.nn as nn
from timm.models import ResNet
from torchvision.models._api import Weights, WeightsEnum

from ..transforms import AugmentationSequential

__all__ = ["ResNet50_Weights", "ResNet18_Weights"]

_zhu_xlab_transforms = AugmentationSequential(
    K.Resize(256), K.CenterCrop(224), data_keys=["image"]
)

# https://github.com/pytorch/vision/pull/6883
# https://github.com/pytorch/vision/pull/7107
# Can be removed once torchvision>=0.15 is required
Weights.__deepcopy__ = lambda *args, **kwargs: args[0]


[docs]class ResNet18_Weights(WeightsEnum): # type: ignore[misc] """ResNet18 weights. For `timm <https://github.com/rwightman/pytorch-image-models>`_ *resnet18* implementation. .. versionadded:: 0.4 """ SENTINEL2_ALL_MOCO = Weights( url=( "https://huggingface.co/torchgeo/resnet18_sentinel2_all_moco/" "resolve/main/resnet18_sentinel2_all_moco.pth" ), transforms=_zhu_xlab_transforms, meta={ "dataset": "SSL4EO-S12", "in_chans": 13, "model": "resnet18", "publication": "https://arxiv.org/abs/2211.07044", "repo": "https://github.com/zhu-xlab/SSL4EO-S12", "ssl_method": "moco", }, ) SENTINEL2_RGB_MOCO = Weights( url=( "https://huggingface.co/torchgeo/resnet18_sentinel2_rgb_moco/" "resolve/main/resnet18_sentinel2_rgb_moco.pth" ), transforms=_zhu_xlab_transforms, meta={ "dataset": "SSL4EO-S12", "in_chans": 3, "model": "resnet18", "publication": "https://arxiv.org/abs/2211.07044", "repo": "https://github.com/zhu-xlab/SSL4EO-S12", "ssl_method": "moco", }, ) SENTINEL2_RGB_SECO = Weights( url=( "https://huggingface.co/torchgeo/resnet18_sentinel2_rgb_seco/" "resolve/main/resnet18_sentinel2_rgb_seco.ckpt" ), transforms=nn.Identity(), meta={ "dataset": "SeCo Dataset", "in_chans": 3, "model": "resnet18", "publication": "https://arxiv.org/abs/2103.16607", "repo": "https://github.com/ServiceNow/seasonal-contrast", "ssl_method": "seco", }, )
[docs]class ResNet50_Weights(WeightsEnum): # type: ignore[misc] """ResNet50 weights. For `timm <https://github.com/rwightman/pytorch-image-models>`_ *resnet50* implementation. .. versionadded:: 0.4 """ SENTINEL1_ALL_MOCO = Weights( url=( "https://huggingface.co/torchgeo/resnet50_sentinel1_all_moco/" "resolve/main/resnet50_sentinel1_all_moco.pth" ), transforms=_zhu_xlab_transforms, meta={ "dataset": "SSL4EO-S12", "in_chans": 2, "model": "resnet50", "publication": "https://arxiv.org/abs/2211.07044", "repo": "https://github.com/zhu-xlab/SSL4EO-S12", "ssl_method": "moco", }, ) SENTINEL2_ALL_MOCO = Weights( url=( "https://huggingface.co/torchgeo/resnet50_sentinel2_all_moco/" "resolve/main/resnet50_sentinel2_all_moco.pth" ), transforms=_zhu_xlab_transforms, meta={ "dataset": "SSL4EO-S12", "in_chans": 13, "model": "resnet50", "publication": "https://arxiv.org/abs/2211.07044", "repo": "https://github.com/zhu-xlab/SSL4EO-S12", "ssl_method": "moco", }, ) SENTINEL2_RGB_MOCO = Weights( url=( "https://huggingface.co/torchgeo/resnet50_sentinel2_rgb_moco/" "resolve/main/resnet50_sentinel2_rgb_moco.pth" ), transforms=_zhu_xlab_transforms, meta={ "dataset": "SSL4EO-S12", "in_chans": 3, "model": "resnet50", "publication": "https://arxiv.org/abs/2211.07044", "repo": "https://github.com/zhu-xlab/SSL4EO-S12", "ssl_method": "moco", }, ) SENTINEL2_ALL_DINO = Weights( url=( "https://huggingface.co/torchgeo/resnet50_sentinel2_all_dino/" "resolve/main/resnet50_sentinel2_all_dino.pth" ), transforms=_zhu_xlab_transforms, meta={ "dataset": "SSL4EO-S12", "in_chans": 13, "model": "resnet50", "publication": "https://arxiv.org/abs/2211.07044", "repo": "https://github.com/zhu-xlab/SSL4EO-S12", "ssl_method": "dino", }, ) SENTINEL2_RGB_SECO = Weights( url=( "https://huggingface.co/torchgeo/resnet50_sentinel2_rgb_seco/" "resolve/main/resnet50_sentinel2_rgb_seco.ckpt" ), transforms=nn.Identity(), meta={ "dataset": "SeCo Dataset", "in_chans": 3, "model": "resnet50", "publication": "https://arxiv.org/abs/2103.16607", "repo": "https://github.com/ServiceNow/seasonal-contrast", "ssl_method": "seco", }, )
[docs]def resnet18( weights: Optional[ResNet18_Weights] = None, *args: Any, **kwargs: Any ) -> ResNet: """ResNet-18 model. If you use this model in your research, please cite the following paper: * https://arxiv.org/pdf/1512.03385.pdf .. versionadded:: 0.4 Args: weights: Pre-trained model weights to use. *args: Additional arguments to pass to :func:`timm.create_model` **kwargs: Additional keywork arguments to pass to :func:`timm.create_model` Returns: A ResNet-18 model. """ if weights: kwargs["in_chans"] = weights.meta["in_chans"] model: ResNet = timm.create_model("resnet18", *args, **kwargs) if weights: model.load_state_dict(weights.get_state_dict(progress=True), strict=False) return model
[docs]def resnet50( weights: Optional[ResNet50_Weights] = None, *args: Any, **kwargs: Any ) -> ResNet: """ResNet-50 model. If you use this model in your research, please cite the following paper: * https://arxiv.org/pdf/1512.03385.pdf .. versionchanged:: 0.4 Switched to multi-weight support API. Args: weights: Pre-trained model weights to use. *args: Additional arguments to pass to :func:`timm.create_model`. **kwargs: Additional keywork arguments to pass to :func:`timm.create_model`. Returns: A ResNet-50 model. """ if weights: kwargs["in_chans"] = weights.meta["in_chans"] model: ResNet = timm.create_model("resnet50", *args, **kwargs) if weights: model.load_state_dict(weights.get_state_dict(progress=True), strict=False) return model

© Copyright 2021, Microsoft Corporation. Revision 671737fd.

Built with Sphinx using a theme provided by Read the Docs.
Read the Docs v: v0.4.0
Versions
latest
stable
v0.4.0
v0.3.1
v0.3.0
v0.2.1
v0.2.0
v0.1.1
v0.1.0
Downloads
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.

Docs

Access comprehensive developer documentation for PyTorch

View Docs

Tutorials

Get in-depth tutorials for beginners and advanced developers

View Tutorials

Resources

Find development resources and get your questions answered

View Resources