UNPKG
@isbx/webshap
Version:
latest (0.1.4)
0.1.4
Explain any ML models anywhere
github.com/ISBX/webshap
ISBX/webshap
@isbx/webshap
/
dist
/
my-types.d.ts
5 lines
(4 loc)
•
133 B
TypeScript
View Raw
1
2
3
4
5
/** * A model that outputs a 1D vector (binary classification, regression) */
export
type
SHAPModel
=
(
x
:
number
[][]
) =>
number
[];