2

Is there any way to perform chain classification in multi-label classification problem. I have created a binary relevance model using mlr package which uses learners to achieve the same. But all the classification models in binary relevance are independent of each other and does not take into consideration the inter-dependencies of variables. It would be really helpful if I can perform chain classification along with binary relevance method to improve my model.

  • The wrappers in mlr don't allow you to do this directly, but there is a [ChainModel](https://github.com/mlr-org/mlr/blob/master/R/ChainModel.R) that you can use for this purpose. – Lars Kotthoff May 23 '16 at 20:08

1 Answers1

1

We have multilabel classification with other algorithms like Classifier Chains now available in mlr, checkout the updated tutorial: http://mlr-org.github.io/mlr-tutorial/release/html/multilabel/index.html

PhilippPro
  • 659
  • 4
  • 12
  • Whilst this may theoretically answer the question, [it would be preferable](//meta.stackoverflow.com/q/8259) to include the essential parts of the answer here, and provide the link for reference. – OneCricketeer Oct 12 '16 at 17:10