scikit-learn-contrib / DESlib

A Python library for dynamic classifier and ensemble selection
BSD 3-Clause "New" or "Revised" License
479 stars 106 forks source link

Unable to find the information on DES-Logarithmic and DES-Exponential in the references listed #202

Closed jayahm closed 4 years ago

jayahm commented 4 years ago

I was trying to understand the above two methods.

After checking in the references listed in the API Reference's page, I couldn't find the information about these two methods:

1. B. Antosik, M. Kurzynski, New measures of classifier competence – heuristics and application to the design of multiple classifier systems., in: Computer recognition systems 4., 2011, pp. 197–206.
2. T.Woloszynski, M. Kurzynski, A measure of competence based on randomized reference classifier for dynamic ensemble selection, in: International Conference on Pattern Recognition (ICPR), 2010, pp. 4194–4197.

So, where I can read more about the two methods?

Menelau commented 4 years ago

Hello,

You can read more about those two methods in the following paper:

Woloszynski, Tomasz, and Marek Kurzynski. "On a new measure of classifier competence applied to the design of multiclassifier systems." In International Conference on Image Analysis and Processing, pp. 995-1004. Springer, Berlin, Heidelberg, 2009.

I will update the documentation with this paper.

Also, the DES-logarithmic corresponds to Method 1 in the paper you mentioned above:

  1. T.Woloszynski, M. Kurzynski, A measure of competence based on randomized reference classifier for dynamic ensemble selection, in: International Conference on Pattern Recognition (ICPR), 2010, pp. 4194–4197.
jayahm commented 4 years ago

I'll have a look. Thank you.