You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-1Lines changed: 6 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@
8
8
# SLISE - Sparse Linear Subset Explanations
9
9
10
10
Python implementation of the SLISE algorithm. The SLISE algorithm can be used for both robust regression and to explain outcomes from black box models.
11
-
For more details see [the original paper](https://rdcu.be/bVbda) or [the robust regression paper](https://rdcu.be/cFRHD).
11
+
For more details see the [conference paper](https://rdcu.be/bVbda), the [robust regression paper](https://rdcu.be/cFRHD), or the [local explanation paper](https://doi.org/10.3389/fcomp.2023.1143904).
12
12
Alternatively for a more informal overview see [the presentation](https://github.com/edahelsinki/slise/raw/master/vignettes/presentation.pdf), or [the poster](https://github.com/edahelsinki/slise/raw/master/vignettes/poster.pdf).
13
13
Finally, for learning to use the python package there are several [examples](https://github.com/edahelsinki/pyslise/tree/master/examples/) and [the documentation](https://edahelsinki.github.io/pyslise/docs/slise/).
14
14
@@ -23,6 +23,11 @@ Finally, for learning to use the python package there are several [examples](htt
23
23
> Data Mining and Knowledge Discovery.
24
24
> https://doi.org/10.1007/s10618-022-00819-2
25
25
26
+
> *Björklund A., Henelius A., Oikarinen E., Kallonen K., Puolamäki K.* (2023)
27
+
> **Explaining any black box model using real data.**
28
+
> Frontiers in Computer Science 5:1143904.
29
+
> https://doi.org/10.3389/fcomp.2023.1143904
30
+
26
31
## The idea
27
32
28
33
In robust regression we fit regression models that can handle data that contains outliers (see the example below for why outliers are problematic for normal regression). SLISE accomplishes this by fitting a model such that the largest possible subset of the data items have an error less than a given value. All items with an error larger than that are considered potential outliers and do not affect the resulting model.
0 commit comments