Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mention taylor series? #101

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion vignettes/Understanding_lime.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ efficiently understand the output it produces.
Behind the workings of lime lies the (big) assumption that every complex model
is linear on a local scale. While this is not justified in the paper it is not
difficult to convince yourself that this is generally sound — you usually expect
two very similar observations to behave predictably even in a complex model.
two very similar observations to behave predictably even in a complex model (this is basically what we'd expect when assuming the [taylor series](https://en.wikipedia.org/wiki/Taylor_series) around the observation of interest is good enough with just the first order approximation).
`lime` then takes this assumption to its natural conclusion by asserting that it
is possible to fit a simple model around a single observation that will mimic
how the global model behaves at that locality. The simple model can then be used
Expand Down