Skip to content

Commit

Permalink
add aloo test
Browse files Browse the repository at this point in the history
  • Loading branch information
pierrenodet committed Feb 21, 2025
1 parent 109e95a commit b9f6585
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/test_detect.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
from mislabeled.aggregate import oob, sum
from mislabeled.detect import ModelProbingDetector
from mislabeled.detect.detectors import (
ALOODetector,
AreaUnderMargin,
Classifier,
ConfidentLearning,
Expand Down Expand Up @@ -165,6 +166,12 @@ def simple_detect_test(n_classes, detector):
)
),
VoLG(MLPClassifier(random_state=seed)),
ALOODetector(
make_pipeline(
Nystroem(gamma=0.1, n_components=100, random_state=seed),
LogisticRegression(random_state=seed, C=10),
)
),
]


Expand Down

0 comments on commit b9f6585

Please sign in to comment.