Orange: Calibrated Learner: Difference between revisions

From OnnoCenterWiki
Jump to navigationJump to search
Onnowpurbo (talk | contribs)
No edit summary
Onnowpurbo (talk | contribs)
No edit summary
Line 3: Line 3:
Wraps another learner with probability calibration and decision threshold optimization.
Wraps another learner with probability calibration and decision threshold optimization.


Inputs
==Input==


    Data: input dataset
Data: input dataset
    Preprocessor: preprocessing method(s)
Preprocessor: preprocessing method(s)
    Base Learner: learner to calibrate
Base Learner: learner to calibrate


Outputs
==Output==


    Learner: calibrated learning algorithm
Learner: calibrated learning algorithm
    Model: trained model using the calibrated learner
Model: trained model using the calibrated learner


This learner produces a model that calibrates the distribution of class probabilities and optimizes decision threshold. The widget works only for binary classification tasks.
This learner produces a model that calibrates the distribution of class probabilities and optimizes decision threshold. The widget works only for binary classification tasks.
Line 19: Line 19:




    The name under which it will appear in other widgets. Default name is composed of the learner, calibration and optimization parameters.
* The name under which it will appear in other widgets. Default name is composed of the learner, calibration and optimization parameters.
* Probability calibration:
** Sigmoid calibration
** Isotonic calibration
** No calibration


    Probability calibration:
* Decision threshold optimization:
        Sigmoid calibration
** Optimize classification accuracy
        Isotonic calibration
** Optimize F1 score
        No calibration
** No threshold optimization


    Decision threshold optimization:
* Press Apply to commit changes. If Apply Automatically is ticked, changes are committed automatically.
        Optimize classification accuracy
        Optimize F1 score
        No threshold optimization
 
    Press Apply to commit changes. If Apply Automatically is ticked, changes are committed automatically.


==Contoh==
==Contoh==

Revision as of 03:31, 28 January 2020

Sumber: https://docs.biolab.si//3/visual-programming/widgets/model/calibratedlearner.html

Wraps another learner with probability calibration and decision threshold optimization.

Input

Data: input dataset
Preprocessor: preprocessing method(s)
Base Learner: learner to calibrate

Output

Learner: calibrated learning algorithm
Model: trained model using the calibrated learner

This learner produces a model that calibrates the distribution of class probabilities and optimizes decision threshold. The widget works only for binary classification tasks.


  • The name under which it will appear in other widgets. Default name is composed of the learner, calibration and optimization parameters.
  • Probability calibration:
    • Sigmoid calibration
    • Isotonic calibration
    • No calibration
  • Decision threshold optimization:
    • Optimize classification accuracy
    • Optimize F1 score
    • No threshold optimization
  • Press Apply to commit changes. If Apply Automatically is ticked, changes are committed automatically.

Contoh

A simple example with Calibrated Learner. We are using the titanic data set as the widget requires binary class values (in this case they are ‘survived’ and ‘not survived’).

We will use Logistic Regression as the base learner which will we calibrate with the default settings, that is with sigmoid optimization of distribution values and by optimizing the CA.

Comparing the results with the uncalibrated Logistic Regression model we see that the calibrated model performs better.


Referensi

Pranala Menarik