@elaraai/east-py-datascience 0.0.2-beta.6 → 0.0.2-beta.61
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/alns/alns.d.ts +528 -0
- package/dist/alns/alns.d.ts.map +1 -0
- package/dist/alns/alns.js +238 -0
- package/dist/alns/alns.js.map +1 -0
- package/dist/gp/gp.d.ts +120 -120
- 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/index.d.ts +5 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +8 -2
- package/dist/index.js.map +1 -1
- package/dist/lightgbm/lightgbm.d.ts +168 -168
- package/dist/lightning/lightning.d.ts +1501 -0
- package/dist/lightning/lightning.d.ts.map +1 -0
- package/dist/lightning/lightning.js +376 -0
- package/dist/lightning/lightning.js.map +1 -0
- package/dist/mads/mads.d.ts +103 -103
- 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/mapie/mapie.d.ts +2058 -0
- package/dist/mapie/mapie.d.ts.map +1 -0
- package/dist/mapie/mapie.js +411 -0
- package/dist/mapie/mapie.js.map +1 -0
- package/dist/ngboost/ngboost.d.ts +126 -126
- 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/optuna/optuna.d.ts +314 -314
- package/dist/scipy/scipy.d.ts +535 -429
- package/dist/scipy/scipy.d.ts.map +1 -1
- package/dist/scipy/scipy.js +56 -3
- package/dist/scipy/scipy.js.map +1 -1
- package/dist/shap/shap.d.ts +1152 -358
- package/dist/shap/shap.d.ts.map +1 -1
- package/dist/shap/shap.js +189 -16
- package/dist/shap/shap.js.map +1 -1
- package/dist/simanneal/simanneal.d.ts +148 -148
- package/dist/sklearn/sklearn.d.ts +3104 -1316
- package/dist/sklearn/sklearn.d.ts.map +1 -1
- package/dist/sklearn/sklearn.js +325 -64
- package/dist/sklearn/sklearn.js.map +1 -1
- package/dist/torch/torch.d.ts +503 -350
- package/dist/torch/torch.d.ts.map +1 -1
- package/dist/torch/torch.js +39 -17
- package/dist/torch/torch.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/xgboost/xgboost.d.ts +803 -178
- package/dist/xgboost/xgboost.d.ts.map +1 -1
- package/dist/xgboost/xgboost.js +102 -1
- package/dist/xgboost/xgboost.js.map +1 -1
- package/package.json +4 -4
|
@@ -11,37 +11,37 @@
|
|
|
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
|
+
readonly normal: NullType;
|
|
22
22
|
/** Log-normal distribution (for positive targets) */
|
|
23
|
-
lognormal:
|
|
23
|
+
readonly lognormal: NullType;
|
|
24
24
|
}>;
|
|
25
25
|
/**
|
|
26
26
|
* Configuration for NGBoost models.
|
|
27
27
|
*/
|
|
28
28
|
export declare const NGBoostConfigType: StructType<{
|
|
29
29
|
/** Number of boosting rounds (default 500) */
|
|
30
|
-
n_estimators: OptionType<IntegerType>;
|
|
30
|
+
readonly n_estimators: OptionType<IntegerType>;
|
|
31
31
|
/** Learning rate / step size shrinkage (default 0.01) */
|
|
32
|
-
learning_rate: OptionType<FloatType>;
|
|
32
|
+
readonly learning_rate: OptionType<FloatType>;
|
|
33
33
|
/** Fraction of samples to use in each iteration (default 1.0) */
|
|
34
|
-
minibatch_frac: OptionType<FloatType>;
|
|
34
|
+
readonly minibatch_frac: OptionType<FloatType>;
|
|
35
35
|
/** Fraction of features to use in each iteration (default 1.0) */
|
|
36
|
-
col_sample: OptionType<FloatType>;
|
|
36
|
+
readonly col_sample: OptionType<FloatType>;
|
|
37
37
|
/** Random seed for reproducibility */
|
|
38
|
-
random_state: OptionType<IntegerType>;
|
|
38
|
+
readonly random_state: OptionType<IntegerType>;
|
|
39
39
|
/** Distribution type (default normal) */
|
|
40
|
-
distribution: OptionType<VariantType<{
|
|
40
|
+
readonly distribution: OptionType<VariantType<{
|
|
41
41
|
/** Normal (Gaussian) distribution */
|
|
42
|
-
normal:
|
|
42
|
+
readonly normal: NullType;
|
|
43
43
|
/** Log-normal distribution (for positive targets) */
|
|
44
|
-
lognormal:
|
|
44
|
+
readonly lognormal: NullType;
|
|
45
45
|
}>>;
|
|
46
46
|
}>;
|
|
47
47
|
/**
|
|
@@ -49,38 +49,38 @@ export declare const NGBoostConfigType: StructType<{
|
|
|
49
49
|
*/
|
|
50
50
|
export declare const NGBoostPredictConfigType: StructType<{
|
|
51
51
|
/** Confidence level for intervals (default 0.95) */
|
|
52
|
-
confidence_level: OptionType<FloatType>;
|
|
52
|
+
readonly confidence_level: OptionType<FloatType>;
|
|
53
53
|
}>;
|
|
54
54
|
/**
|
|
55
55
|
* Result type for probabilistic predictions.
|
|
56
56
|
*/
|
|
57
57
|
export declare const NGBoostPredictResultType: StructType<{
|
|
58
58
|
/** Point predictions (mean) */
|
|
59
|
-
predictions: import("@elaraai/east").ArrayType<FloatType>;
|
|
59
|
+
readonly predictions: import("@elaraai/east").ArrayType<FloatType>;
|
|
60
60
|
/** Standard deviation */
|
|
61
|
-
std: OptionType<import("@elaraai/east").ArrayType<FloatType>>;
|
|
61
|
+
readonly std: OptionType<import("@elaraai/east").ArrayType<FloatType>>;
|
|
62
62
|
/** Lower confidence interval */
|
|
63
|
-
lower: OptionType<import("@elaraai/east").ArrayType<FloatType>>;
|
|
63
|
+
readonly lower: OptionType<import("@elaraai/east").ArrayType<FloatType>>;
|
|
64
64
|
/** Upper confidence interval */
|
|
65
|
-
upper: OptionType<import("@elaraai/east").ArrayType<FloatType>>;
|
|
65
|
+
readonly upper: OptionType<import("@elaraai/east").ArrayType<FloatType>>;
|
|
66
66
|
}>;
|
|
67
67
|
/**
|
|
68
68
|
* Model blob type for serialized NGBoost models.
|
|
69
69
|
*/
|
|
70
70
|
export declare const NGBoostModelBlobType: VariantType<{
|
|
71
71
|
/** NGBoost regressor model */
|
|
72
|
-
ngboost_regressor: StructType<{
|
|
72
|
+
readonly ngboost_regressor: StructType<{
|
|
73
73
|
/** Cloudpickle serialized model */
|
|
74
|
-
data: BlobType;
|
|
74
|
+
readonly data: BlobType;
|
|
75
75
|
/** Distribution type used */
|
|
76
|
-
distribution: VariantType<{
|
|
76
|
+
readonly distribution: VariantType<{
|
|
77
77
|
/** Normal (Gaussian) distribution */
|
|
78
|
-
normal:
|
|
78
|
+
readonly normal: NullType;
|
|
79
79
|
/** Log-normal distribution (for positive targets) */
|
|
80
|
-
lognormal:
|
|
80
|
+
readonly lognormal: NullType;
|
|
81
81
|
}>;
|
|
82
82
|
/** Number of input features */
|
|
83
|
-
n_features: IntegerType;
|
|
83
|
+
readonly n_features: IntegerType;
|
|
84
84
|
}>;
|
|
85
85
|
}>;
|
|
86
86
|
/**
|
|
@@ -93,36 +93,36 @@ export declare const NGBoostModelBlobType: VariantType<{
|
|
|
93
93
|
*/
|
|
94
94
|
export declare const ngboost_train_regressor: import("@elaraai/east").PlatformDefinition<[import("@elaraai/east").ArrayType<import("@elaraai/east").ArrayType<FloatType>>, import("@elaraai/east").ArrayType<FloatType>, StructType<{
|
|
95
95
|
/** Number of boosting rounds (default 500) */
|
|
96
|
-
n_estimators: OptionType<IntegerType>;
|
|
96
|
+
readonly n_estimators: OptionType<IntegerType>;
|
|
97
97
|
/** Learning rate / step size shrinkage (default 0.01) */
|
|
98
|
-
learning_rate: OptionType<FloatType>;
|
|
98
|
+
readonly learning_rate: OptionType<FloatType>;
|
|
99
99
|
/** Fraction of samples to use in each iteration (default 1.0) */
|
|
100
|
-
minibatch_frac: OptionType<FloatType>;
|
|
100
|
+
readonly minibatch_frac: OptionType<FloatType>;
|
|
101
101
|
/** Fraction of features to use in each iteration (default 1.0) */
|
|
102
|
-
col_sample: OptionType<FloatType>;
|
|
102
|
+
readonly col_sample: OptionType<FloatType>;
|
|
103
103
|
/** Random seed for reproducibility */
|
|
104
|
-
random_state: OptionType<IntegerType>;
|
|
104
|
+
readonly random_state: OptionType<IntegerType>;
|
|
105
105
|
/** Distribution type (default normal) */
|
|
106
|
-
distribution: OptionType<VariantType<{
|
|
106
|
+
readonly distribution: OptionType<VariantType<{
|
|
107
107
|
/** Normal (Gaussian) distribution */
|
|
108
|
-
normal:
|
|
108
|
+
readonly normal: NullType;
|
|
109
109
|
/** Log-normal distribution (for positive targets) */
|
|
110
|
-
lognormal:
|
|
110
|
+
readonly lognormal: NullType;
|
|
111
111
|
}>>;
|
|
112
112
|
}>], VariantType<{
|
|
113
113
|
/** NGBoost regressor model */
|
|
114
|
-
ngboost_regressor: StructType<{
|
|
114
|
+
readonly ngboost_regressor: StructType<{
|
|
115
115
|
/** Cloudpickle serialized model */
|
|
116
|
-
data: BlobType;
|
|
116
|
+
readonly data: BlobType;
|
|
117
117
|
/** Distribution type used */
|
|
118
|
-
distribution: VariantType<{
|
|
118
|
+
readonly distribution: VariantType<{
|
|
119
119
|
/** Normal (Gaussian) distribution */
|
|
120
|
-
normal:
|
|
120
|
+
readonly normal: NullType;
|
|
121
121
|
/** Log-normal distribution (for positive targets) */
|
|
122
|
-
lognormal:
|
|
122
|
+
readonly lognormal: NullType;
|
|
123
123
|
}>;
|
|
124
124
|
/** Number of input features */
|
|
125
|
-
n_features: IntegerType;
|
|
125
|
+
readonly n_features: IntegerType;
|
|
126
126
|
}>;
|
|
127
127
|
}>>;
|
|
128
128
|
/**
|
|
@@ -134,18 +134,18 @@ export declare const ngboost_train_regressor: import("@elaraai/east").PlatformDe
|
|
|
134
134
|
*/
|
|
135
135
|
export declare const ngboost_predict: import("@elaraai/east").PlatformDefinition<[VariantType<{
|
|
136
136
|
/** NGBoost regressor model */
|
|
137
|
-
ngboost_regressor: StructType<{
|
|
137
|
+
readonly ngboost_regressor: StructType<{
|
|
138
138
|
/** Cloudpickle serialized model */
|
|
139
|
-
data: BlobType;
|
|
139
|
+
readonly data: BlobType;
|
|
140
140
|
/** Distribution type used */
|
|
141
|
-
distribution: VariantType<{
|
|
141
|
+
readonly distribution: VariantType<{
|
|
142
142
|
/** Normal (Gaussian) distribution */
|
|
143
|
-
normal:
|
|
143
|
+
readonly normal: NullType;
|
|
144
144
|
/** Log-normal distribution (for positive targets) */
|
|
145
|
-
lognormal:
|
|
145
|
+
readonly lognormal: NullType;
|
|
146
146
|
}>;
|
|
147
147
|
/** Number of input features */
|
|
148
|
-
n_features: IntegerType;
|
|
148
|
+
readonly n_features: IntegerType;
|
|
149
149
|
}>;
|
|
150
150
|
}>, import("@elaraai/east").ArrayType<import("@elaraai/east").ArrayType<FloatType>>], import("@elaraai/east").ArrayType<FloatType>>;
|
|
151
151
|
/**
|
|
@@ -160,31 +160,31 @@ export declare const ngboost_predict: import("@elaraai/east").PlatformDefinition
|
|
|
160
160
|
*/
|
|
161
161
|
export declare const ngboost_predict_dist: import("@elaraai/east").PlatformDefinition<[VariantType<{
|
|
162
162
|
/** NGBoost regressor model */
|
|
163
|
-
ngboost_regressor: StructType<{
|
|
163
|
+
readonly ngboost_regressor: StructType<{
|
|
164
164
|
/** Cloudpickle serialized model */
|
|
165
|
-
data: BlobType;
|
|
165
|
+
readonly data: BlobType;
|
|
166
166
|
/** Distribution type used */
|
|
167
|
-
distribution: VariantType<{
|
|
167
|
+
readonly distribution: VariantType<{
|
|
168
168
|
/** Normal (Gaussian) distribution */
|
|
169
|
-
normal:
|
|
169
|
+
readonly normal: NullType;
|
|
170
170
|
/** Log-normal distribution (for positive targets) */
|
|
171
|
-
lognormal:
|
|
171
|
+
readonly lognormal: NullType;
|
|
172
172
|
}>;
|
|
173
173
|
/** Number of input features */
|
|
174
|
-
n_features: IntegerType;
|
|
174
|
+
readonly n_features: IntegerType;
|
|
175
175
|
}>;
|
|
176
176
|
}>, import("@elaraai/east").ArrayType<import("@elaraai/east").ArrayType<FloatType>>, StructType<{
|
|
177
177
|
/** Confidence level for intervals (default 0.95) */
|
|
178
|
-
confidence_level: OptionType<FloatType>;
|
|
178
|
+
readonly confidence_level: OptionType<FloatType>;
|
|
179
179
|
}>], StructType<{
|
|
180
180
|
/** Point predictions (mean) */
|
|
181
|
-
predictions: import("@elaraai/east").ArrayType<FloatType>;
|
|
181
|
+
readonly predictions: import("@elaraai/east").ArrayType<FloatType>;
|
|
182
182
|
/** Standard deviation */
|
|
183
|
-
std: OptionType<import("@elaraai/east").ArrayType<FloatType>>;
|
|
183
|
+
readonly std: OptionType<import("@elaraai/east").ArrayType<FloatType>>;
|
|
184
184
|
/** Lower confidence interval */
|
|
185
|
-
lower: OptionType<import("@elaraai/east").ArrayType<FloatType>>;
|
|
185
|
+
readonly lower: OptionType<import("@elaraai/east").ArrayType<FloatType>>;
|
|
186
186
|
/** Upper confidence interval */
|
|
187
|
-
upper: OptionType<import("@elaraai/east").ArrayType<FloatType>>;
|
|
187
|
+
readonly upper: OptionType<import("@elaraai/east").ArrayType<FloatType>>;
|
|
188
188
|
}>>;
|
|
189
189
|
/**
|
|
190
190
|
* Type definitions for NGBoost functions.
|
|
@@ -197,61 +197,61 @@ export declare const NGBoostTypes: {
|
|
|
197
197
|
/** Distribution type for NGBoost */
|
|
198
198
|
readonly NGBoostDistributionType: VariantType<{
|
|
199
199
|
/** Normal (Gaussian) distribution */
|
|
200
|
-
normal:
|
|
200
|
+
readonly normal: NullType;
|
|
201
201
|
/** Log-normal distribution (for positive targets) */
|
|
202
|
-
lognormal:
|
|
202
|
+
readonly lognormal: NullType;
|
|
203
203
|
}>;
|
|
204
204
|
/** NGBoost configuration type */
|
|
205
205
|
readonly NGBoostConfigType: StructType<{
|
|
206
206
|
/** Number of boosting rounds (default 500) */
|
|
207
|
-
n_estimators: OptionType<IntegerType>;
|
|
207
|
+
readonly n_estimators: OptionType<IntegerType>;
|
|
208
208
|
/** Learning rate / step size shrinkage (default 0.01) */
|
|
209
|
-
learning_rate: OptionType<FloatType>;
|
|
209
|
+
readonly learning_rate: OptionType<FloatType>;
|
|
210
210
|
/** Fraction of samples to use in each iteration (default 1.0) */
|
|
211
|
-
minibatch_frac: OptionType<FloatType>;
|
|
211
|
+
readonly minibatch_frac: OptionType<FloatType>;
|
|
212
212
|
/** Fraction of features to use in each iteration (default 1.0) */
|
|
213
|
-
col_sample: OptionType<FloatType>;
|
|
213
|
+
readonly col_sample: OptionType<FloatType>;
|
|
214
214
|
/** Random seed for reproducibility */
|
|
215
|
-
random_state: OptionType<IntegerType>;
|
|
215
|
+
readonly random_state: OptionType<IntegerType>;
|
|
216
216
|
/** Distribution type (default normal) */
|
|
217
|
-
distribution: OptionType<VariantType<{
|
|
217
|
+
readonly distribution: OptionType<VariantType<{
|
|
218
218
|
/** Normal (Gaussian) distribution */
|
|
219
|
-
normal:
|
|
219
|
+
readonly normal: NullType;
|
|
220
220
|
/** Log-normal distribution (for positive targets) */
|
|
221
|
-
lognormal:
|
|
221
|
+
readonly lognormal: NullType;
|
|
222
222
|
}>>;
|
|
223
223
|
}>;
|
|
224
224
|
/** Prediction configuration type */
|
|
225
225
|
readonly NGBoostPredictConfigType: StructType<{
|
|
226
226
|
/** Confidence level for intervals (default 0.95) */
|
|
227
|
-
confidence_level: OptionType<FloatType>;
|
|
227
|
+
readonly confidence_level: OptionType<FloatType>;
|
|
228
228
|
}>;
|
|
229
229
|
/** Prediction result type */
|
|
230
230
|
readonly NGBoostPredictResultType: StructType<{
|
|
231
231
|
/** Point predictions (mean) */
|
|
232
|
-
predictions: import("@elaraai/east").ArrayType<FloatType>;
|
|
232
|
+
readonly predictions: import("@elaraai/east").ArrayType<FloatType>;
|
|
233
233
|
/** Standard deviation */
|
|
234
|
-
std: OptionType<import("@elaraai/east").ArrayType<FloatType>>;
|
|
234
|
+
readonly std: OptionType<import("@elaraai/east").ArrayType<FloatType>>;
|
|
235
235
|
/** Lower confidence interval */
|
|
236
|
-
lower: OptionType<import("@elaraai/east").ArrayType<FloatType>>;
|
|
236
|
+
readonly lower: OptionType<import("@elaraai/east").ArrayType<FloatType>>;
|
|
237
237
|
/** Upper confidence interval */
|
|
238
|
-
upper: OptionType<import("@elaraai/east").ArrayType<FloatType>>;
|
|
238
|
+
readonly upper: OptionType<import("@elaraai/east").ArrayType<FloatType>>;
|
|
239
239
|
}>;
|
|
240
240
|
/** Model blob type for NGBoost models */
|
|
241
241
|
readonly ModelBlobType: VariantType<{
|
|
242
242
|
/** NGBoost regressor model */
|
|
243
|
-
ngboost_regressor: StructType<{
|
|
243
|
+
readonly ngboost_regressor: StructType<{
|
|
244
244
|
/** Cloudpickle serialized model */
|
|
245
|
-
data: BlobType;
|
|
245
|
+
readonly data: BlobType;
|
|
246
246
|
/** Distribution type used */
|
|
247
|
-
distribution: VariantType<{
|
|
247
|
+
readonly distribution: VariantType<{
|
|
248
248
|
/** Normal (Gaussian) distribution */
|
|
249
|
-
normal:
|
|
249
|
+
readonly normal: NullType;
|
|
250
250
|
/** Log-normal distribution (for positive targets) */
|
|
251
|
-
lognormal:
|
|
251
|
+
readonly lognormal: NullType;
|
|
252
252
|
}>;
|
|
253
253
|
/** Number of input features */
|
|
254
|
-
n_features: IntegerType;
|
|
254
|
+
readonly n_features: IntegerType;
|
|
255
255
|
}>;
|
|
256
256
|
}>;
|
|
257
257
|
};
|
|
@@ -284,83 +284,83 @@ export declare const NGBoost: {
|
|
|
284
284
|
/** Train NGBoost regressor */
|
|
285
285
|
readonly trainRegressor: import("@elaraai/east").PlatformDefinition<[import("@elaraai/east").ArrayType<import("@elaraai/east").ArrayType<FloatType>>, import("@elaraai/east").ArrayType<FloatType>, StructType<{
|
|
286
286
|
/** Number of boosting rounds (default 500) */
|
|
287
|
-
n_estimators: OptionType<IntegerType>;
|
|
287
|
+
readonly n_estimators: OptionType<IntegerType>;
|
|
288
288
|
/** Learning rate / step size shrinkage (default 0.01) */
|
|
289
|
-
learning_rate: OptionType<FloatType>;
|
|
289
|
+
readonly learning_rate: OptionType<FloatType>;
|
|
290
290
|
/** Fraction of samples to use in each iteration (default 1.0) */
|
|
291
|
-
minibatch_frac: OptionType<FloatType>;
|
|
291
|
+
readonly minibatch_frac: OptionType<FloatType>;
|
|
292
292
|
/** Fraction of features to use in each iteration (default 1.0) */
|
|
293
|
-
col_sample: OptionType<FloatType>;
|
|
293
|
+
readonly col_sample: OptionType<FloatType>;
|
|
294
294
|
/** Random seed for reproducibility */
|
|
295
|
-
random_state: OptionType<IntegerType>;
|
|
295
|
+
readonly random_state: OptionType<IntegerType>;
|
|
296
296
|
/** Distribution type (default normal) */
|
|
297
|
-
distribution: OptionType<VariantType<{
|
|
297
|
+
readonly distribution: OptionType<VariantType<{
|
|
298
298
|
/** Normal (Gaussian) distribution */
|
|
299
|
-
normal:
|
|
299
|
+
readonly normal: NullType;
|
|
300
300
|
/** Log-normal distribution (for positive targets) */
|
|
301
|
-
lognormal:
|
|
301
|
+
readonly lognormal: NullType;
|
|
302
302
|
}>>;
|
|
303
303
|
}>], VariantType<{
|
|
304
304
|
/** NGBoost regressor model */
|
|
305
|
-
ngboost_regressor: StructType<{
|
|
305
|
+
readonly ngboost_regressor: StructType<{
|
|
306
306
|
/** Cloudpickle serialized model */
|
|
307
|
-
data: BlobType;
|
|
307
|
+
readonly data: BlobType;
|
|
308
308
|
/** Distribution type used */
|
|
309
|
-
distribution: VariantType<{
|
|
309
|
+
readonly distribution: VariantType<{
|
|
310
310
|
/** Normal (Gaussian) distribution */
|
|
311
|
-
normal:
|
|
311
|
+
readonly normal: NullType;
|
|
312
312
|
/** Log-normal distribution (for positive targets) */
|
|
313
|
-
lognormal:
|
|
313
|
+
readonly lognormal: NullType;
|
|
314
314
|
}>;
|
|
315
315
|
/** Number of input features */
|
|
316
|
-
n_features: IntegerType;
|
|
316
|
+
readonly n_features: IntegerType;
|
|
317
317
|
}>;
|
|
318
318
|
}>>;
|
|
319
319
|
/** Make point predictions with regressor */
|
|
320
320
|
readonly predict: import("@elaraai/east").PlatformDefinition<[VariantType<{
|
|
321
321
|
/** NGBoost regressor model */
|
|
322
|
-
ngboost_regressor: StructType<{
|
|
322
|
+
readonly ngboost_regressor: StructType<{
|
|
323
323
|
/** Cloudpickle serialized model */
|
|
324
|
-
data: BlobType;
|
|
324
|
+
readonly data: BlobType;
|
|
325
325
|
/** Distribution type used */
|
|
326
|
-
distribution: VariantType<{
|
|
326
|
+
readonly distribution: VariantType<{
|
|
327
327
|
/** Normal (Gaussian) distribution */
|
|
328
|
-
normal:
|
|
328
|
+
readonly normal: NullType;
|
|
329
329
|
/** Log-normal distribution (for positive targets) */
|
|
330
|
-
lognormal:
|
|
330
|
+
readonly lognormal: NullType;
|
|
331
331
|
}>;
|
|
332
332
|
/** Number of input features */
|
|
333
|
-
n_features: IntegerType;
|
|
333
|
+
readonly n_features: IntegerType;
|
|
334
334
|
}>;
|
|
335
335
|
}>, import("@elaraai/east").ArrayType<import("@elaraai/east").ArrayType<FloatType>>], import("@elaraai/east").ArrayType<FloatType>>;
|
|
336
336
|
/** Get predictions with uncertainty */
|
|
337
337
|
readonly predictDist: import("@elaraai/east").PlatformDefinition<[VariantType<{
|
|
338
338
|
/** NGBoost regressor model */
|
|
339
|
-
ngboost_regressor: StructType<{
|
|
339
|
+
readonly ngboost_regressor: StructType<{
|
|
340
340
|
/** Cloudpickle serialized model */
|
|
341
|
-
data: BlobType;
|
|
341
|
+
readonly data: BlobType;
|
|
342
342
|
/** Distribution type used */
|
|
343
|
-
distribution: VariantType<{
|
|
343
|
+
readonly distribution: VariantType<{
|
|
344
344
|
/** Normal (Gaussian) distribution */
|
|
345
|
-
normal:
|
|
345
|
+
readonly normal: NullType;
|
|
346
346
|
/** Log-normal distribution (for positive targets) */
|
|
347
|
-
lognormal:
|
|
347
|
+
readonly lognormal: NullType;
|
|
348
348
|
}>;
|
|
349
349
|
/** Number of input features */
|
|
350
|
-
n_features: IntegerType;
|
|
350
|
+
readonly n_features: IntegerType;
|
|
351
351
|
}>;
|
|
352
352
|
}>, import("@elaraai/east").ArrayType<import("@elaraai/east").ArrayType<FloatType>>, StructType<{
|
|
353
353
|
/** Confidence level for intervals (default 0.95) */
|
|
354
|
-
confidence_level: OptionType<FloatType>;
|
|
354
|
+
readonly confidence_level: OptionType<FloatType>;
|
|
355
355
|
}>], StructType<{
|
|
356
356
|
/** Point predictions (mean) */
|
|
357
|
-
predictions: import("@elaraai/east").ArrayType<FloatType>;
|
|
357
|
+
readonly predictions: import("@elaraai/east").ArrayType<FloatType>;
|
|
358
358
|
/** Standard deviation */
|
|
359
|
-
std: OptionType<import("@elaraai/east").ArrayType<FloatType>>;
|
|
359
|
+
readonly std: OptionType<import("@elaraai/east").ArrayType<FloatType>>;
|
|
360
360
|
/** Lower confidence interval */
|
|
361
|
-
lower: OptionType<import("@elaraai/east").ArrayType<FloatType>>;
|
|
361
|
+
readonly lower: OptionType<import("@elaraai/east").ArrayType<FloatType>>;
|
|
362
362
|
/** Upper confidence interval */
|
|
363
|
-
upper: OptionType<import("@elaraai/east").ArrayType<FloatType>>;
|
|
363
|
+
readonly upper: OptionType<import("@elaraai/east").ArrayType<FloatType>>;
|
|
364
364
|
}>>;
|
|
365
365
|
/** Type definitions */
|
|
366
366
|
readonly Types: {
|
|
@@ -371,61 +371,61 @@ export declare const NGBoost: {
|
|
|
371
371
|
/** Distribution type for NGBoost */
|
|
372
372
|
readonly NGBoostDistributionType: VariantType<{
|
|
373
373
|
/** Normal (Gaussian) distribution */
|
|
374
|
-
normal:
|
|
374
|
+
readonly normal: NullType;
|
|
375
375
|
/** Log-normal distribution (for positive targets) */
|
|
376
|
-
lognormal:
|
|
376
|
+
readonly lognormal: NullType;
|
|
377
377
|
}>;
|
|
378
378
|
/** NGBoost configuration type */
|
|
379
379
|
readonly NGBoostConfigType: StructType<{
|
|
380
380
|
/** Number of boosting rounds (default 500) */
|
|
381
|
-
n_estimators: OptionType<IntegerType>;
|
|
381
|
+
readonly n_estimators: OptionType<IntegerType>;
|
|
382
382
|
/** Learning rate / step size shrinkage (default 0.01) */
|
|
383
|
-
learning_rate: OptionType<FloatType>;
|
|
383
|
+
readonly learning_rate: OptionType<FloatType>;
|
|
384
384
|
/** Fraction of samples to use in each iteration (default 1.0) */
|
|
385
|
-
minibatch_frac: OptionType<FloatType>;
|
|
385
|
+
readonly minibatch_frac: OptionType<FloatType>;
|
|
386
386
|
/** Fraction of features to use in each iteration (default 1.0) */
|
|
387
|
-
col_sample: OptionType<FloatType>;
|
|
387
|
+
readonly col_sample: OptionType<FloatType>;
|
|
388
388
|
/** Random seed for reproducibility */
|
|
389
|
-
random_state: OptionType<IntegerType>;
|
|
389
|
+
readonly random_state: OptionType<IntegerType>;
|
|
390
390
|
/** Distribution type (default normal) */
|
|
391
|
-
distribution: OptionType<VariantType<{
|
|
391
|
+
readonly distribution: OptionType<VariantType<{
|
|
392
392
|
/** Normal (Gaussian) distribution */
|
|
393
|
-
normal:
|
|
393
|
+
readonly normal: NullType;
|
|
394
394
|
/** Log-normal distribution (for positive targets) */
|
|
395
|
-
lognormal:
|
|
395
|
+
readonly lognormal: NullType;
|
|
396
396
|
}>>;
|
|
397
397
|
}>;
|
|
398
398
|
/** Prediction configuration type */
|
|
399
399
|
readonly NGBoostPredictConfigType: StructType<{
|
|
400
400
|
/** Confidence level for intervals (default 0.95) */
|
|
401
|
-
confidence_level: OptionType<FloatType>;
|
|
401
|
+
readonly confidence_level: OptionType<FloatType>;
|
|
402
402
|
}>;
|
|
403
403
|
/** Prediction result type */
|
|
404
404
|
readonly NGBoostPredictResultType: StructType<{
|
|
405
405
|
/** Point predictions (mean) */
|
|
406
|
-
predictions: import("@elaraai/east").ArrayType<FloatType>;
|
|
406
|
+
readonly predictions: import("@elaraai/east").ArrayType<FloatType>;
|
|
407
407
|
/** Standard deviation */
|
|
408
|
-
std: OptionType<import("@elaraai/east").ArrayType<FloatType>>;
|
|
408
|
+
readonly std: OptionType<import("@elaraai/east").ArrayType<FloatType>>;
|
|
409
409
|
/** Lower confidence interval */
|
|
410
|
-
lower: OptionType<import("@elaraai/east").ArrayType<FloatType>>;
|
|
410
|
+
readonly lower: OptionType<import("@elaraai/east").ArrayType<FloatType>>;
|
|
411
411
|
/** Upper confidence interval */
|
|
412
|
-
upper: OptionType<import("@elaraai/east").ArrayType<FloatType>>;
|
|
412
|
+
readonly upper: OptionType<import("@elaraai/east").ArrayType<FloatType>>;
|
|
413
413
|
}>;
|
|
414
414
|
/** Model blob type for NGBoost models */
|
|
415
415
|
readonly ModelBlobType: VariantType<{
|
|
416
416
|
/** NGBoost regressor model */
|
|
417
|
-
ngboost_regressor: StructType<{
|
|
417
|
+
readonly ngboost_regressor: StructType<{
|
|
418
418
|
/** Cloudpickle serialized model */
|
|
419
|
-
data: BlobType;
|
|
419
|
+
readonly data: BlobType;
|
|
420
420
|
/** Distribution type used */
|
|
421
|
-
distribution: VariantType<{
|
|
421
|
+
readonly distribution: VariantType<{
|
|
422
422
|
/** Normal (Gaussian) distribution */
|
|
423
|
-
normal:
|
|
423
|
+
readonly normal: NullType;
|
|
424
424
|
/** Log-normal distribution (for positive targets) */
|
|
425
|
-
lognormal:
|
|
425
|
+
readonly lognormal: NullType;
|
|
426
426
|
}>;
|
|
427
427
|
/** Number of input features */
|
|
428
|
-
n_features: IntegerType;
|
|
428
|
+
readonly n_features: IntegerType;
|
|
429
429
|
}>;
|
|
430
430
|
}>;
|
|
431
431
|
};
|
|
@@ -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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"}
|