-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #64 from deepskies/revert-63-two_sample_test
Revert "Plotting and Metric for Local classifier 2 sample test"
- Loading branch information
Showing
16 changed files
with
211 additions
and
459 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
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
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
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
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,7 +1,4 @@ | ||
from metrics.all_sbc import AllSBC | ||
from metrics.coverage_fraction import CoverageFraction | ||
from metrics.local_two_sample import LocalTwoSampleTest | ||
|
||
|
||
_all = [CoverageFraction, AllSBC, LocalTwoSampleTest] | ||
Metrics = {m.__name__: m for m in _all} | ||
Metrics = {CoverageFraction.__name__: CoverageFraction, AllSBC.__name__: AllSBC} |
This file was deleted.
Oops, something went wrong.
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
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,8 +1,11 @@ | ||
from plots.cdf_ranks import CDFRanks | ||
from plots.coverage_fraction import CoverageFraction | ||
from plots.ranks import Ranks | ||
from plots.local_two_sample import LocalTwoSampleTest | ||
from plots.tarp import TARP | ||
|
||
_all = [CoverageFraction, CDFRanks, Ranks, LocalTwoSampleTest, TARP] | ||
Plots = {m.__name__: m for m in _all} | ||
Plots = { | ||
CDFRanks.__name__: CDFRanks, | ||
CoverageFraction.__name__: CoverageFraction, | ||
Ranks.__name__: Ranks, | ||
TARP.__name__: TARP, | ||
} |
Oops, something went wrong.