Spaces:
Sleeping
Sleeping
File size: 8,149 Bytes
265ae36 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 |
# Copyright (c) Meta Platforms, Inc. and affiliates.
#
# This source code is licensed under the Apache License, Version 2.0
# found in the LICENSE file in the root directory of this source tree.
from enum import Enum
from functools import partial
from typing import Optional, Tuple, Union
import torch
from .backbones import _make_dinov2_model
from .depth import BNHead, DepthEncoderDecoder, DPTHead
from .utils import _DINOV2_BASE_URL, _make_dinov2_model_name, CenterPadding
class Weights(Enum):
NYU = "NYU"
KITTI = "KITTI"
def _get_depth_range(pretrained: bool, weights: Weights = Weights.NYU) -> Tuple[float, float]:
if not pretrained: # Default
return (0.001, 10.0)
# Pretrained, set according to the training dataset for the provided weights
if weights == Weights.KITTI:
return (0.001, 80.0)
if weights == Weights.NYU:
return (0.001, 10.0)
return (0.001, 10.0)
def _make_dinov2_linear_depth_head(
*,
embed_dim: int,
layers: int,
min_depth: float,
max_depth: float,
**kwargs,
):
if layers not in (1, 4):
raise AssertionError(f"Unsupported number of layers: {layers}")
if layers == 1:
in_index = [0]
else:
assert layers == 4
in_index = [0, 1, 2, 3]
return BNHead(
classify=True,
n_bins=256,
bins_strategy="UD",
norm_strategy="linear",
upsample=4,
in_channels=[embed_dim] * len(in_index),
in_index=in_index,
input_transform="resize_concat",
channels=embed_dim * len(in_index) * 2,
align_corners=False,
min_depth=0.001,
max_depth=80,
loss_decode=(),
)
def _make_dinov2_linear_depther(
*,
arch_name: str = "vit_large",
layers: int = 4,
pretrained: bool = True,
weights: Union[Weights, str] = Weights.NYU,
depth_range: Optional[Tuple[float, float]] = None,
**kwargs,
):
if layers not in (1, 4):
raise AssertionError(f"Unsupported number of layers: {layers}")
if isinstance(weights, str):
try:
weights = Weights[weights]
except KeyError:
raise AssertionError(f"Unsupported weights: {weights}")
if depth_range is None:
depth_range = _get_depth_range(pretrained, weights)
min_depth, max_depth = depth_range
backbone = _make_dinov2_model(arch_name=arch_name, pretrained=pretrained, **kwargs)
embed_dim = backbone.embed_dim
patch_size = backbone.patch_size
model_name = _make_dinov2_model_name(arch_name, patch_size)
linear_depth_head = _make_dinov2_linear_depth_head(
embed_dim=embed_dim,
layers=layers,
min_depth=min_depth,
max_depth=max_depth,
)
layer_count = {
"vit_small": 12,
"vit_base": 12,
"vit_large": 24,
"vit_giant2": 40,
}[arch_name]
if layers == 4:
out_index = {
"vit_small": [2, 5, 8, 11],
"vit_base": [2, 5, 8, 11],
"vit_large": [4, 11, 17, 23],
"vit_giant2": [9, 19, 29, 39],
}[arch_name]
else:
assert layers == 1
out_index = [layer_count - 1]
model = DepthEncoderDecoder(backbone=backbone, decode_head=linear_depth_head)
model.backbone.forward = partial(
backbone.get_intermediate_layers,
n=out_index,
reshape=True,
return_class_token=True,
norm=False,
)
model.backbone.register_forward_pre_hook(lambda _, x: CenterPadding(patch_size)(x[0]))
if pretrained:
layers_str = str(layers) if layers == 4 else ""
weights_str = weights.value.lower()
url = _DINOV2_BASE_URL + f"/{model_name}/{model_name}_{weights_str}_linear{layers_str}_head.pth"
checkpoint = torch.hub.load_state_dict_from_url(url, map_location="cpu")
if "state_dict" in checkpoint:
state_dict = checkpoint["state_dict"]
model.load_state_dict(state_dict, strict=False)
return model
def dinov2_vits14_ld(*, layers: int = 4, pretrained: bool = True, weights: Union[Weights, str] = Weights.NYU, **kwargs):
return _make_dinov2_linear_depther(
arch_name="vit_small", layers=layers, pretrained=pretrained, weights=weights, **kwargs
)
def dinov2_vitb14_ld(*, layers: int = 4, pretrained: bool = True, weights: Union[Weights, str] = Weights.NYU, **kwargs):
return _make_dinov2_linear_depther(
arch_name="vit_base", layers=layers, pretrained=pretrained, weights=weights, **kwargs
)
def dinov2_vitl14_ld(*, layers: int = 4, pretrained: bool = True, weights: Union[Weights, str] = Weights.NYU, **kwargs):
return _make_dinov2_linear_depther(
arch_name="vit_large", layers=layers, pretrained=pretrained, weights=weights, **kwargs
)
def dinov2_vitg14_ld(*, layers: int = 4, pretrained: bool = True, weights: Union[Weights, str] = Weights.NYU, **kwargs):
return _make_dinov2_linear_depther(
arch_name="vit_giant2", layers=layers, ffn_layer="swiglufused", pretrained=pretrained, weights=weights, **kwargs
)
def _make_dinov2_dpt_depth_head(*, embed_dim: int, min_depth: float, max_depth: float):
return DPTHead(
in_channels=[embed_dim] * 4,
channels=256,
embed_dims=embed_dim,
post_process_channels=[embed_dim // 2 ** (3 - i) for i in range(4)],
readout_type="project",
min_depth=min_depth,
max_depth=max_depth,
loss_decode=(),
)
def _make_dinov2_dpt_depther(
*,
arch_name: str = "vit_large",
pretrained: bool = True,
weights: Union[Weights, str] = Weights.NYU,
depth_range: Optional[Tuple[float, float]] = None,
**kwargs,
):
if isinstance(weights, str):
try:
weights = Weights[weights]
except KeyError:
raise AssertionError(f"Unsupported weights: {weights}")
if depth_range is None:
depth_range = _get_depth_range(pretrained, weights)
min_depth, max_depth = depth_range
backbone = _make_dinov2_model(arch_name=arch_name, pretrained=pretrained, **kwargs)
model_name = _make_dinov2_model_name(arch_name, backbone.patch_size)
dpt_depth_head = _make_dinov2_dpt_depth_head(embed_dim=backbone.embed_dim, min_depth=min_depth, max_depth=max_depth)
out_index = {
"vit_small": [2, 5, 8, 11],
"vit_base": [2, 5, 8, 11],
"vit_large": [4, 11, 17, 23],
"vit_giant2": [9, 19, 29, 39],
}[arch_name]
model = DepthEncoderDecoder(backbone=backbone, decode_head=dpt_depth_head)
model.backbone.forward = partial(
backbone.get_intermediate_layers,
n=out_index,
reshape=True,
return_class_token=True,
norm=False,
)
model.backbone.register_forward_pre_hook(lambda _, x: CenterPadding(backbone.patch_size)(x[0]))
if pretrained:
weights_str = weights.value.lower()
url = _DINOV2_BASE_URL + f"/{model_name}/{model_name}_{weights_str}_dpt_head.pth"
checkpoint = torch.hub.load_state_dict_from_url(url, map_location="cpu")
if "state_dict" in checkpoint:
state_dict = checkpoint["state_dict"]
model.load_state_dict(state_dict, strict=False)
return model
def dinov2_vits14_dd(*, pretrained: bool = True, weights: Union[Weights, str] = Weights.NYU, **kwargs):
return _make_dinov2_dpt_depther(arch_name="vit_small", pretrained=pretrained, weights=weights, **kwargs)
def dinov2_vitb14_dd(*, pretrained: bool = True, weights: Union[Weights, str] = Weights.NYU, **kwargs):
return _make_dinov2_dpt_depther(arch_name="vit_base", pretrained=pretrained, weights=weights, **kwargs)
def dinov2_vitl14_dd(*, pretrained: bool = True, weights: Union[Weights, str] = Weights.NYU, **kwargs):
return _make_dinov2_dpt_depther(arch_name="vit_large", pretrained=pretrained, weights=weights, **kwargs)
def dinov2_vitg14_dd(*, pretrained: bool = True, weights: Union[Weights, str] = Weights.NYU, **kwargs):
return _make_dinov2_dpt_depther(
arch_name="vit_giant2", ffn_layer="swiglufused", pretrained=pretrained, weights=weights, **kwargs
)
|