SHAP values for beginners | What they mean and their applications

  Рет қаралды 40,003

A Data Odyssey

A Data Odyssey

Жыл бұрын

SHAP is the most powerful Python package for understanding and debugging your machine-learning models. We learn to interpret SHAP values for both continuous and binary target variables. We also explore the applications of SHAP. This includes debugging models, providing human-friendly
explanations and data exploration.
NOTE: SHAP course is no longer free but you will still get the XAI course for free :)
SHAP course: adataodyssey.com/courses/shap...
XAI course: adataodyssey.com/courses/xai-...
Newsletter signup: mailchi.mp/40909011987b/signup
Using SHAP to Debug a PyTorch Image Regression Model (no-paywall link): towardsdatascience.com/using-...
Medium: / conorosullyds
Twitter: / conorosullyds
Mastodon: sigmoid.social/@conorosully
Website: adataodyssey.com/

Пікірлер: 43
@adataodyssey
@adataodyssey 4 ай бұрын
NOTE: SHAP course is no longer free but you will still get the XAI course for free :) SHAP course: adataodyssey.com/courses/shap-with-python/ XAI course: adataodyssey.com/courses/xai-with-python/ Newsletter signup: mailchi.mp/40909011987b/signup
@lakshman587
@lakshman587 7 ай бұрын
This is a very clear video about shap!!
@innocentjoseph9084
@innocentjoseph9084 2 ай бұрын
Excellent explanation, just what I needed. Thank you.
@adataodyssey
@adataodyssey 2 ай бұрын
I’m glad you found it useful, Innocent :)
@RHONSON100
@RHONSON100 7 ай бұрын
wonderful explanation.
@adataodyssey
@adataodyssey 7 ай бұрын
Thank you for the kind comment!
@dantedt3931
@dantedt3931 2 ай бұрын
This is awesome!
@adataodyssey
@adataodyssey 2 ай бұрын
Thanks!
@satk4211
@satk4211 2 ай бұрын
Excellent video ❤❤❤❤❤❤
@adataodyssey
@adataodyssey 2 ай бұрын
Thank you ☺️ I’m glad it could help
@aakritiiacharya
@aakritiiacharya 6 ай бұрын
Hey Amazing explanation , I wanted to know more about the interpretation of SHAP Summary plot in terms of Survial Analysis
@adataodyssey
@adataodyssey 6 ай бұрын
Thanks Aakriti! I don't know anything about survival analysis I'm afraid... If you are building models using well know packages (e.g. sklearn, XGBoost) then you should be able to use SHAP. I have this video on the more technical coding details. Let me know if that helps! kzbin.info/www/bejne/gmnCpImInad3grc
@fouried96
@fouried96 3 ай бұрын
Love to see a fellow South African in this line of work!
@adataodyssey
@adataodyssey 3 ай бұрын
Howzit! Will keep the videos coming :)
@fouried96
@fouried96 3 ай бұрын
@@adataodyssey Sweet! I followed you on linkedin for any other posts outside of KZbin. I was just curious, how does Ireland's grading system work for masters, I see you have a 1.1. I have no idea what that means having only studied in SA lol :P
@adataodyssey
@adataodyssey 3 ай бұрын
@@fouried96 that's 75% or above. They don't distinguish beyond that. The Irish are not so big on grading :D
@fouried96
@fouried96 3 ай бұрын
@@adataodysseyCongrats! I am busy following this SHAP series. I'm looking to find the best features for this kaggle comp for a multiclass classification problem where I'm using XGBoost. I was wondering, are you on Kaggle?
@hasnainayub2369
@hasnainayub2369 3 ай бұрын
Very well explained! I have a question regarding SHAP dependency plots. On the right-Y axis, SHAP selects a particular interacting feature by default and I know we can manually change the interacting feature. Does the default selection by SHAP explainer tell us that that particular feature is the feature that interacts with the main feature the MOST as compared to other features? In other words, can we say that the main feature depends on (or interact with) the default interacting feature while making predictions?
@adataodyssey
@adataodyssey 3 ай бұрын
Yes, I wasn't aware of this but it seems like it is true: shap-lrjball.readthedocs.io/en/latest/example_notebooks/plots/dependence_plot.html
@statistikochspss-hjalpen8335
@statistikochspss-hjalpen8335 7 ай бұрын
Does it have to be about prediction? I just want to understand which features/independent variables are most important when my independent variables are highly correlated. I've heard people talking about "contribution".
@adataodyssey
@adataodyssey 7 ай бұрын
No, you can also interpret a model used for analysis. In ML, when we say "prediction" we mean the output of the model. We use this term even if we are not trying to predict the future.
@user-nf2zo3yt8j
@user-nf2zo3yt8j 5 ай бұрын
If I have one hot encoded on the categorical values, How should I know which main features are contributing ?
@adataodyssey
@adataodyssey 5 ай бұрын
This is a great question! You have two options (see the articles below). Either you can add up the SHAP values for the individual one-hot encodings or use CatBoost. I also go over these concepts in more detail in my course. towardsdatascience.com/shap-for-categorical-features-7c63e6a554ea?sk=2eca9ff9d28d1c8bfde82f6784bdba19 towardsdatascience.com/shap-for-categorical-features-with-catboost-8315e14dac1?sk=ef720159150a19b111d8740ab0bbac6d
@aneesha123able
@aneesha123able Жыл бұрын
👏
@mahdihabibi6382
@mahdihabibi6382 5 ай бұрын
How can we determine which interpretable models are appropriate for our deep learning models? For example, I have a CNN model for Malaria prediction, however, I am unsure whether LIME or SHAP is a better tool for interpreting my model. Could you please guide me through this situation?
@adataodyssey
@adataodyssey 4 ай бұрын
For deep learning, you might want to look into a model specific method such as gradcam. Are you using images or tabular data? If you are using tabular data, I would change the model to XGBoost or random forest. Then use both LIME and SHAP. There are also other methods like ALEs, PDPs, ICE Plots and Freedman's H-statistic. It is also a good idea to use multiple methods.
@mahdihabibi6382
@mahdihabibi6382 4 ай бұрын
Thank you for your reply. @@adataodyssey
@youtubeuser4878
@youtubeuser4878 Ай бұрын
Hello. Thanks for the tutorial. Regarding your XAI and SHAP courses, is there an order to how we should take the courses. Should we take the XAI before SHAP or vice versa. Thanks
@adataodyssey
@adataodyssey Ай бұрын
No problem! It is better to take XAI first then SHAP. XAI covers more of the basics in the field and other useful model agnostic methods. But the SHAP course still gives some basics so it is not necessary to do the entire XAI course (or even any of it) if all you care about it learning SHAP :)
@youtubeuser4878
@youtubeuser4878 Ай бұрын
@@adataodysseyAwesome. Thank you.
@keenanosullivan305
@keenanosullivan305 Жыл бұрын
Shap means something a little different in South Africa. Love the content though👍🏼
@adataodyssey
@adataodyssey Жыл бұрын
Haha shap shap bra!
@teguhprasetyo7505
@teguhprasetyo7505 4 ай бұрын
Can this method be applied in multilabel classification?
@adataodyssey
@adataodyssey 4 ай бұрын
Yes! I have a video on this exact topic: kzbin.info/www/bejne/aKnPmIKrZ5eMnac&lc=UgwSqpAiiG_ho6hDqDd4AaABAg
@shubhanshisinghms7745
@shubhanshisinghms7745 Ай бұрын
Can you make a video on how recruitment decision is made?
@adataodyssey
@adataodyssey 27 күн бұрын
Do you mean how automated decisions are made or decisions for data scientists in general?
@weii321
@weii321 9 ай бұрын
Can shap value used for feature selection?
@adataodyssey
@adataodyssey 9 ай бұрын
Yes! You can use the mean SHAP plot. I discuss it in this video: kzbin.info/www/bejne/gmnCpImInad3grc
@weii321
@weii321 9 ай бұрын
@@adataodyssey Thank you for your answer. I have another question, what is the difference between using SHAP values compared to using feature importance for feature selection? Does using SHAP values improve the model's performance more?
@keivansamani3437
@keivansamani3437 5 ай бұрын
I want to be able to understand how the features affect the predictions along a 2D curve where the points are sequential, but it seems SHAP is only useful when there’s a single prediction not a curve :(
@adataodyssey
@adataodyssey 4 ай бұрын
You could try using PDPs or ICE Plots for this. Or aggregate SHAP values using a dependence plot
@fupopanda
@fupopanda 12 күн бұрын
Jumping between what you are explaining and yourself is distracting
@adataodyssey
@adataodyssey 11 күн бұрын
Thanks for the feedback!
SHAP with Python (Code and Explanations)
15:41
A Data Odyssey
Рет қаралды 48 М.
The mathematics behind Shapley Values
11:48
A Data Odyssey
Рет қаралды 20 М.
They RUINED Everything! 😢
00:31
Carter Sharer
Рет қаралды 21 МЛН
когда достали одноклассники!
00:49
БРУНО
Рет қаралды 4,3 МЛН
Заметили?
00:11
Double Bubble
Рет қаралды 3,5 МЛН
2000000❤️⚽️#shorts #thankyou
00:20
あしざるFC
Рет қаралды 12 МЛН
What is Explainable AI?
7:30
IBM Technology
Рет қаралды 30 М.
Interpretable Machine Learning - Introduction - Feature Interactions
9:16
Statistical Learning and Data Science
Рет қаралды 514
Shapley Values for Machine Learning
11:06
A Data Odyssey
Рет қаралды 11 М.
Shapley Additive Explanations (SHAP)
11:52
KIE
Рет қаралды 59 М.
ROC and AUC, Clearly Explained!
16:17
StatQuest with Josh Starmer
Рет қаралды 1,4 МЛН
How SHAP value is calculated? It is not hard! (simple example)
16:41
Data Science Garage
Рет қаралды 11 М.
They RUINED Everything! 😢
00:31
Carter Sharer
Рет қаралды 21 МЛН