From c1910835a32a05cbb79bdacbec8f25914a7e3a20 Mon Sep 17 00:00:00 2001 From: anh-vunguyen <67963533+anh-vunguyen@users.noreply.github.com> Date: Mon, 10 Apr 2023 22:53:23 +0930 Subject: [PATCH] Corrected docstring typo of class PatchEmbed --- segment_anything/modeling/image_encoder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/segment_anything/modeling/image_encoder.py b/segment_anything/modeling/image_encoder.py index 755ff4f..66351d9 100644 --- a/segment_anything/modeling/image_encoder.py +++ b/segment_anything/modeling/image_encoder.py @@ -380,7 +380,7 @@ class PatchEmbed(nn.Module): stride (Tuple): stride of the projection layer. padding (Tuple): padding size of the projection layer. in_chans (int): Number of input image channels. - embed_dim (int): embed_dim (int): Patch embedding dimension. + embed_dim (int): Patch embedding dimension. """ super().__init__()