-
Notifications
You must be signed in to change notification settings - Fork 12
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
bumped version and compat entries #85
Conversation
Codecov Report
❗ Your organization is not using the GitHub App Integration. As a result you may experience degraded service beginning May 15th. Please install the Github App Integration for your organization. Read more. @@ Coverage Diff @@
## main #85 +/- ##
==========================================
- Coverage 83.81% 75.59% -8.22%
==========================================
Files 15 21 +6
Lines 803 877 +74
==========================================
- Hits 673 663 -10
- Misses 130 214 +84
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
src/conformal_models/heuristics.jl
Outdated
|
||
Computes `1.0 - ŷ` where `ŷ` is the softmax output for a given class. | ||
""" | ||
minus_softmax(y,ŷ) = 1.0 - ŷ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[JuliaFormatter] reported by reviewdog 🐶
minus_softmax(y,ŷ) = 1.0 - ŷ | |
minus_softmax(y, ŷ) = 1.0 - ŷ |
src/conformal_models/heuristics.jl
Outdated
|
||
Computes `abs(y - ŷ)` where `ŷ` is the predicted value. | ||
""" | ||
absolute_error(y,ŷ) = abs(y - ŷ) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[JuliaFormatter] reported by reviewdog 🐶
absolute_error(y,ŷ) = abs(y - ŷ) | |
absolute_error(y, ŷ) = abs(y - ŷ) |
model::Supervised; | ||
coverage::AbstractFloat=0.95, | ||
heuristic::Function=f(y, ŷ) = abs(y - ŷ), | ||
heuristic::Function=absolute_error, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[JuliaFormatter] reported by reviewdog 🐶
model::Supervised; | |
coverage::AbstractFloat=0.95, | |
heuristic::Function=f(y, ŷ) = abs(y - ŷ), | |
heuristic::Function=absolute_error, | |
model::Supervised; coverage::AbstractFloat=0.95, heuristic::Function=absolute_error |
model::Supervised; | ||
coverage::AbstractFloat=0.95, | ||
heuristic::Function=f(y, ŷ) = abs(y - ŷ), | ||
heuristic::Function=absolute_error, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[JuliaFormatter] reported by reviewdog 🐶
model::Supervised; | |
coverage::AbstractFloat=0.95, | |
heuristic::Function=f(y, ŷ) = abs(y - ŷ), | |
heuristic::Function=absolute_error, | |
model::Supervised; coverage::AbstractFloat=0.95, heuristic::Function=absolute_error |
model::Supervised; | ||
coverage::AbstractFloat=0.95, | ||
heuristic::Function=f(y, ŷ) = abs(y - ŷ), | ||
heuristic::Function=absolute_error, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[JuliaFormatter] reported by reviewdog 🐶
model::Supervised; | |
coverage::AbstractFloat=0.95, | |
heuristic::Function=f(y, ŷ) = abs(y - ŷ), | |
heuristic::Function=absolute_error, | |
model::Supervised; coverage::AbstractFloat=0.95, heuristic::Function=absolute_error |
model::Supervised; | ||
coverage::AbstractFloat=0.95, | ||
heuristic::Function=f(y, ŷ) = abs(y - ŷ), | ||
heuristic::Function=absolute_error, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[JuliaFormatter] reported by reviewdog 🐶
model::Supervised; | |
coverage::AbstractFloat=0.95, | |
heuristic::Function=f(y, ŷ) = abs(y - ŷ), | |
heuristic::Function=absolute_error, | |
model::Supervised; coverage::AbstractFloat=0.95, heuristic::Function=absolute_error |
No description provided.