Categories

Models Explainable

  • Shapley Values

    I already read a lot of articles about Shapley Values, but none of them make me feel easy to understand, that is why I decided to write this article. I hope this article can help you have another way to understand this value.

    So, what is Shapley Value? It’s a value representing the contribution of each person in a cooperative...


Data analyst


Deep learning , Neural network

  • Linear Regression

    Regression is a set of methods for estimating the relationships between a outcome variable and features.

    When our input consist of d features, we express our prediction $\hat{y}$ as \(\hat{y} = w_1 x_1 + ... + w_d x_d + b\)

    Collecting all features into a vector $\mathbf{x} \in \mathbb{R}^d$ and all weights into a vector $\mathbf{w}...