damianhorna / multi-imbalance

Python package for tackling multi-class imbalance problems. http://www.cs.put.poznan.pl/mlango/publications/multiimbalance/
MIT License
77 stars 10 forks source link

Understanding the ECOC algorithm #81

Open arilwan opened 2 years ago

arilwan commented 2 years ago

This is not an issue but a question (not sure how to tag it as question). a. Can you explain how the ECOC class works please? For example, generating the codeword matrix in _gen_code_matrix which invokes the _encode_dense method. b. What the meaning of the __file__ variable passed to os.path.dirname in _encode_dense? c. How is the codeword length chosen? d. Suppose I decide using other algorithm (e.g. Logistic Regression, MLP, etc) as the base learner, how could this be done?