@elaraai/east-py-datascience 0.0.2-beta.6 → 0.0.2-beta.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/gp/gp.d.ts +49 -49
- package/dist/gp/gp.d.ts.map +1 -1
- package/dist/gp/gp.js +7 -7
- package/dist/gp/gp.js.map +1 -1
- package/dist/mads/mads.d.ts +33 -33
- package/dist/mads/mads.d.ts.map +1 -1
- package/dist/mads/mads.js +5 -5
- package/dist/mads/mads.js.map +1 -1
- package/dist/ngboost/ngboost.d.ts +35 -35
- package/dist/ngboost/ngboost.d.ts.map +1 -1
- package/dist/ngboost/ngboost.js +3 -3
- package/dist/ngboost/ngboost.js.map +1 -1
- package/dist/shap/shap.d.ts +11 -11
- package/dist/shap/shap.d.ts.map +1 -1
- package/dist/shap/shap.js +3 -3
- package/dist/shap/shap.js.map +1 -1
- package/dist/sklearn/sklearn.d.ts +64 -64
- package/dist/torch/torch.d.ts +234 -121
- package/dist/torch/torch.d.ts.map +1 -1
- package/dist/torch/torch.js +33 -15
- package/dist/torch/torch.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -11,16 +11,16 @@
|
|
|
11
11
|
*
|
|
12
12
|
* @packageDocumentation
|
|
13
13
|
*/
|
|
14
|
-
import { StructType, VariantType, OptionType, IntegerType, FloatType, BlobType } from "@elaraai/east";
|
|
14
|
+
import { StructType, VariantType, OptionType, IntegerType, FloatType, BlobType, NullType } from "@elaraai/east";
|
|
15
15
|
export { VectorType, MatrixType } from "../types.js";
|
|
16
16
|
/**
|
|
17
17
|
* Distribution type for NGBoost.
|
|
18
18
|
*/
|
|
19
19
|
export declare const NGBoostDistributionType: VariantType<{
|
|
20
20
|
/** Normal (Gaussian) distribution */
|
|
21
|
-
normal:
|
|
21
|
+
normal: NullType;
|
|
22
22
|
/** Log-normal distribution (for positive targets) */
|
|
23
|
-
lognormal:
|
|
23
|
+
lognormal: NullType;
|
|
24
24
|
}>;
|
|
25
25
|
/**
|
|
26
26
|
* Configuration for NGBoost models.
|
|
@@ -39,9 +39,9 @@ export declare const NGBoostConfigType: StructType<{
|
|
|
39
39
|
/** Distribution type (default normal) */
|
|
40
40
|
distribution: OptionType<VariantType<{
|
|
41
41
|
/** Normal (Gaussian) distribution */
|
|
42
|
-
normal:
|
|
42
|
+
normal: NullType;
|
|
43
43
|
/** Log-normal distribution (for positive targets) */
|
|
44
|
-
lognormal:
|
|
44
|
+
lognormal: NullType;
|
|
45
45
|
}>>;
|
|
46
46
|
}>;
|
|
47
47
|
/**
|
|
@@ -75,9 +75,9 @@ export declare const NGBoostModelBlobType: VariantType<{
|
|
|
75
75
|
/** Distribution type used */
|
|
76
76
|
distribution: VariantType<{
|
|
77
77
|
/** Normal (Gaussian) distribution */
|
|
78
|
-
normal:
|
|
78
|
+
normal: NullType;
|
|
79
79
|
/** Log-normal distribution (for positive targets) */
|
|
80
|
-
lognormal:
|
|
80
|
+
lognormal: NullType;
|
|
81
81
|
}>;
|
|
82
82
|
/** Number of input features */
|
|
83
83
|
n_features: IntegerType;
|
|
@@ -105,9 +105,9 @@ export declare const ngboost_train_regressor: import("@elaraai/east").PlatformDe
|
|
|
105
105
|
/** Distribution type (default normal) */
|
|
106
106
|
distribution: OptionType<VariantType<{
|
|
107
107
|
/** Normal (Gaussian) distribution */
|
|
108
|
-
normal:
|
|
108
|
+
normal: NullType;
|
|
109
109
|
/** Log-normal distribution (for positive targets) */
|
|
110
|
-
lognormal:
|
|
110
|
+
lognormal: NullType;
|
|
111
111
|
}>>;
|
|
112
112
|
}>], VariantType<{
|
|
113
113
|
/** NGBoost regressor model */
|
|
@@ -117,9 +117,9 @@ export declare const ngboost_train_regressor: import("@elaraai/east").PlatformDe
|
|
|
117
117
|
/** Distribution type used */
|
|
118
118
|
distribution: VariantType<{
|
|
119
119
|
/** Normal (Gaussian) distribution */
|
|
120
|
-
normal:
|
|
120
|
+
normal: NullType;
|
|
121
121
|
/** Log-normal distribution (for positive targets) */
|
|
122
|
-
lognormal:
|
|
122
|
+
lognormal: NullType;
|
|
123
123
|
}>;
|
|
124
124
|
/** Number of input features */
|
|
125
125
|
n_features: IntegerType;
|
|
@@ -140,9 +140,9 @@ export declare const ngboost_predict: import("@elaraai/east").PlatformDefinition
|
|
|
140
140
|
/** Distribution type used */
|
|
141
141
|
distribution: VariantType<{
|
|
142
142
|
/** Normal (Gaussian) distribution */
|
|
143
|
-
normal:
|
|
143
|
+
normal: NullType;
|
|
144
144
|
/** Log-normal distribution (for positive targets) */
|
|
145
|
-
lognormal:
|
|
145
|
+
lognormal: NullType;
|
|
146
146
|
}>;
|
|
147
147
|
/** Number of input features */
|
|
148
148
|
n_features: IntegerType;
|
|
@@ -166,9 +166,9 @@ export declare const ngboost_predict_dist: import("@elaraai/east").PlatformDefin
|
|
|
166
166
|
/** Distribution type used */
|
|
167
167
|
distribution: VariantType<{
|
|
168
168
|
/** Normal (Gaussian) distribution */
|
|
169
|
-
normal:
|
|
169
|
+
normal: NullType;
|
|
170
170
|
/** Log-normal distribution (for positive targets) */
|
|
171
|
-
lognormal:
|
|
171
|
+
lognormal: NullType;
|
|
172
172
|
}>;
|
|
173
173
|
/** Number of input features */
|
|
174
174
|
n_features: IntegerType;
|
|
@@ -197,9 +197,9 @@ export declare const NGBoostTypes: {
|
|
|
197
197
|
/** Distribution type for NGBoost */
|
|
198
198
|
readonly NGBoostDistributionType: VariantType<{
|
|
199
199
|
/** Normal (Gaussian) distribution */
|
|
200
|
-
normal:
|
|
200
|
+
normal: NullType;
|
|
201
201
|
/** Log-normal distribution (for positive targets) */
|
|
202
|
-
lognormal:
|
|
202
|
+
lognormal: NullType;
|
|
203
203
|
}>;
|
|
204
204
|
/** NGBoost configuration type */
|
|
205
205
|
readonly NGBoostConfigType: StructType<{
|
|
@@ -216,9 +216,9 @@ export declare const NGBoostTypes: {
|
|
|
216
216
|
/** Distribution type (default normal) */
|
|
217
217
|
distribution: OptionType<VariantType<{
|
|
218
218
|
/** Normal (Gaussian) distribution */
|
|
219
|
-
normal:
|
|
219
|
+
normal: NullType;
|
|
220
220
|
/** Log-normal distribution (for positive targets) */
|
|
221
|
-
lognormal:
|
|
221
|
+
lognormal: NullType;
|
|
222
222
|
}>>;
|
|
223
223
|
}>;
|
|
224
224
|
/** Prediction configuration type */
|
|
@@ -246,9 +246,9 @@ export declare const NGBoostTypes: {
|
|
|
246
246
|
/** Distribution type used */
|
|
247
247
|
distribution: VariantType<{
|
|
248
248
|
/** Normal (Gaussian) distribution */
|
|
249
|
-
normal:
|
|
249
|
+
normal: NullType;
|
|
250
250
|
/** Log-normal distribution (for positive targets) */
|
|
251
|
-
lognormal:
|
|
251
|
+
lognormal: NullType;
|
|
252
252
|
}>;
|
|
253
253
|
/** Number of input features */
|
|
254
254
|
n_features: IntegerType;
|
|
@@ -296,9 +296,9 @@ export declare const NGBoost: {
|
|
|
296
296
|
/** Distribution type (default normal) */
|
|
297
297
|
distribution: OptionType<VariantType<{
|
|
298
298
|
/** Normal (Gaussian) distribution */
|
|
299
|
-
normal:
|
|
299
|
+
normal: NullType;
|
|
300
300
|
/** Log-normal distribution (for positive targets) */
|
|
301
|
-
lognormal:
|
|
301
|
+
lognormal: NullType;
|
|
302
302
|
}>>;
|
|
303
303
|
}>], VariantType<{
|
|
304
304
|
/** NGBoost regressor model */
|
|
@@ -308,9 +308,9 @@ export declare const NGBoost: {
|
|
|
308
308
|
/** Distribution type used */
|
|
309
309
|
distribution: VariantType<{
|
|
310
310
|
/** Normal (Gaussian) distribution */
|
|
311
|
-
normal:
|
|
311
|
+
normal: NullType;
|
|
312
312
|
/** Log-normal distribution (for positive targets) */
|
|
313
|
-
lognormal:
|
|
313
|
+
lognormal: NullType;
|
|
314
314
|
}>;
|
|
315
315
|
/** Number of input features */
|
|
316
316
|
n_features: IntegerType;
|
|
@@ -325,9 +325,9 @@ export declare const NGBoost: {
|
|
|
325
325
|
/** Distribution type used */
|
|
326
326
|
distribution: VariantType<{
|
|
327
327
|
/** Normal (Gaussian) distribution */
|
|
328
|
-
normal:
|
|
328
|
+
normal: NullType;
|
|
329
329
|
/** Log-normal distribution (for positive targets) */
|
|
330
|
-
lognormal:
|
|
330
|
+
lognormal: NullType;
|
|
331
331
|
}>;
|
|
332
332
|
/** Number of input features */
|
|
333
333
|
n_features: IntegerType;
|
|
@@ -342,9 +342,9 @@ export declare const NGBoost: {
|
|
|
342
342
|
/** Distribution type used */
|
|
343
343
|
distribution: VariantType<{
|
|
344
344
|
/** Normal (Gaussian) distribution */
|
|
345
|
-
normal:
|
|
345
|
+
normal: NullType;
|
|
346
346
|
/** Log-normal distribution (for positive targets) */
|
|
347
|
-
lognormal:
|
|
347
|
+
lognormal: NullType;
|
|
348
348
|
}>;
|
|
349
349
|
/** Number of input features */
|
|
350
350
|
n_features: IntegerType;
|
|
@@ -371,9 +371,9 @@ export declare const NGBoost: {
|
|
|
371
371
|
/** Distribution type for NGBoost */
|
|
372
372
|
readonly NGBoostDistributionType: VariantType<{
|
|
373
373
|
/** Normal (Gaussian) distribution */
|
|
374
|
-
normal:
|
|
374
|
+
normal: NullType;
|
|
375
375
|
/** Log-normal distribution (for positive targets) */
|
|
376
|
-
lognormal:
|
|
376
|
+
lognormal: NullType;
|
|
377
377
|
}>;
|
|
378
378
|
/** NGBoost configuration type */
|
|
379
379
|
readonly NGBoostConfigType: StructType<{
|
|
@@ -390,9 +390,9 @@ export declare const NGBoost: {
|
|
|
390
390
|
/** Distribution type (default normal) */
|
|
391
391
|
distribution: OptionType<VariantType<{
|
|
392
392
|
/** Normal (Gaussian) distribution */
|
|
393
|
-
normal:
|
|
393
|
+
normal: NullType;
|
|
394
394
|
/** Log-normal distribution (for positive targets) */
|
|
395
|
-
lognormal:
|
|
395
|
+
lognormal: NullType;
|
|
396
396
|
}>>;
|
|
397
397
|
}>;
|
|
398
398
|
/** Prediction configuration type */
|
|
@@ -420,9 +420,9 @@ export declare const NGBoost: {
|
|
|
420
420
|
/** Distribution type used */
|
|
421
421
|
distribution: VariantType<{
|
|
422
422
|
/** Normal (Gaussian) distribution */
|
|
423
|
-
normal:
|
|
423
|
+
normal: NullType;
|
|
424
424
|
/** Log-normal distribution (for positive targets) */
|
|
425
|
-
lognormal:
|
|
425
|
+
lognormal: NullType;
|
|
426
426
|
}>;
|
|
427
427
|
/** Number of input features */
|
|
428
428
|
n_features: IntegerType;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ngboost.d.ts","sourceRoot":"","sources":["../../src/ngboost/ngboost.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"ngboost.d.ts","sourceRoot":"","sources":["../../src/ngboost/ngboost.ts"],"names":[],"mappings":"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"}
|
package/dist/ngboost/ngboost.js
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
*
|
|
12
12
|
* @packageDocumentation
|
|
13
13
|
*/
|
|
14
|
-
import { East, StructType, VariantType, OptionType, IntegerType, FloatType, BlobType, } from "@elaraai/east";
|
|
14
|
+
import { East, StructType, VariantType, OptionType, IntegerType, FloatType, BlobType, NullType, } from "@elaraai/east";
|
|
15
15
|
import { VectorType, MatrixType } from "../types.js";
|
|
16
16
|
// Re-export shared types for convenience
|
|
17
17
|
export { VectorType, MatrixType } from "../types.js";
|
|
@@ -23,9 +23,9 @@ export { VectorType, MatrixType } from "../types.js";
|
|
|
23
23
|
*/
|
|
24
24
|
export const NGBoostDistributionType = VariantType({
|
|
25
25
|
/** Normal (Gaussian) distribution */
|
|
26
|
-
normal:
|
|
26
|
+
normal: NullType,
|
|
27
27
|
/** Log-normal distribution (for positive targets) */
|
|
28
|
-
lognormal:
|
|
28
|
+
lognormal: NullType,
|
|
29
29
|
});
|
|
30
30
|
// ============================================================================
|
|
31
31
|
// Config Types
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ngboost.js","sourceRoot":"","sources":["../../src/ngboost/ngboost.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;;;;;;GAQG;AAEH,OAAO,EACH,IAAI,EACJ,UAAU,EACV,WAAW,EACX,UAAU,EACV,WAAW,EACX,SAAS,EACT,QAAQ,GACX,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAErD,yCAAyC;AACzC,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAErD,+EAA+E;AAC/E,aAAa;AACb,+EAA+E;AAE/E;;GAEG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAG,WAAW,CAAC;IAC/C,qCAAqC;IACrC,MAAM,EAAE,
|
|
1
|
+
{"version":3,"file":"ngboost.js","sourceRoot":"","sources":["../../src/ngboost/ngboost.ts"],"names":[],"mappings":"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"}
|
package/dist/shap/shap.d.ts
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
*
|
|
11
11
|
* @packageDocumentation
|
|
12
12
|
*/
|
|
13
|
-
import { StructType, VariantType, OptionType, IntegerType, FloatType, StringType, ArrayType, BlobType } from "@elaraai/east";
|
|
13
|
+
import { StructType, VariantType, OptionType, IntegerType, FloatType, StringType, ArrayType, BlobType, NullType } from "@elaraai/east";
|
|
14
14
|
export { VectorType, MatrixType } from "../types.js";
|
|
15
15
|
/** String vector type for feature names */
|
|
16
16
|
export declare const StringVectorType: ArrayType<StringType>;
|
|
@@ -108,8 +108,8 @@ export declare const AnyModelBlobType: VariantType<{
|
|
|
108
108
|
ngboost_regressor: StructType<{
|
|
109
109
|
data: BlobType;
|
|
110
110
|
distribution: VariantType<{
|
|
111
|
-
normal:
|
|
112
|
-
lognormal:
|
|
111
|
+
normal: NullType;
|
|
112
|
+
lognormal: NullType;
|
|
113
113
|
}>;
|
|
114
114
|
n_features: IntegerType;
|
|
115
115
|
}>;
|
|
@@ -204,8 +204,8 @@ export declare const shap_kernel_explainer_create: import("@elaraai/east").Platf
|
|
|
204
204
|
ngboost_regressor: StructType<{
|
|
205
205
|
data: BlobType;
|
|
206
206
|
distribution: VariantType<{
|
|
207
|
-
normal:
|
|
208
|
-
lognormal:
|
|
207
|
+
normal: NullType;
|
|
208
|
+
lognormal: NullType;
|
|
209
209
|
}>;
|
|
210
210
|
n_features: IntegerType;
|
|
211
211
|
}>;
|
|
@@ -375,8 +375,8 @@ export declare const ShapTypes: {
|
|
|
375
375
|
ngboost_regressor: StructType<{
|
|
376
376
|
data: BlobType;
|
|
377
377
|
distribution: VariantType<{
|
|
378
|
-
normal:
|
|
379
|
-
lognormal:
|
|
378
|
+
normal: NullType;
|
|
379
|
+
lognormal: NullType;
|
|
380
380
|
}>;
|
|
381
381
|
n_features: IntegerType;
|
|
382
382
|
}>;
|
|
@@ -479,8 +479,8 @@ export declare const Shap: {
|
|
|
479
479
|
ngboost_regressor: StructType<{
|
|
480
480
|
data: BlobType;
|
|
481
481
|
distribution: VariantType<{
|
|
482
|
-
normal:
|
|
483
|
-
lognormal:
|
|
482
|
+
normal: NullType;
|
|
483
|
+
lognormal: NullType;
|
|
484
484
|
}>;
|
|
485
485
|
n_features: IntegerType;
|
|
486
486
|
}>;
|
|
@@ -635,8 +635,8 @@ export declare const Shap: {
|
|
|
635
635
|
ngboost_regressor: StructType<{
|
|
636
636
|
data: BlobType;
|
|
637
637
|
distribution: VariantType<{
|
|
638
|
-
normal:
|
|
639
|
-
lognormal:
|
|
638
|
+
normal: NullType;
|
|
639
|
+
lognormal: NullType;
|
|
640
640
|
}>;
|
|
641
641
|
n_features: IntegerType;
|
|
642
642
|
}>;
|
package/dist/shap/shap.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"shap.d.ts","sourceRoot":"","sources":["../../src/shap/shap.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"shap.d.ts","sourceRoot":"","sources":["../../src/shap/shap.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;;;;;GAOG;AAEH,OAAO,EAEH,UAAU,EACV,WAAW,EACX,UAAU,EACV,WAAW,EACX,SAAS,EACT,UAAU,EACV,SAAS,EACT,QAAQ,EACR,QAAQ,EACX,MAAM,eAAe,CAAC;AAIvB,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAMrD,2CAA2C;AAC3C,eAAO,MAAM,gBAAgB,uBAAwB,CAAC;AAMtD;;GAEG;AACH,eAAO,MAAM,cAAc;IACvB,kDAAkD;;IAElD,yCAAyC;;IAEzC,oBAAoB;;EAEtB,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,qBAAqB;IAC9B,oBAAoB;;IAEpB,gDAAgD;;IAEhD,iDAAiD;;EAEnD,CAAC;AAMH;;GAEG;AACH,eAAO,MAAM,iBAAiB;IAC1B,+CAA+C;;QAE3C,uCAAuC;;QAEvC,+BAA+B;;;IAGnC,yCAAyC;;QAErC,uCAAuC;;QAEvC,+BAA+B;;;EAGrC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,iBAAiB;IAC1B,wBAAwB;;;;;IAKxB,yBAAyB;;;;;;IAMzB,yBAAyB;;;;;IAKzB,0BAA0B;;;;;;EAM5B,CAAC;AAEH;;;GAGG;AACH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0C3B,CAAC;AAMH;;;;;;;GAOG;AACH,eAAO,MAAM,0BAA0B;IApFnC,wBAAwB;;;;;IAKxB,yBAAyB;;;;;;IAMzB,yBAAyB;;;;;IAKzB,0BAA0B;;;;;;;IApC1B,+CAA+C;;QAE3C,uCAAuC;;QAEvC,+BAA+B;;;IAGnC,yCAAyC;;QAErC,uCAAuC;;QAEvC,+BAA+B;;;GAiGtC,CAAC;AAEF;;;;;;;;;GASG;AACH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAxHrC,+CAA+C;;QAE3C,uCAAuC;;QAEvC,+BAA+B;;;IAGnC,yCAAyC;;QAErC,uCAAuC;;QAEvC,+BAA+B;;;GAiHtC,CAAC;AAEF;;;;;;;GAOG;AACH,eAAO,MAAM,mBAAmB;IAtI5B,+CAA+C;;QAE3C,uCAAuC;;QAEvC,+BAA+B;;;IAGnC,yCAAyC;;QAErC,uCAAuC;;QAEvC,+BAA+B;;;;IAvCnC,kDAAkD;;IAElD,yCAAyC;;IAEzC,oBAAoB;;GAkKvB,CAAC;AAEF;;;;;;GAMG;AACH,eAAO,MAAM,uBAAuB;IAnKhC,oBAAoB;;IAEpB,gDAAgD;;IAEhD,iDAAiD;;GAmKpD,CAAC;AAMF;;GAEG;AACH,eAAO,MAAM,SAAS;IAClB,oCAAoC;;IAEpC,uCAAuC;;IAEvC,yBAAyB;;IAEzB,uBAAuB;;QAnMvB,kDAAkD;;QAElD,yCAAyC;;QAEzC,oBAAoB;;;IAiMpB,8BAA8B;;QAzL9B,oBAAoB;;QAEpB,gDAAgD;;QAEhD,iDAAiD;;;IAuLjD,qCAAqC;;QA3KrC,+CAA+C;;YAE3C,uCAAuC;;YAEvC,+BAA+B;;;QAGnC,yCAAyC;;YAErC,uCAAuC;;YAEvC,+BAA+B;;;;IAkKnC,qCAAqC;;QAzJrC,wBAAwB;;;;;QAKxB,yBAAyB;;;;;;QAMzB,yBAAyB;;;;;QAKzB,0BAA0B;;;;;;;IA2I1B,+CAA+C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAEzC,CAAC;AAEX;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,eAAO,MAAM,IAAI;IACb,iDAAiD;;QAtLjD,wBAAwB;;;;;QAKxB,yBAAyB;;;;;;QAMzB,yBAAyB;;;;;QAKzB,0BAA0B;;;;;;;QApC1B,+CAA+C;;YAE3C,uCAAuC;;YAEvC,+BAA+B;;;QAGnC,yCAAyC;;YAErC,uCAAuC;;YAEvC,+BAA+B;;;;IAiMnC,2CAA2C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QA5M3C,+CAA+C;;YAE3C,uCAAuC;;YAEvC,+BAA+B;;;QAGnC,yCAAyC;;YAErC,uCAAuC;;YAEvC,+BAA+B;;;;IAmMnC,0BAA0B;;QA9M1B,+CAA+C;;YAE3C,uCAAuC;;YAEvC,+BAA+B;;;QAGnC,yCAAyC;;YAErC,uCAAuC;;YAEvC,+BAA+B;;;;QAvCnC,kDAAkD;;QAElD,yCAAyC;;QAEzC,oBAAoB;;;IAwOpB,kDAAkD;;QAhOlD,oBAAoB;;QAEpB,gDAAgD;;QAEhD,iDAAiD;;;IA8NjD,uBAAuB;;QAjDvB,oCAAoC;;QAEpC,uCAAuC;;QAEvC,yBAAyB;;QAEzB,uBAAuB;;YAnMvB,kDAAkD;;YAElD,yCAAyC;;YAEzC,oBAAoB;;;QAiMpB,8BAA8B;;YAzL9B,oBAAoB;;YAEpB,gDAAgD;;YAEhD,iDAAiD;;;QAuLjD,qCAAqC;;YA3KrC,+CAA+C;;gBAE3C,uCAAuC;;gBAEvC,+BAA+B;;;YAGnC,yCAAyC;;gBAErC,uCAAuC;;gBAEvC,+BAA+B;;;;QAkKnC,qCAAqC;;YAzJrC,wBAAwB;;;;;YAKxB,yBAAyB;;;;;;YAMzB,yBAAyB;;;;;YAKzB,0BAA0B;;;;;;;QA2I1B,+CAA+C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqCzC,CAAC"}
|
package/dist/shap/shap.js
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
*
|
|
11
11
|
* @packageDocumentation
|
|
12
12
|
*/
|
|
13
|
-
import { East, StructType, VariantType, OptionType, IntegerType, FloatType, StringType, ArrayType, BlobType, } from "@elaraai/east";
|
|
13
|
+
import { East, StructType, VariantType, OptionType, IntegerType, FloatType, StringType, ArrayType, BlobType, NullType, } from "@elaraai/east";
|
|
14
14
|
import { VectorType, MatrixType } from "../types.js";
|
|
15
15
|
// Re-export shared types for convenience
|
|
16
16
|
export { VectorType, MatrixType } from "../types.js";
|
|
@@ -121,8 +121,8 @@ export const AnyModelBlobType = VariantType({
|
|
|
121
121
|
ngboost_regressor: StructType({
|
|
122
122
|
data: BlobType,
|
|
123
123
|
distribution: VariantType({
|
|
124
|
-
normal:
|
|
125
|
-
lognormal:
|
|
124
|
+
normal: NullType,
|
|
125
|
+
lognormal: NullType,
|
|
126
126
|
}),
|
|
127
127
|
n_features: IntegerType,
|
|
128
128
|
}),
|
package/dist/shap/shap.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"shap.js","sourceRoot":"","sources":["../../src/shap/shap.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"shap.js","sourceRoot":"","sources":["../../src/shap/shap.ts"],"names":[],"mappings":"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"}
|
|
@@ -485,19 +485,19 @@ export declare const RegressorChainBaseConfigType: VariantType<{
|
|
|
485
485
|
col_sample: OptionType<FloatType>;
|
|
486
486
|
random_state: OptionType<IntegerType>;
|
|
487
487
|
distribution: OptionType<VariantType<{
|
|
488
|
-
normal:
|
|
489
|
-
lognormal:
|
|
488
|
+
normal: NullType;
|
|
489
|
+
lognormal: NullType;
|
|
490
490
|
}>>;
|
|
491
491
|
}>;
|
|
492
492
|
/** Gaussian Process regressor */
|
|
493
493
|
gp: StructType<{
|
|
494
494
|
kernel: OptionType<VariantType<{
|
|
495
|
-
rbf:
|
|
496
|
-
matern_1_2:
|
|
497
|
-
matern_3_2:
|
|
498
|
-
matern_5_2:
|
|
499
|
-
rational_quadratic:
|
|
500
|
-
dot_product:
|
|
495
|
+
rbf: NullType;
|
|
496
|
+
matern_1_2: NullType;
|
|
497
|
+
matern_3_2: NullType;
|
|
498
|
+
matern_5_2: NullType;
|
|
499
|
+
rational_quadratic: NullType;
|
|
500
|
+
dot_product: NullType;
|
|
501
501
|
}>>;
|
|
502
502
|
alpha: OptionType<FloatType>;
|
|
503
503
|
n_restarts_optimizer: OptionType<IntegerType>;
|
|
@@ -546,19 +546,19 @@ export declare const RegressorChainConfigType: StructType<{
|
|
|
546
546
|
col_sample: OptionType<FloatType>;
|
|
547
547
|
random_state: OptionType<IntegerType>;
|
|
548
548
|
distribution: OptionType<VariantType<{
|
|
549
|
-
normal:
|
|
550
|
-
lognormal:
|
|
549
|
+
normal: NullType;
|
|
550
|
+
lognormal: NullType;
|
|
551
551
|
}>>;
|
|
552
552
|
}>;
|
|
553
553
|
/** Gaussian Process regressor */
|
|
554
554
|
gp: StructType<{
|
|
555
555
|
kernel: OptionType<VariantType<{
|
|
556
|
-
rbf:
|
|
557
|
-
matern_1_2:
|
|
558
|
-
matern_3_2:
|
|
559
|
-
matern_5_2:
|
|
560
|
-
rational_quadratic:
|
|
561
|
-
dot_product:
|
|
556
|
+
rbf: NullType;
|
|
557
|
+
matern_1_2: NullType;
|
|
558
|
+
matern_3_2: NullType;
|
|
559
|
+
matern_5_2: NullType;
|
|
560
|
+
rational_quadratic: NullType;
|
|
561
|
+
dot_product: NullType;
|
|
562
562
|
}>>;
|
|
563
563
|
alpha: OptionType<FloatType>;
|
|
564
564
|
n_restarts_optimizer: OptionType<IntegerType>;
|
|
@@ -783,19 +783,19 @@ export declare const sklearn_regressor_chain_train: import("@elaraai/east").Plat
|
|
|
783
783
|
col_sample: OptionType<FloatType>;
|
|
784
784
|
random_state: OptionType<IntegerType>;
|
|
785
785
|
distribution: OptionType<VariantType<{
|
|
786
|
-
normal:
|
|
787
|
-
lognormal:
|
|
786
|
+
normal: NullType;
|
|
787
|
+
lognormal: NullType;
|
|
788
788
|
}>>;
|
|
789
789
|
}>;
|
|
790
790
|
/** Gaussian Process regressor */
|
|
791
791
|
gp: StructType<{
|
|
792
792
|
kernel: OptionType<VariantType<{
|
|
793
|
-
rbf:
|
|
794
|
-
matern_1_2:
|
|
795
|
-
matern_3_2:
|
|
796
|
-
matern_5_2:
|
|
797
|
-
rational_quadratic:
|
|
798
|
-
dot_product:
|
|
793
|
+
rbf: NullType;
|
|
794
|
+
matern_1_2: NullType;
|
|
795
|
+
matern_3_2: NullType;
|
|
796
|
+
matern_5_2: NullType;
|
|
797
|
+
rational_quadratic: NullType;
|
|
798
|
+
dot_product: NullType;
|
|
799
799
|
}>>;
|
|
800
800
|
alpha: OptionType<FloatType>;
|
|
801
801
|
n_restarts_optimizer: OptionType<IntegerType>;
|
|
@@ -1264,19 +1264,19 @@ export declare const SklearnTypes: {
|
|
|
1264
1264
|
col_sample: OptionType<FloatType>;
|
|
1265
1265
|
random_state: OptionType<IntegerType>;
|
|
1266
1266
|
distribution: OptionType<VariantType<{
|
|
1267
|
-
normal:
|
|
1268
|
-
lognormal:
|
|
1267
|
+
normal: NullType;
|
|
1268
|
+
lognormal: NullType;
|
|
1269
1269
|
}>>;
|
|
1270
1270
|
}>;
|
|
1271
1271
|
/** Gaussian Process regressor */
|
|
1272
1272
|
gp: StructType<{
|
|
1273
1273
|
kernel: OptionType<VariantType<{
|
|
1274
|
-
rbf:
|
|
1275
|
-
matern_1_2:
|
|
1276
|
-
matern_3_2:
|
|
1277
|
-
matern_5_2:
|
|
1278
|
-
rational_quadratic:
|
|
1279
|
-
dot_product:
|
|
1274
|
+
rbf: NullType;
|
|
1275
|
+
matern_1_2: NullType;
|
|
1276
|
+
matern_3_2: NullType;
|
|
1277
|
+
matern_5_2: NullType;
|
|
1278
|
+
rational_quadratic: NullType;
|
|
1279
|
+
dot_product: NullType;
|
|
1280
1280
|
}>>;
|
|
1281
1281
|
alpha: OptionType<FloatType>;
|
|
1282
1282
|
n_restarts_optimizer: OptionType<IntegerType>;
|
|
@@ -1323,19 +1323,19 @@ export declare const SklearnTypes: {
|
|
|
1323
1323
|
col_sample: OptionType<FloatType>;
|
|
1324
1324
|
random_state: OptionType<IntegerType>;
|
|
1325
1325
|
distribution: OptionType<VariantType<{
|
|
1326
|
-
normal:
|
|
1327
|
-
lognormal:
|
|
1326
|
+
normal: NullType;
|
|
1327
|
+
lognormal: NullType;
|
|
1328
1328
|
}>>;
|
|
1329
1329
|
}>;
|
|
1330
1330
|
/** Gaussian Process regressor */
|
|
1331
1331
|
gp: StructType<{
|
|
1332
1332
|
kernel: OptionType<VariantType<{
|
|
1333
|
-
rbf:
|
|
1334
|
-
matern_1_2:
|
|
1335
|
-
matern_3_2:
|
|
1336
|
-
matern_5_2:
|
|
1337
|
-
rational_quadratic:
|
|
1338
|
-
dot_product:
|
|
1333
|
+
rbf: NullType;
|
|
1334
|
+
matern_1_2: NullType;
|
|
1335
|
+
matern_3_2: NullType;
|
|
1336
|
+
matern_5_2: NullType;
|
|
1337
|
+
rational_quadratic: NullType;
|
|
1338
|
+
dot_product: NullType;
|
|
1339
1339
|
}>>;
|
|
1340
1340
|
alpha: OptionType<FloatType>;
|
|
1341
1341
|
n_restarts_optimizer: OptionType<IntegerType>;
|
|
@@ -2091,19 +2091,19 @@ export declare const Sklearn: {
|
|
|
2091
2091
|
col_sample: OptionType<FloatType>;
|
|
2092
2092
|
random_state: OptionType<IntegerType>;
|
|
2093
2093
|
distribution: OptionType<VariantType<{
|
|
2094
|
-
normal:
|
|
2095
|
-
lognormal:
|
|
2094
|
+
normal: NullType;
|
|
2095
|
+
lognormal: NullType;
|
|
2096
2096
|
}>>;
|
|
2097
2097
|
}>;
|
|
2098
2098
|
/** Gaussian Process regressor */
|
|
2099
2099
|
gp: StructType<{
|
|
2100
2100
|
kernel: OptionType<VariantType<{
|
|
2101
|
-
rbf:
|
|
2102
|
-
matern_1_2:
|
|
2103
|
-
matern_3_2:
|
|
2104
|
-
matern_5_2:
|
|
2105
|
-
rational_quadratic:
|
|
2106
|
-
dot_product:
|
|
2101
|
+
rbf: NullType;
|
|
2102
|
+
matern_1_2: NullType;
|
|
2103
|
+
matern_3_2: NullType;
|
|
2104
|
+
matern_5_2: NullType;
|
|
2105
|
+
rational_quadratic: NullType;
|
|
2106
|
+
dot_product: NullType;
|
|
2107
2107
|
}>>;
|
|
2108
2108
|
alpha: OptionType<FloatType>;
|
|
2109
2109
|
n_restarts_optimizer: OptionType<IntegerType>;
|
|
@@ -2289,19 +2289,19 @@ export declare const Sklearn: {
|
|
|
2289
2289
|
col_sample: OptionType<FloatType>;
|
|
2290
2290
|
random_state: OptionType<IntegerType>;
|
|
2291
2291
|
distribution: OptionType<VariantType<{
|
|
2292
|
-
normal:
|
|
2293
|
-
lognormal:
|
|
2292
|
+
normal: NullType;
|
|
2293
|
+
lognormal: NullType;
|
|
2294
2294
|
}>>;
|
|
2295
2295
|
}>;
|
|
2296
2296
|
/** Gaussian Process regressor */
|
|
2297
2297
|
gp: StructType<{
|
|
2298
2298
|
kernel: OptionType<VariantType<{
|
|
2299
|
-
rbf:
|
|
2300
|
-
matern_1_2:
|
|
2301
|
-
matern_3_2:
|
|
2302
|
-
matern_5_2:
|
|
2303
|
-
rational_quadratic:
|
|
2304
|
-
dot_product:
|
|
2299
|
+
rbf: NullType;
|
|
2300
|
+
matern_1_2: NullType;
|
|
2301
|
+
matern_3_2: NullType;
|
|
2302
|
+
matern_5_2: NullType;
|
|
2303
|
+
rational_quadratic: NullType;
|
|
2304
|
+
dot_product: NullType;
|
|
2305
2305
|
}>>;
|
|
2306
2306
|
alpha: OptionType<FloatType>;
|
|
2307
2307
|
n_restarts_optimizer: OptionType<IntegerType>;
|
|
@@ -2348,19 +2348,19 @@ export declare const Sklearn: {
|
|
|
2348
2348
|
col_sample: OptionType<FloatType>;
|
|
2349
2349
|
random_state: OptionType<IntegerType>;
|
|
2350
2350
|
distribution: OptionType<VariantType<{
|
|
2351
|
-
normal:
|
|
2352
|
-
lognormal:
|
|
2351
|
+
normal: NullType;
|
|
2352
|
+
lognormal: NullType;
|
|
2353
2353
|
}>>;
|
|
2354
2354
|
}>;
|
|
2355
2355
|
/** Gaussian Process regressor */
|
|
2356
2356
|
gp: StructType<{
|
|
2357
2357
|
kernel: OptionType<VariantType<{
|
|
2358
|
-
rbf:
|
|
2359
|
-
matern_1_2:
|
|
2360
|
-
matern_3_2:
|
|
2361
|
-
matern_5_2:
|
|
2362
|
-
rational_quadratic:
|
|
2363
|
-
dot_product:
|
|
2358
|
+
rbf: NullType;
|
|
2359
|
+
matern_1_2: NullType;
|
|
2360
|
+
matern_3_2: NullType;
|
|
2361
|
+
matern_5_2: NullType;
|
|
2362
|
+
rational_quadratic: NullType;
|
|
2363
|
+
dot_product: NullType;
|
|
2364
2364
|
}>>;
|
|
2365
2365
|
alpha: OptionType<FloatType>;
|
|
2366
2366
|
n_restarts_optimizer: OptionType<IntegerType>;
|