Skip to content
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

Merged
merged 4 commits into from
Aug 23, 2023

Conversation

pat-alt
Copy link
Member

@pat-alt pat-alt commented Aug 23, 2023

No description provided.

@codecov-commenter
Copy link

codecov-commenter commented Aug 23, 2023

Codecov Report

Merging #85 (b071549) into main (5013ca1) will decrease coverage by 8.22%.
Report is 13 commits behind head on main.
The diff coverage is 4.30%.

❗ 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     
Files Changed Coverage Δ
src/ConformalPrediction.jl 100.00% <ø> (ø)
...c/conformal_models/ConformalTraining/classifier.jl 0.00% <0.00%> (ø)
...dels/ConformalTraining/inductive_classification.jl 0.00% <0.00%> (ø)
...l_models/ConformalTraining/inductive_regression.jl 0.00% <0.00%> (ø)
src/conformal_models/ConformalTraining/losses.jl 0.00% <0.00%> (ø)
...rc/conformal_models/ConformalTraining/regressor.jl 0.00% <0.00%> (ø)
src/conformal_models/ConformalTraining/training.jl 0.00% <0.00%> (ø)
src/conformal_models/conformal_models.jl 92.30% <ø> (ø)
src/conformal_models/inductive_regression.jl 100.00% <ø> (ø)
src/conformal_models/plotting.jl 88.33% <ø> (-0.10%) ⬇️
... and 6 more

📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more


Computes `1.0 - ŷ` where `ŷ` is the softmax output for a given class.
"""
minus_softmax(y,ŷ) = 1.0 - ŷ
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[JuliaFormatter] reported by reviewdog 🐶

Suggested change
minus_softmax(y,ŷ) = 1.0 -
minus_softmax(y, ŷ) = 1.0 -


Computes `abs(y - ŷ)` where `ŷ` is the predicted value.
"""
absolute_error(y,ŷ) = abs(y - ŷ)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[JuliaFormatter] reported by reviewdog 🐶

Suggested change
absolute_error(y,ŷ) = abs(y - ŷ)
absolute_error(y, ŷ) = abs(y - ŷ)

Comment on lines 16 to 18
model::Supervised;
coverage::AbstractFloat=0.95,
heuristic::Function=f(y, ŷ) = abs(y - ŷ),
heuristic::Function=absolute_error,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[JuliaFormatter] reported by reviewdog 🐶

Suggested change
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

Comment on lines 84 to 86
model::Supervised;
coverage::AbstractFloat=0.95,
heuristic::Function=f(y, ŷ) = abs(y - ŷ),
heuristic::Function=absolute_error,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[JuliaFormatter] reported by reviewdog 🐶

Suggested change
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

Comment on lines 166 to 168
model::Supervised;
coverage::AbstractFloat=0.95,
heuristic::Function=f(y, ŷ) = abs(y - ŷ),
heuristic::Function=absolute_error,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[JuliaFormatter] reported by reviewdog 🐶

Suggested change
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

Comment on lines 257 to 259
model::Supervised;
coverage::AbstractFloat=0.95,
heuristic::Function=f(y, ŷ) = abs(y - ŷ),
heuristic::Function=absolute_error,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[JuliaFormatter] reported by reviewdog 🐶

Suggested change
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

@pat-alt pat-alt merged commit e758c2f into main Aug 23, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants