diff --git a/src/transformers/models/swin/modeling_swin.py b/src/transformers/models/swin/modeling_swin.py index 5bd79aec335..0768a89f8ab 100644 --- a/src/transformers/models/swin/modeling_swin.py +++ b/src/transformers/models/swin/modeling_swin.py @@ -341,7 +341,7 @@ class SwinPatchMerging(nn.Module): batch_size, dim, num_channels = input_feature.shape input_feature = input_feature.view(batch_size, height, width, num_channels) - # pad input to be disible by width and height, if needed + # pad input to be divisible by width and height, if needed input_feature = self.maybe_pad(input_feature, height, width) # [batch_size, height/2, width/2, num_channels] input_feature_0 = input_feature[:, 0::2, 0::2, :] diff --git a/src/transformers/pipelines/pt_utils.py b/src/transformers/pipelines/pt_utils.py index 19663437cd6..53f96c70f2d 100644 --- a/src/transformers/pipelines/pt_utils.py +++ b/src/transformers/pipelines/pt_utils.py @@ -185,7 +185,7 @@ class PipelineChunkIterator(PipelineIterator): # Try to return next item processed = next(self.subiterator) except StopIteration: - # When a preprocess iterator ends, we can start lookig at the next item + # When a preprocess iterator ends, we can start looking at the next item # ChunkIterator will keep feeding until ALL elements of iterator # all have created their subiterator and have been iterating against. #