I studied Lime and implemented it in my pytorch model. However, I noticed something strange: As seen in the image, Lime is only using the first probability (of the 5000 generated by default) to generate the graph. I'm confused, why does this happen? Is it correct?
This is the expected behavior. We are showing the model prediction probabilities on the data_row you want to explain. The explanation is supposed to summarize the behavior on the other 4,999 perturbed samples.
I studied Lime and implemented it in my pytorch model. However, I noticed something strange: As seen in the image, Lime is only using the first probability (of the 5000 generated by default) to generate the graph. I'm confused, why does this happen? Is it correct?