-
-
Notifications
You must be signed in to change notification settings - Fork 1k
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
[ENH] Calibration plot (add performance curves) and a new Calibrated Learner widget #3881
Merged
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
35a6f4b
Calibration plot: Add plots of ca, sens/spec, prec/recall, ppv/npv
janezd 2fa1750
Calibration plot: Add threshold line
janezd d47b68b
Calibration plot: Refactor computation of metrics
janezd 585feb2
Testing: Keep 2d array of models when splitting Results by models
janezd 7b876e6
Test Learners: Store models when there is just one; properly stack them
janezd 93b7a72
classification: Add ModelWithThreshold
janezd ff67b49
Calibration plot: Output selected model
janezd a4424fb
Orange.evaluation.performance_curves: Add module for computation of p…
janezd 6024897
Calibration plot: Use Orange.evaluation.testing.performance_curves to…
janezd 1cfbeec
Calibration plot: Fix selected model output
janezd f742ff9
OWLearnerWidget: Let default name appear as placeholder. This allows …
janezd c5d070d
evaluations.testing: Minor fixes in unit tests
janezd 557fa2e
OWTestLearners: Skip inactive signals (e.g. learner widget outputs None)
janezd 1a8b013
Calibrated Learner: Add widget
janezd 6ac1db1
Calibration plot: Add context settings
janezd 2edcb39
OWCalibration Plot: Unit tests and some fixes
janezd 2049afa
Calibration plot: Test missing probabilities and single classes
janezd 04d05f4
Calibration plot: Minor fixes
janezd 6695ee9
Calibrated Learner: Fix report
janezd 65c69e2
Calibrated Learner: Add icon
janezd 864d7b5
Calibration plot: Nicer report
janezd 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 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 believe this was a bug because it changed self.models from 2d to 1d array. Apparently nobody needed this so far.