Skip to content

Commit

Permalink
argument not used
Browse files Browse the repository at this point in the history
Signed-off-by: João Lucas de Sousa Almeida <[email protected]>
  • Loading branch information
Joao-L-S-Almeida committed Jan 6, 2025
1 parent dde31bb commit e04e53e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terratorch/models/scalar_output_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def forward(self, x: torch.Tensor, **kwargs) -> ModelOutput:
features = prepare(features)

decoder_output = self.decoder([f.clone() for f in features])
decoder_output = self._crop_image_when_necessary(decoder_output, pad, input_size)
decoder_output = self._crop_image_when_necessary(decoder_output, input_size)
mask = self.head(decoder_output)

aux_outputs = {}
Expand Down

0 comments on commit e04e53e

Please sign in to comment.