-
Notifications
You must be signed in to change notification settings - Fork 0
Added support for error based metrics #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
3e2564b
Added support for error based metrics
Thematiq 504611f
Reorganize package-only const values and configuration enums
Thematiq 349115a
Fix typos
Thematiq f8df442
Fix imports in tests:
Thematiq 61be67d
Register `slow` mark in Pytest
Thematiq File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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,72 +1,4 @@ | ||
| from enum import Enum | ||
|
|
||
| from pymc.distributions import Cauchy, LogNormal, Normal | ||
|
|
||
|
|
||
| class HyperPrior(str, Enum): | ||
| """ | ||
| Hyper Prior distributions for BBT MCMC sampling. | ||
| """ | ||
|
|
||
| LOG_NORMAL = "logNormal" | ||
| LOG_NORMAL_SCALED = "logNormalScaled" | ||
| CAUCHY = "cauchy" | ||
| NORMAL = "normal" | ||
|
|
||
| def _get_pymc_dist(self, scale, name="sigma"): | ||
| match self: | ||
| case HyperPrior.LOG_NORMAL: | ||
| return LogNormal(name, mu=0, sigma=1) | ||
| case HyperPrior.LOG_NORMAL_SCALED: | ||
| return LogNormal(name, mu=0, sigma=scale) | ||
| case HyperPrior.CAUCHY: | ||
| return Cauchy(name, alpha=0, beta=scale) | ||
| case HyperPrior.NORMAL: | ||
| return Normal(name, mu=0, sigma=scale) | ||
| case _: | ||
| raise ValueError(f"Unsupported hyperprior: {self}") | ||
|
|
||
|
|
||
| class ReportedProperty(str, Enum): | ||
| """ | ||
| Enum containing properties that can be reported from BBT results. | ||
| """ | ||
|
|
||
| LEFT_MODEL = "left_model" | ||
| RIGHT_MODEL = "right_model" | ||
| MEDIAN = "median" | ||
| MEAN = "mean" | ||
| HDI_LOW = "hdi_low" | ||
| HDI_HIGH = "hdi_high" | ||
| DELTA = "delta" | ||
| ABOVE_50 = "above_50" | ||
| IN_ROPE = "in_rope" | ||
| WEAK_INTERPRETATION = "weak_interpretation" | ||
| STRONG_INTERPRETATION = "strong_interpretation" | ||
|
|
||
|
|
||
| class TieSolver(str, Enum): | ||
| """ | ||
| Enum containing tie solving strategies. | ||
|
|
||
| ADD - Add 1 win to both players. | ||
| SPREAD - Add 1/2 win to both players. | ||
| FOGET - Ignore the tie. | ||
| DAVIDSON - Use Davidson's method to handle ties. | ||
| """ | ||
|
|
||
| ADD = "add" | ||
| SPREAD = "spread" | ||
| FORGET = "forget" | ||
| DAVIDSON = "davidson" | ||
|
|
||
|
|
||
| DEFAULT_PROPERTIES = ( | ||
| ReportedProperty.MEAN, | ||
| ReportedProperty.DELTA, | ||
| ReportedProperty.ABOVE_50, | ||
| ReportedProperty.IN_ROPE, | ||
| ReportedProperty.WEAK_INTERPRETATION, | ||
| ) | ||
|
|
||
| ALL_PROPERTIES = tuple(ReportedProperty) | ||
| UNNAMED_COLUMNS_WARNING_TEMPLATE = """Some algorithm names are unnamed. This may lead to issues in the win table construction. | ||
| Algorithm names extracted: {algorithms_names} | ||
| Dataset column: {dataset_col} | ||
| """ |
This file contains hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,72 @@ | ||
| from enum import Enum | ||
|
|
||
| from pymc.distributions import Cauchy, LogNormal, Normal | ||
|
|
||
|
|
||
| class HyperPrior(str, Enum): | ||
| """ | ||
| Hyper Prior distributions for BBT MCMC sampling. | ||
| """ | ||
|
|
||
| LOG_NORMAL = "logNormal" | ||
| LOG_NORMAL_SCALED = "logNormalScaled" | ||
| CAUCHY = "cauchy" | ||
| NORMAL = "normal" | ||
|
|
||
| def _get_pymc_dist(self, scale, name="sigma"): | ||
| match self: | ||
| case HyperPrior.LOG_NORMAL: | ||
| return LogNormal(name, mu=0, sigma=1) | ||
| case HyperPrior.LOG_NORMAL_SCALED: | ||
| return LogNormal(name, mu=0, sigma=scale) | ||
| case HyperPrior.CAUCHY: | ||
| return Cauchy(name, alpha=0, beta=scale) | ||
| case HyperPrior.NORMAL: | ||
| return Normal(name, mu=0, sigma=scale) | ||
| case _: | ||
| raise ValueError(f"Unsupported hyperprior: {self}") | ||
|
|
||
|
|
||
| class ReportedProperty(str, Enum): | ||
| """ | ||
| Enum containing properties that can be reported from BBT results. | ||
| """ | ||
|
|
||
| LEFT_MODEL = "left_model" | ||
| RIGHT_MODEL = "right_model" | ||
| MEDIAN = "median" | ||
| MEAN = "mean" | ||
| HDI_LOW = "hdi_low" | ||
| HDI_HIGH = "hdi_high" | ||
| DELTA = "delta" | ||
| ABOVE_50 = "above_50" | ||
| IN_ROPE = "in_rope" | ||
| WEAK_INTERPRETATION = "weak_interpretation" | ||
| STRONG_INTERPRETATION = "strong_interpretation" | ||
|
|
||
|
|
||
| class TieSolver(str, Enum): | ||
| """ | ||
| Enum containing tie solving strategies. | ||
|
|
||
| ADD - Add 1 win to both players. | ||
| SPREAD - Add 1/2 win to both players. | ||
| FOGET - Ignore the tie. | ||
| DAVIDSON - Use Davidson's method to handle ties. | ||
| """ | ||
|
|
||
| ADD = "add" | ||
| SPREAD = "spread" | ||
| FORGET = "forget" | ||
| DAVIDSON = "davidson" | ||
|
|
||
|
|
||
| DEFAULT_PROPERTIES = ( | ||
| ReportedProperty.MEAN, | ||
| ReportedProperty.DELTA, | ||
| ReportedProperty.ABOVE_50, | ||
| ReportedProperty.IN_ROPE, | ||
| ReportedProperty.WEAK_INTERPRETATION, | ||
| ) | ||
|
|
||
| ALL_PROPERTIES = tuple(ReportedProperty) |
This file contains hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.