Skip to content

Commit

Permalink
build: Update version and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzomammana committed Jul 10, 2024
1 parent 84f9dfa commit 9602c29
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [v0.7.0+obx.1.3.4]

### Added

- Add three new flags to change the anomaly computation for patchcore
- `disable_score_weighting` which disables reweighting the anomaly score based on the anomalib formula
- `weight_anomaly_map` which apply the same weight used for the anomaly score to the whole anomaly map
- `anomaly_score_from_max_heatmap` which computes the anomaly score from the max value of the anomaly map

The latter is the one impacting the most the anomaly score computation as it will extract the max of the anomaly
map after the application of the pooling, this is the only way ensuring that the anomaly score is the maximum
value of the anomaly map. Disable score weighting should only be used if this flag is set to False, otherwise the
anomaly score will be replaced by the max of the anomaly map.

## [v0.7.0+obx.1.3.3]

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion src/anomalib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
# SPDX-License-Identifier: Apache-2.0

anomalib_version = "0.7.0"
custom_orobix_version = "1.3.3"
custom_orobix_version = "1.3.4"

__version__ = f"{anomalib_version}+obx.{custom_orobix_version}"

0 comments on commit 9602c29

Please sign in to comment.