-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5786d6a
commit e3a3df1
Showing
1 changed file
with
5 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
# Author: Yanis Lalou <[email protected]> | ||
# Ambroise Odonnat <[email protected]> | ||
# | ||
# License: BSD 3-Clause | ||
|
||
|
@@ -16,6 +17,7 @@ | |
CircularValidation, | ||
DeepEmbeddedValidation, | ||
ImportanceWeightedScorer, | ||
MaNoScorer, | ||
MixValScorer, | ||
PredictionEntropyScorer, | ||
SoftNeighborhoodDensity, | ||
|
@@ -29,6 +31,7 @@ | |
PredictionEntropyScorer(), | ||
SoftNeighborhoodDensity(), | ||
CircularValidation(), | ||
MaNoScorer(), | ||
MixValScorer(), | ||
ImportanceWeightedScorer(), | ||
], | ||
|
@@ -66,6 +69,7 @@ def test_generic_scorer_on_deepmodel(scorer, da_dataset): | |
PredictionEntropyScorer(), | ||
SoftNeighborhoodDensity(), | ||
DeepEmbeddedValidation(), | ||
MaNoScorer(), | ||
], | ||
) | ||
def test_generic_scorer(scorer, da_dataset): | ||
|
@@ -101,6 +105,7 @@ def test_generic_scorer(scorer, da_dataset): | |
[ | ||
DeepEmbeddedValidation(), | ||
ImportanceWeightedScorer(), | ||
MaNoScorer(), | ||
], | ||
) | ||
def test_scorer_with_nd_features(scorer, da_dataset): | ||
|