-
Notifications
You must be signed in to change notification settings - Fork 4
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
90 average calibration functions in utils.jl #97
Closed
+384
−7
Closed
Changes from 1 commit
Commits
Show all changes
48 commits
Select commit
Hold shift + click to select a range
733312a
function empirical_frequency
pasq-cat 25ea642
fixed the docstring.
pasq-cat c290ed8
added sharpness and binary classification. i have yet to test them pr…
pasq-cat 4ff22f4
added trapz to the list of dependencies.
pasq-cat 6a22210
added Distributions to theproject
pasq-cat df3d60d
working version
pasq-cat 09f25e8
ops forgot to add sharpness for the classification case
pasq-cat 07b318f
working release.. changed changelog, glm_predictive_distribution, pr…
pasq-cat eafa7bd
function empirical_frequency
pasq-cat f66e08e
fixed the docstring.
pasq-cat 5355281
added sharpness and binary classification. i have yet to test them pr…
pasq-cat 2efaa99
added trapz to the list of dependencies.
pasq-cat 26643ee
added Distributions to theproject
pasq-cat b79ca39
working version
pasq-cat 0d71736
ops forgot to add sharpness for the classification case
pasq-cat 5f772cf
working release.. changed changelog, glm_predictive_distribution, pr…
pasq-cat d146d1d
Merge branch '90-average-calibration-in-utilsjl' of https://github.co…
pasq-cat 7af9378
changed docstrings in predicting.jl
pasq-cat 2c42236
fixed glm_predictive_distribution
pasq-cat 9d67ddc
Update src/utils.jl
pasq-cat 9f07583
Update src/utils.jl
pasq-cat f81d226
Update src/utils.jl
pasq-cat 6cdc503
Update src/baselaplace/predicting.jl
pasq-cat 89bb19b
Update src/baselaplace/predicting.jl
pasq-cat 6fe01a2
JuliaFormatter
pasq-cat 0bba488
fixed docstrings
pasq-cat 8311de3
made docstrings a lil bit shorter
pasq-cat 7837333
docstrings again (added output)
pasq-cat b0518b2
fixed binary classification case, exported function from utils.
pasq-cat 6a9ee1b
juliaformatter
pasq-cat 203513d
add n_bins as argument to functions
pasq-cat dce9bdb
ops forgot default value
pasq-cat b906c3b
ops forgot default value and removed a line
pasq-cat 2059bed
Merge branch '90-average-calibration-in-utilsjl' of https://github.co…
pasq-cat 3258618
juliaformatter----
pasq-cat c86dc25
fixed small error in pred_avg
pasq-cat 3d2ebd6
fixed error in empirical_frequency_regression
pasq-cat 4ab04f6
Update src/utils.jl
pasq-cat 267b8f4
docstrings fixes and predict update
pasq-cat d188daf
fixed typos
pasq-cat 270b70a
moved sharpness functions units tests in calibration.jl. changed run…
pasq-cat 3320063
more sharpness unit tests
pasq-cat 3750dbe
fixes and more unit tests
pasq-cat 39d4bdc
small stuff
pasq-cat 56c3b66
fix. there is still an issue with the shape of the input to use.
pasq-cat 908c804
fixed logit.md ,moved functions to new file, removed changes to predi…
pasq-cat f468803
removed calibration_plots.md
pasq-cat 459b2fe
test plot
pasq-cat 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
working version
commit b79ca39273a9c11ab41656d4f208cbd38e172136
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,3 +1,4 @@ | ||
using Distributions | ||
""" | ||
functional_variance(la::AbstractLaplace, 𝐉::AbstractArray) | ||
|
||
|
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
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.
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.
I guess we could just keep this consistent and return everything in both cases?
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.
Edit: my bad, let's indeed as discussed just add an option for classification to return distribution. By default, we should still return probabilities for now, but at least we give the option and add that to the docstring.