Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ The following table shows which versions of MapReader are compatible with which
## Pre-release
_Add new changes here_
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you re-add the _Add new changes here_ line so future contributors can still see where to add in the changelog

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure, done it.


### Fixed

- Fixes the `model_summary` method in the `ClassifierContainer` class ([#574](https://github.com/maps-as-data/MapReader/pull/574))

## [v1.8.2](https://github.com/Living-with-machines/MapReader/releases/tag/v1.8.2) (2025-12-19)

### Added
Expand Down
2 changes: 1 addition & 1 deletion mapreader/classify/classifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ def model_summary(
col_names = ["output_size", "output_size", "num_params"]

model_summary = summary(
self.model, input_size=input_size, col_names=col_names, **kwargs
self.model, input_size=input_size, col_names=col_names, device=self.device, **kwargs
)
print(model_summary)

Expand Down
Loading