Skip to content

Commit

Permalink
dev(narugo): fix it
Browse files Browse the repository at this point in the history
  • Loading branch information
narugo1992 committed Jan 26, 2024
1 parent 05e5033 commit bafb631
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdeval/fidelity/ccip.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def score(self, images: ImagesTyping, silent: bool = None,

diffs = ccip_batch_differences([*self._features, *_features])
matrix = diffs[:len(self._features), len(self._features):]
seq = (matrix < self._threshold).meax(axis=0)
seq = (matrix < self._threshold).mean(axis=0)
assert seq.shape == (len(_features),)

if mode == 'seq':
Expand Down

0 comments on commit bafb631

Please sign in to comment.