Skip to content

Commit

Permalink
Trigger workflow action - test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
albertovalerio committed Dec 23, 2023
1 parent 968f5b7 commit 553f76c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/drift_detection.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def get_alibi_features(
beta = 3

fake = {}
fake['imgs'] = [cv2.convertScaleAbs(img, alpha=alpha, beta=beta) for img in data]
fake['imgs'] = [cv2.convertScaleAbs(img, alpha=alpha, beta=beta) for img in samples_test]
fake['grays'] = [cv2.cvtColor(i, cv2.COLOR_BGR2GRAY).flatten() for i in fake['imgs']]
fake['hists'] = [np.histogram(i, 256, [0, 256])[0] for i in fake['grays']]
hists_test = fake['hists']
Expand Down

0 comments on commit 553f76c

Please sign in to comment.