regression methods clustering methods then LIME Method

asiddiq
asiddiq New Altair Community Member
edited November 5 in Community Q&A
I need to get an example of how to Design regression methods with some clustering methods than using Local Interpretation (LIME)?

Best Answers

  • hbajpai
    hbajpai New Altair Community Member
    Answer ✓
    @asiddiq
    Are you trying to use regression clustering together for predictions ? This can achieved by utilizing Hierarchical classification, wherein a clustering algorithm breaks your data into clusters and you have regression models for each clusters. Thus, ensuring different sets of data have different models.
    For model interpretability, you can use Explain Predictions as @mschmitz suggested, the operator can suggest global variable importance and impact on model base output, as well as, local results of attributes supporting and contradicting the model output for every row. You can also check out SHAP in python, which is a game theory based model explanation package. 

Answers

  • asiddiq
    asiddiq New Altair Community Member
    I will try multiple algorithms to test the best  one in my prediction model as well as using Local Interpretation (LIME) in the end to explain the outputs 
  • hbajpai
    hbajpai New Altair Community Member
    Answer ✓
    @asiddiq
    Are you trying to use regression clustering together for predictions ? This can achieved by utilizing Hierarchical classification, wherein a clustering algorithm breaks your data into clusters and you have regression models for each clusters. Thus, ensuring different sets of data have different models.
    For model interpretability, you can use Explain Predictions as @mschmitz suggested, the operator can suggest global variable importance and impact on model base output, as well as, local results of attributes supporting and contradicting the model output for every row. You can also check out SHAP in python, which is a game theory based model explanation package.