Skip to content

Commit fb04cf8

Browse files
committed
releasing 1.8.0.rc0
1 parent 8a23893 commit fb04cf8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "rfdetr"
7-
version = "1.8.0.dev"
7+
version = "1.8.0.rc0"
88
description = "RF-DETR"
99
readme = "README.md"
1010
authors = [

src/rfdetr/models/heads/keypoints.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def modulate(features: torch.Tensor, scale: torch.Tensor, shift: torch.Tensor) -
6464
return (scale + 1.0) * features + shift
6565

6666

67-
class ConditionalQueryInitializer(nn.Module): # type: ignore[misc]
67+
class ConditionalQueryInitializer(nn.Module):
6868
"""Initialize keypoint query tokens with adaptive layer-normalization style modulation."""
6969

7070
def __init__(self, dim: int, num_queries: int, out_dim: int | None = None) -> None:

0 commit comments

Comments
 (0)