From 33a21db52cbefac545deea82a3ccd7b47f1a733f Mon Sep 17 00:00:00 2001 From: Alex Moreo Date: Thu, 9 Feb 2023 19:43:24 +0100 Subject: [PATCH] more examples, one-vs-all fixed --- quapy/CHANGE_LOG.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/quapy/CHANGE_LOG.txt b/quapy/CHANGE_LOG.txt index cb10202..4b14d14 100644 --- a/quapy/CHANGE_LOG.txt +++ b/quapy/CHANGE_LOG.txt @@ -76,11 +76,15 @@ Change Log 0.1.7 so that probabilistic classifiers return posterior probabilities, while non-probabilistic quantifiers return crisp decisions. +- OneVsAll fixed. There are now two classes: a generic one OneVsAllGeneric that works with any quantifier (e.g., + any instance of BaseQuantifier), and a subclass of it called OneVsAllAggregative which implements the + classify / aggregate interface. Both are instances of OneVsAll. There is a method getOneVsAll that returns the + best instance based on the type of quantifier. + Things to fix: -------------- - update unit tests - update Wikis... -- Resolve the OneVsAll thing (it is in base.py and in aggregative.py) - improve plots - documentation of protocols is incomplete