UNPKG
webshap
Version:
latest (0.1.4)
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
Explain any ML models anywhere
github.com/xiaohk/webshap
xiaohk/webshap
webshap
/
src
/
my-types.ts
5 lines
(4 loc)
•
133 B
text/typescript
View Raw
1
2
3
4
5
/** * A model that outputs a 1D vector (binary classification, regression) */
export
type
SHAPModel
=
(
x
:
number
[][]
) =>
number
[];