Changeset 13:f98f0417ceb6 in orange-reliability
- Timestamp:
- 07/11/12 20:58:41 (11 months ago)
- Branch:
- default
- Files:
-
- 2 edited
-
_reliability/__init__.py (modified) (1 diff)
-
docs/rst/Orange.evaluation.reliability.rst (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
_reliability/__init__.py
r12 r13 383 383 384 384 class ReferenceExpectedError: 385 385 """ 386 387 :rtype: :class:`Orange.evaluation.reliability.ReferenceExpectedErrorClassifier` 388 389 Reference reliability estimation method for classification as used in Evaluating Reliability of Single 390 Classifications of Neural Networks, Darko Pevec, 2011. 391 392 :math:`O_{ref} = 2 (\hat y - \hat y ^2) = 2 \hat y (1-\hat y)` 393 394 where :math:`\hat y` is the estimated probability of the predicted class. 395 396 Note that for this method, in contrast with all others, a greater estimate means lower reliability (greater 397 expected error). 398 399 """ 386 400 def __init__(self, name="reference"): 387 401 self.name = name -
docs/rst/Orange.evaluation.reliability.rst
r5 r13 10 10 ########################################################## 11 11 12 ************************************* 13 Reliability Estimation for Regression 14 ************************************* 12 ******************************************************** 13 Reliability Estimation for Regression and Classification 14 ******************************************************** 15 15 16 16 Reliability assessment statistically predicts reliability of single … … 49 49 =================== 50 50 51 For regression, all the described measures can be used . Classification domains52 are supported by the following methods: BAGV, LCV, CNK and DENS .51 For regression, all the described measures can be used, except for the :math:`O_{ref}`. Classification domains 52 are supported by the following methods: BAGV, LCV, CNK and DENS, :math:`O_{ref}`. 53 53 54 54 Sensitivity Analysis (SAvar and SAbias) … … 87 87 88 88 .. autoclass:: ParzenWindowDensityBased 89 90 Reference Estimate for Classification (:math:`O_{ref}`) 91 ------------------------------------------------------- 92 93 .. autoclass:: ReferenceExpectedError 89 94 90 95 Reliability estimation wrappers
Note: See TracChangeset
for help on using the changeset viewer.
