@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.
Files changed (53) hide show
  1. package/dist/alns/alns.d.ts +528 -0
  2. package/dist/alns/alns.d.ts.map +1 -0
  3. package/dist/alns/alns.js +238 -0
  4. package/dist/alns/alns.js.map +1 -0
  5. package/dist/gp/gp.d.ts +120 -120
  6. package/dist/gp/gp.d.ts.map +1 -1
  7. package/dist/gp/gp.js +7 -7
  8. package/dist/gp/gp.js.map +1 -1
  9. package/dist/index.d.ts +5 -2
  10. package/dist/index.d.ts.map +1 -1
  11. package/dist/index.js +8 -2
  12. package/dist/index.js.map +1 -1
  13. package/dist/lightgbm/lightgbm.d.ts +168 -168
  14. package/dist/lightning/lightning.d.ts +1501 -0
  15. package/dist/lightning/lightning.d.ts.map +1 -0
  16. package/dist/lightning/lightning.js +376 -0
  17. package/dist/lightning/lightning.js.map +1 -0
  18. package/dist/mads/mads.d.ts +103 -103
  19. package/dist/mads/mads.d.ts.map +1 -1
  20. package/dist/mads/mads.js +5 -5
  21. package/dist/mads/mads.js.map +1 -1
  22. package/dist/mapie/mapie.d.ts +2058 -0
  23. package/dist/mapie/mapie.d.ts.map +1 -0
  24. package/dist/mapie/mapie.js +411 -0
  25. package/dist/mapie/mapie.js.map +1 -0
  26. package/dist/ngboost/ngboost.d.ts +126 -126
  27. package/dist/ngboost/ngboost.d.ts.map +1 -1
  28. package/dist/ngboost/ngboost.js +3 -3
  29. package/dist/ngboost/ngboost.js.map +1 -1
  30. package/dist/optuna/optuna.d.ts +314 -314
  31. package/dist/scipy/scipy.d.ts +535 -429
  32. package/dist/scipy/scipy.d.ts.map +1 -1
  33. package/dist/scipy/scipy.js +56 -3
  34. package/dist/scipy/scipy.js.map +1 -1
  35. package/dist/shap/shap.d.ts +1152 -358
  36. package/dist/shap/shap.d.ts.map +1 -1
  37. package/dist/shap/shap.js +189 -16
  38. package/dist/shap/shap.js.map +1 -1
  39. package/dist/simanneal/simanneal.d.ts +148 -148
  40. package/dist/sklearn/sklearn.d.ts +3104 -1316
  41. package/dist/sklearn/sklearn.d.ts.map +1 -1
  42. package/dist/sklearn/sklearn.js +325 -64
  43. package/dist/sklearn/sklearn.js.map +1 -1
  44. package/dist/torch/torch.d.ts +503 -350
  45. package/dist/torch/torch.d.ts.map +1 -1
  46. package/dist/torch/torch.js +39 -17
  47. package/dist/torch/torch.js.map +1 -1
  48. package/dist/tsconfig.tsbuildinfo +1 -1
  49. package/dist/xgboost/xgboost.d.ts +803 -178
  50. package/dist/xgboost/xgboost.d.ts.map +1 -1
  51. package/dist/xgboost/xgboost.js +102 -1
  52. package/dist/xgboost/xgboost.js.map +1 -1
  53. package/package.json +4 -4
@@ -17,27 +17,27 @@ export { VectorType, MatrixType, LabelVectorType } from "../types.js";
17
17
  */
18
18
  export declare const LightGBMConfigType: StructType<{
19
19
  /** Number of boosting rounds (default 100) */
20
- n_estimators: OptionType<IntegerType>;
20
+ readonly n_estimators: OptionType<IntegerType>;
21
21
  /** Maximum tree depth, -1 for unlimited (default -1) */
22
- max_depth: OptionType<IntegerType>;
22
+ readonly max_depth: OptionType<IntegerType>;
23
23
  /** Learning rate / step size shrinkage (default 0.1) */
24
- learning_rate: OptionType<FloatType>;
24
+ readonly learning_rate: OptionType<FloatType>;
25
25
  /** Maximum number of leaves in one tree (default 31) */
26
- num_leaves: OptionType<IntegerType>;
26
+ readonly num_leaves: OptionType<IntegerType>;
27
27
  /** Minimum number of samples required in a leaf (default 20) */
28
- min_child_samples: OptionType<IntegerType>;
28
+ readonly min_child_samples: OptionType<IntegerType>;
29
29
  /** Subsample ratio of training instances (default 1.0) */
30
- subsample: OptionType<FloatType>;
30
+ readonly subsample: OptionType<FloatType>;
31
31
  /** Subsample ratio of columns when constructing trees (default 1.0) */
32
- colsample_bytree: OptionType<FloatType>;
32
+ readonly colsample_bytree: OptionType<FloatType>;
33
33
  /** L1 regularization term (default 0) */
34
- reg_alpha: OptionType<FloatType>;
34
+ readonly reg_alpha: OptionType<FloatType>;
35
35
  /** L2 regularization term (default 0) */
36
- reg_lambda: OptionType<FloatType>;
36
+ readonly reg_lambda: OptionType<FloatType>;
37
37
  /** Random seed for reproducibility */
38
- random_state: OptionType<IntegerType>;
38
+ readonly random_state: OptionType<IntegerType>;
39
39
  /** Number of parallel threads (default -1 for all cores) */
40
- n_jobs: OptionType<IntegerType>;
40
+ readonly n_jobs: OptionType<IntegerType>;
41
41
  }>;
42
42
  /**
43
43
  * Model blob type for serialized LightGBM models.
@@ -46,20 +46,20 @@ export declare const LightGBMConfigType: StructType<{
46
46
  */
47
47
  export declare const LightGBMModelBlobType: VariantType<{
48
48
  /** LightGBM regressor model */
49
- lightgbm_regressor: StructType<{
49
+ readonly lightgbm_regressor: StructType<{
50
50
  /** Cloudpickle serialized model */
51
- data: BlobType;
51
+ readonly data: BlobType;
52
52
  /** Number of input features */
53
- n_features: IntegerType;
53
+ readonly n_features: IntegerType;
54
54
  }>;
55
55
  /** LightGBM classifier model */
56
- lightgbm_classifier: StructType<{
56
+ readonly lightgbm_classifier: StructType<{
57
57
  /** Cloudpickle serialized model */
58
- data: BlobType;
58
+ readonly data: BlobType;
59
59
  /** Number of input features */
60
- n_features: IntegerType;
60
+ readonly n_features: IntegerType;
61
61
  /** Number of classes */
62
- n_classes: IntegerType;
62
+ readonly n_classes: IntegerType;
63
63
  }>;
64
64
  }>;
65
65
  /**
@@ -72,43 +72,43 @@ export declare const LightGBMModelBlobType: VariantType<{
72
72
  */
73
73
  export declare const lightgbm_train_regressor: import("@elaraai/east").PlatformDefinition<[import("@elaraai/east").ArrayType<import("@elaraai/east").ArrayType<FloatType>>, import("@elaraai/east").ArrayType<FloatType>, StructType<{
74
74
  /** Number of boosting rounds (default 100) */
75
- n_estimators: OptionType<IntegerType>;
75
+ readonly n_estimators: OptionType<IntegerType>;
76
76
  /** Maximum tree depth, -1 for unlimited (default -1) */
77
- max_depth: OptionType<IntegerType>;
77
+ readonly max_depth: OptionType<IntegerType>;
78
78
  /** Learning rate / step size shrinkage (default 0.1) */
79
- learning_rate: OptionType<FloatType>;
79
+ readonly learning_rate: OptionType<FloatType>;
80
80
  /** Maximum number of leaves in one tree (default 31) */
81
- num_leaves: OptionType<IntegerType>;
81
+ readonly num_leaves: OptionType<IntegerType>;
82
82
  /** Minimum number of samples required in a leaf (default 20) */
83
- min_child_samples: OptionType<IntegerType>;
83
+ readonly min_child_samples: OptionType<IntegerType>;
84
84
  /** Subsample ratio of training instances (default 1.0) */
85
- subsample: OptionType<FloatType>;
85
+ readonly subsample: OptionType<FloatType>;
86
86
  /** Subsample ratio of columns when constructing trees (default 1.0) */
87
- colsample_bytree: OptionType<FloatType>;
87
+ readonly colsample_bytree: OptionType<FloatType>;
88
88
  /** L1 regularization term (default 0) */
89
- reg_alpha: OptionType<FloatType>;
89
+ readonly reg_alpha: OptionType<FloatType>;
90
90
  /** L2 regularization term (default 0) */
91
- reg_lambda: OptionType<FloatType>;
91
+ readonly reg_lambda: OptionType<FloatType>;
92
92
  /** Random seed for reproducibility */
93
- random_state: OptionType<IntegerType>;
93
+ readonly random_state: OptionType<IntegerType>;
94
94
  /** Number of parallel threads (default -1 for all cores) */
95
- n_jobs: OptionType<IntegerType>;
95
+ readonly n_jobs: OptionType<IntegerType>;
96
96
  }>], VariantType<{
97
97
  /** LightGBM regressor model */
98
- lightgbm_regressor: StructType<{
98
+ readonly lightgbm_regressor: StructType<{
99
99
  /** Cloudpickle serialized model */
100
- data: BlobType;
100
+ readonly data: BlobType;
101
101
  /** Number of input features */
102
- n_features: IntegerType;
102
+ readonly n_features: IntegerType;
103
103
  }>;
104
104
  /** LightGBM classifier model */
105
- lightgbm_classifier: StructType<{
105
+ readonly lightgbm_classifier: StructType<{
106
106
  /** Cloudpickle serialized model */
107
- data: BlobType;
107
+ readonly data: BlobType;
108
108
  /** Number of input features */
109
- n_features: IntegerType;
109
+ readonly n_features: IntegerType;
110
110
  /** Number of classes */
111
- n_classes: IntegerType;
111
+ readonly n_classes: IntegerType;
112
112
  }>;
113
113
  }>>;
114
114
  /**
@@ -121,43 +121,43 @@ export declare const lightgbm_train_regressor: import("@elaraai/east").PlatformD
121
121
  */
122
122
  export declare const lightgbm_train_classifier: import("@elaraai/east").PlatformDefinition<[import("@elaraai/east").ArrayType<import("@elaraai/east").ArrayType<FloatType>>, import("@elaraai/east").ArrayType<IntegerType>, StructType<{
123
123
  /** Number of boosting rounds (default 100) */
124
- n_estimators: OptionType<IntegerType>;
124
+ readonly n_estimators: OptionType<IntegerType>;
125
125
  /** Maximum tree depth, -1 for unlimited (default -1) */
126
- max_depth: OptionType<IntegerType>;
126
+ readonly max_depth: OptionType<IntegerType>;
127
127
  /** Learning rate / step size shrinkage (default 0.1) */
128
- learning_rate: OptionType<FloatType>;
128
+ readonly learning_rate: OptionType<FloatType>;
129
129
  /** Maximum number of leaves in one tree (default 31) */
130
- num_leaves: OptionType<IntegerType>;
130
+ readonly num_leaves: OptionType<IntegerType>;
131
131
  /** Minimum number of samples required in a leaf (default 20) */
132
- min_child_samples: OptionType<IntegerType>;
132
+ readonly min_child_samples: OptionType<IntegerType>;
133
133
  /** Subsample ratio of training instances (default 1.0) */
134
- subsample: OptionType<FloatType>;
134
+ readonly subsample: OptionType<FloatType>;
135
135
  /** Subsample ratio of columns when constructing trees (default 1.0) */
136
- colsample_bytree: OptionType<FloatType>;
136
+ readonly colsample_bytree: OptionType<FloatType>;
137
137
  /** L1 regularization term (default 0) */
138
- reg_alpha: OptionType<FloatType>;
138
+ readonly reg_alpha: OptionType<FloatType>;
139
139
  /** L2 regularization term (default 0) */
140
- reg_lambda: OptionType<FloatType>;
140
+ readonly reg_lambda: OptionType<FloatType>;
141
141
  /** Random seed for reproducibility */
142
- random_state: OptionType<IntegerType>;
142
+ readonly random_state: OptionType<IntegerType>;
143
143
  /** Number of parallel threads (default -1 for all cores) */
144
- n_jobs: OptionType<IntegerType>;
144
+ readonly n_jobs: OptionType<IntegerType>;
145
145
  }>], VariantType<{
146
146
  /** LightGBM regressor model */
147
- lightgbm_regressor: StructType<{
147
+ readonly lightgbm_regressor: StructType<{
148
148
  /** Cloudpickle serialized model */
149
- data: BlobType;
149
+ readonly data: BlobType;
150
150
  /** Number of input features */
151
- n_features: IntegerType;
151
+ readonly n_features: IntegerType;
152
152
  }>;
153
153
  /** LightGBM classifier model */
154
- lightgbm_classifier: StructType<{
154
+ readonly lightgbm_classifier: StructType<{
155
155
  /** Cloudpickle serialized model */
156
- data: BlobType;
156
+ readonly data: BlobType;
157
157
  /** Number of input features */
158
- n_features: IntegerType;
158
+ readonly n_features: IntegerType;
159
159
  /** Number of classes */
160
- n_classes: IntegerType;
160
+ readonly n_classes: IntegerType;
161
161
  }>;
162
162
  }>>;
163
163
  /**
@@ -169,20 +169,20 @@ export declare const lightgbm_train_classifier: import("@elaraai/east").Platform
169
169
  */
170
170
  export declare const lightgbm_predict: import("@elaraai/east").PlatformDefinition<[VariantType<{
171
171
  /** LightGBM regressor model */
172
- lightgbm_regressor: StructType<{
172
+ readonly lightgbm_regressor: StructType<{
173
173
  /** Cloudpickle serialized model */
174
- data: BlobType;
174
+ readonly data: BlobType;
175
175
  /** Number of input features */
176
- n_features: IntegerType;
176
+ readonly n_features: IntegerType;
177
177
  }>;
178
178
  /** LightGBM classifier model */
179
- lightgbm_classifier: StructType<{
179
+ readonly lightgbm_classifier: StructType<{
180
180
  /** Cloudpickle serialized model */
181
- data: BlobType;
181
+ readonly data: BlobType;
182
182
  /** Number of input features */
183
- n_features: IntegerType;
183
+ readonly n_features: IntegerType;
184
184
  /** Number of classes */
185
- n_classes: IntegerType;
185
+ readonly n_classes: IntegerType;
186
186
  }>;
187
187
  }>, import("@elaraai/east").ArrayType<import("@elaraai/east").ArrayType<FloatType>>], import("@elaraai/east").ArrayType<FloatType>>;
188
188
  /**
@@ -194,20 +194,20 @@ export declare const lightgbm_predict: import("@elaraai/east").PlatformDefinitio
194
194
  */
195
195
  export declare const lightgbm_predict_class: import("@elaraai/east").PlatformDefinition<[VariantType<{
196
196
  /** LightGBM regressor model */
197
- lightgbm_regressor: StructType<{
197
+ readonly lightgbm_regressor: StructType<{
198
198
  /** Cloudpickle serialized model */
199
- data: BlobType;
199
+ readonly data: BlobType;
200
200
  /** Number of input features */
201
- n_features: IntegerType;
201
+ readonly n_features: IntegerType;
202
202
  }>;
203
203
  /** LightGBM classifier model */
204
- lightgbm_classifier: StructType<{
204
+ readonly lightgbm_classifier: StructType<{
205
205
  /** Cloudpickle serialized model */
206
- data: BlobType;
206
+ readonly data: BlobType;
207
207
  /** Number of input features */
208
- n_features: IntegerType;
208
+ readonly n_features: IntegerType;
209
209
  /** Number of classes */
210
- n_classes: IntegerType;
210
+ readonly n_classes: IntegerType;
211
211
  }>;
212
212
  }>, import("@elaraai/east").ArrayType<import("@elaraai/east").ArrayType<FloatType>>], import("@elaraai/east").ArrayType<IntegerType>>;
213
213
  /**
@@ -219,20 +219,20 @@ export declare const lightgbm_predict_class: import("@elaraai/east").PlatformDef
219
219
  */
220
220
  export declare const lightgbm_predict_proba: import("@elaraai/east").PlatformDefinition<[VariantType<{
221
221
  /** LightGBM regressor model */
222
- lightgbm_regressor: StructType<{
222
+ readonly lightgbm_regressor: StructType<{
223
223
  /** Cloudpickle serialized model */
224
- data: BlobType;
224
+ readonly data: BlobType;
225
225
  /** Number of input features */
226
- n_features: IntegerType;
226
+ readonly n_features: IntegerType;
227
227
  }>;
228
228
  /** LightGBM classifier model */
229
- lightgbm_classifier: StructType<{
229
+ readonly lightgbm_classifier: StructType<{
230
230
  /** Cloudpickle serialized model */
231
- data: BlobType;
231
+ readonly data: BlobType;
232
232
  /** Number of input features */
233
- n_features: IntegerType;
233
+ readonly n_features: IntegerType;
234
234
  /** Number of classes */
235
- n_classes: IntegerType;
235
+ readonly n_classes: IntegerType;
236
236
  }>;
237
237
  }>, import("@elaraai/east").ArrayType<import("@elaraai/east").ArrayType<FloatType>>], import("@elaraai/east").ArrayType<import("@elaraai/east").ArrayType<FloatType>>>;
238
238
  /**
@@ -248,45 +248,45 @@ export declare const LightGBMTypes: {
248
248
  /** LightGBM configuration type */
249
249
  readonly LightGBMConfigType: StructType<{
250
250
  /** Number of boosting rounds (default 100) */
251
- n_estimators: OptionType<IntegerType>;
251
+ readonly n_estimators: OptionType<IntegerType>;
252
252
  /** Maximum tree depth, -1 for unlimited (default -1) */
253
- max_depth: OptionType<IntegerType>;
253
+ readonly max_depth: OptionType<IntegerType>;
254
254
  /** Learning rate / step size shrinkage (default 0.1) */
255
- learning_rate: OptionType<FloatType>;
255
+ readonly learning_rate: OptionType<FloatType>;
256
256
  /** Maximum number of leaves in one tree (default 31) */
257
- num_leaves: OptionType<IntegerType>;
257
+ readonly num_leaves: OptionType<IntegerType>;
258
258
  /** Minimum number of samples required in a leaf (default 20) */
259
- min_child_samples: OptionType<IntegerType>;
259
+ readonly min_child_samples: OptionType<IntegerType>;
260
260
  /** Subsample ratio of training instances (default 1.0) */
261
- subsample: OptionType<FloatType>;
261
+ readonly subsample: OptionType<FloatType>;
262
262
  /** Subsample ratio of columns when constructing trees (default 1.0) */
263
- colsample_bytree: OptionType<FloatType>;
263
+ readonly colsample_bytree: OptionType<FloatType>;
264
264
  /** L1 regularization term (default 0) */
265
- reg_alpha: OptionType<FloatType>;
265
+ readonly reg_alpha: OptionType<FloatType>;
266
266
  /** L2 regularization term (default 0) */
267
- reg_lambda: OptionType<FloatType>;
267
+ readonly reg_lambda: OptionType<FloatType>;
268
268
  /** Random seed for reproducibility */
269
- random_state: OptionType<IntegerType>;
269
+ readonly random_state: OptionType<IntegerType>;
270
270
  /** Number of parallel threads (default -1 for all cores) */
271
- n_jobs: OptionType<IntegerType>;
271
+ readonly n_jobs: OptionType<IntegerType>;
272
272
  }>;
273
273
  /** Model blob type for LightGBM models */
274
274
  readonly ModelBlobType: VariantType<{
275
275
  /** LightGBM regressor model */
276
- lightgbm_regressor: StructType<{
276
+ readonly lightgbm_regressor: StructType<{
277
277
  /** Cloudpickle serialized model */
278
- data: BlobType;
278
+ readonly data: BlobType;
279
279
  /** Number of input features */
280
- n_features: IntegerType;
280
+ readonly n_features: IntegerType;
281
281
  }>;
282
282
  /** LightGBM classifier model */
283
- lightgbm_classifier: StructType<{
283
+ readonly lightgbm_classifier: StructType<{
284
284
  /** Cloudpickle serialized model */
285
- data: BlobType;
285
+ readonly data: BlobType;
286
286
  /** Number of input features */
287
- n_features: IntegerType;
287
+ readonly n_features: IntegerType;
288
288
  /** Number of classes */
289
- n_classes: IntegerType;
289
+ readonly n_classes: IntegerType;
290
290
  }>;
291
291
  }>;
292
292
  };
@@ -299,142 +299,142 @@ export declare const LightGBM: {
299
299
  /** Train LightGBM regressor */
300
300
  readonly trainRegressor: import("@elaraai/east").PlatformDefinition<[import("@elaraai/east").ArrayType<import("@elaraai/east").ArrayType<FloatType>>, import("@elaraai/east").ArrayType<FloatType>, StructType<{
301
301
  /** Number of boosting rounds (default 100) */
302
- n_estimators: OptionType<IntegerType>;
302
+ readonly n_estimators: OptionType<IntegerType>;
303
303
  /** Maximum tree depth, -1 for unlimited (default -1) */
304
- max_depth: OptionType<IntegerType>;
304
+ readonly max_depth: OptionType<IntegerType>;
305
305
  /** Learning rate / step size shrinkage (default 0.1) */
306
- learning_rate: OptionType<FloatType>;
306
+ readonly learning_rate: OptionType<FloatType>;
307
307
  /** Maximum number of leaves in one tree (default 31) */
308
- num_leaves: OptionType<IntegerType>;
308
+ readonly num_leaves: OptionType<IntegerType>;
309
309
  /** Minimum number of samples required in a leaf (default 20) */
310
- min_child_samples: OptionType<IntegerType>;
310
+ readonly min_child_samples: OptionType<IntegerType>;
311
311
  /** Subsample ratio of training instances (default 1.0) */
312
- subsample: OptionType<FloatType>;
312
+ readonly subsample: OptionType<FloatType>;
313
313
  /** Subsample ratio of columns when constructing trees (default 1.0) */
314
- colsample_bytree: OptionType<FloatType>;
314
+ readonly colsample_bytree: OptionType<FloatType>;
315
315
  /** L1 regularization term (default 0) */
316
- reg_alpha: OptionType<FloatType>;
316
+ readonly reg_alpha: OptionType<FloatType>;
317
317
  /** L2 regularization term (default 0) */
318
- reg_lambda: OptionType<FloatType>;
318
+ readonly reg_lambda: OptionType<FloatType>;
319
319
  /** Random seed for reproducibility */
320
- random_state: OptionType<IntegerType>;
320
+ readonly random_state: OptionType<IntegerType>;
321
321
  /** Number of parallel threads (default -1 for all cores) */
322
- n_jobs: OptionType<IntegerType>;
322
+ readonly n_jobs: OptionType<IntegerType>;
323
323
  }>], VariantType<{
324
324
  /** LightGBM regressor model */
325
- lightgbm_regressor: StructType<{
325
+ readonly lightgbm_regressor: StructType<{
326
326
  /** Cloudpickle serialized model */
327
- data: BlobType;
327
+ readonly data: BlobType;
328
328
  /** Number of input features */
329
- n_features: IntegerType;
329
+ readonly n_features: IntegerType;
330
330
  }>;
331
331
  /** LightGBM classifier model */
332
- lightgbm_classifier: StructType<{
332
+ readonly lightgbm_classifier: StructType<{
333
333
  /** Cloudpickle serialized model */
334
- data: BlobType;
334
+ readonly data: BlobType;
335
335
  /** Number of input features */
336
- n_features: IntegerType;
336
+ readonly n_features: IntegerType;
337
337
  /** Number of classes */
338
- n_classes: IntegerType;
338
+ readonly n_classes: IntegerType;
339
339
  }>;
340
340
  }>>;
341
341
  /** Train LightGBM classifier */
342
342
  readonly trainClassifier: import("@elaraai/east").PlatformDefinition<[import("@elaraai/east").ArrayType<import("@elaraai/east").ArrayType<FloatType>>, import("@elaraai/east").ArrayType<IntegerType>, StructType<{
343
343
  /** Number of boosting rounds (default 100) */
344
- n_estimators: OptionType<IntegerType>;
344
+ readonly n_estimators: OptionType<IntegerType>;
345
345
  /** Maximum tree depth, -1 for unlimited (default -1) */
346
- max_depth: OptionType<IntegerType>;
346
+ readonly max_depth: OptionType<IntegerType>;
347
347
  /** Learning rate / step size shrinkage (default 0.1) */
348
- learning_rate: OptionType<FloatType>;
348
+ readonly learning_rate: OptionType<FloatType>;
349
349
  /** Maximum number of leaves in one tree (default 31) */
350
- num_leaves: OptionType<IntegerType>;
350
+ readonly num_leaves: OptionType<IntegerType>;
351
351
  /** Minimum number of samples required in a leaf (default 20) */
352
- min_child_samples: OptionType<IntegerType>;
352
+ readonly min_child_samples: OptionType<IntegerType>;
353
353
  /** Subsample ratio of training instances (default 1.0) */
354
- subsample: OptionType<FloatType>;
354
+ readonly subsample: OptionType<FloatType>;
355
355
  /** Subsample ratio of columns when constructing trees (default 1.0) */
356
- colsample_bytree: OptionType<FloatType>;
356
+ readonly colsample_bytree: OptionType<FloatType>;
357
357
  /** L1 regularization term (default 0) */
358
- reg_alpha: OptionType<FloatType>;
358
+ readonly reg_alpha: OptionType<FloatType>;
359
359
  /** L2 regularization term (default 0) */
360
- reg_lambda: OptionType<FloatType>;
360
+ readonly reg_lambda: OptionType<FloatType>;
361
361
  /** Random seed for reproducibility */
362
- random_state: OptionType<IntegerType>;
362
+ readonly random_state: OptionType<IntegerType>;
363
363
  /** Number of parallel threads (default -1 for all cores) */
364
- n_jobs: OptionType<IntegerType>;
364
+ readonly n_jobs: OptionType<IntegerType>;
365
365
  }>], VariantType<{
366
366
  /** LightGBM regressor model */
367
- lightgbm_regressor: StructType<{
367
+ readonly lightgbm_regressor: StructType<{
368
368
  /** Cloudpickle serialized model */
369
- data: BlobType;
369
+ readonly data: BlobType;
370
370
  /** Number of input features */
371
- n_features: IntegerType;
371
+ readonly n_features: IntegerType;
372
372
  }>;
373
373
  /** LightGBM classifier model */
374
- lightgbm_classifier: StructType<{
374
+ readonly lightgbm_classifier: StructType<{
375
375
  /** Cloudpickle serialized model */
376
- data: BlobType;
376
+ readonly data: BlobType;
377
377
  /** Number of input features */
378
- n_features: IntegerType;
378
+ readonly n_features: IntegerType;
379
379
  /** Number of classes */
380
- n_classes: IntegerType;
380
+ readonly n_classes: IntegerType;
381
381
  }>;
382
382
  }>>;
383
383
  /** Make predictions with regressor */
384
384
  readonly predict: import("@elaraai/east").PlatformDefinition<[VariantType<{
385
385
  /** LightGBM regressor model */
386
- lightgbm_regressor: StructType<{
386
+ readonly lightgbm_regressor: StructType<{
387
387
  /** Cloudpickle serialized model */
388
- data: BlobType;
388
+ readonly data: BlobType;
389
389
  /** Number of input features */
390
- n_features: IntegerType;
390
+ readonly n_features: IntegerType;
391
391
  }>;
392
392
  /** LightGBM classifier model */
393
- lightgbm_classifier: StructType<{
393
+ readonly lightgbm_classifier: StructType<{
394
394
  /** Cloudpickle serialized model */
395
- data: BlobType;
395
+ readonly data: BlobType;
396
396
  /** Number of input features */
397
- n_features: IntegerType;
397
+ readonly n_features: IntegerType;
398
398
  /** Number of classes */
399
- n_classes: IntegerType;
399
+ readonly n_classes: IntegerType;
400
400
  }>;
401
401
  }>, import("@elaraai/east").ArrayType<import("@elaraai/east").ArrayType<FloatType>>], import("@elaraai/east").ArrayType<FloatType>>;
402
402
  /** Predict class labels with classifier */
403
403
  readonly predictClass: import("@elaraai/east").PlatformDefinition<[VariantType<{
404
404
  /** LightGBM regressor model */
405
- lightgbm_regressor: StructType<{
405
+ readonly lightgbm_regressor: StructType<{
406
406
  /** Cloudpickle serialized model */
407
- data: BlobType;
407
+ readonly data: BlobType;
408
408
  /** Number of input features */
409
- n_features: IntegerType;
409
+ readonly n_features: IntegerType;
410
410
  }>;
411
411
  /** LightGBM classifier model */
412
- lightgbm_classifier: StructType<{
412
+ readonly lightgbm_classifier: StructType<{
413
413
  /** Cloudpickle serialized model */
414
- data: BlobType;
414
+ readonly data: BlobType;
415
415
  /** Number of input features */
416
- n_features: IntegerType;
416
+ readonly n_features: IntegerType;
417
417
  /** Number of classes */
418
- n_classes: IntegerType;
418
+ readonly n_classes: IntegerType;
419
419
  }>;
420
420
  }>, import("@elaraai/east").ArrayType<import("@elaraai/east").ArrayType<FloatType>>], import("@elaraai/east").ArrayType<IntegerType>>;
421
421
  /** Get class probabilities from classifier */
422
422
  readonly predictProba: import("@elaraai/east").PlatformDefinition<[VariantType<{
423
423
  /** LightGBM regressor model */
424
- lightgbm_regressor: StructType<{
424
+ readonly lightgbm_regressor: StructType<{
425
425
  /** Cloudpickle serialized model */
426
- data: BlobType;
426
+ readonly data: BlobType;
427
427
  /** Number of input features */
428
- n_features: IntegerType;
428
+ readonly n_features: IntegerType;
429
429
  }>;
430
430
  /** LightGBM classifier model */
431
- lightgbm_classifier: StructType<{
431
+ readonly lightgbm_classifier: StructType<{
432
432
  /** Cloudpickle serialized model */
433
- data: BlobType;
433
+ readonly data: BlobType;
434
434
  /** Number of input features */
435
- n_features: IntegerType;
435
+ readonly n_features: IntegerType;
436
436
  /** Number of classes */
437
- n_classes: IntegerType;
437
+ readonly n_classes: IntegerType;
438
438
  }>;
439
439
  }>, import("@elaraai/east").ArrayType<import("@elaraai/east").ArrayType<FloatType>>], import("@elaraai/east").ArrayType<import("@elaraai/east").ArrayType<FloatType>>>;
440
440
  /** Type definitions */
@@ -448,45 +448,45 @@ export declare const LightGBM: {
448
448
  /** LightGBM configuration type */
449
449
  readonly LightGBMConfigType: StructType<{
450
450
  /** Number of boosting rounds (default 100) */
451
- n_estimators: OptionType<IntegerType>;
451
+ readonly n_estimators: OptionType<IntegerType>;
452
452
  /** Maximum tree depth, -1 for unlimited (default -1) */
453
- max_depth: OptionType<IntegerType>;
453
+ readonly max_depth: OptionType<IntegerType>;
454
454
  /** Learning rate / step size shrinkage (default 0.1) */
455
- learning_rate: OptionType<FloatType>;
455
+ readonly learning_rate: OptionType<FloatType>;
456
456
  /** Maximum number of leaves in one tree (default 31) */
457
- num_leaves: OptionType<IntegerType>;
457
+ readonly num_leaves: OptionType<IntegerType>;
458
458
  /** Minimum number of samples required in a leaf (default 20) */
459
- min_child_samples: OptionType<IntegerType>;
459
+ readonly min_child_samples: OptionType<IntegerType>;
460
460
  /** Subsample ratio of training instances (default 1.0) */
461
- subsample: OptionType<FloatType>;
461
+ readonly subsample: OptionType<FloatType>;
462
462
  /** Subsample ratio of columns when constructing trees (default 1.0) */
463
- colsample_bytree: OptionType<FloatType>;
463
+ readonly colsample_bytree: OptionType<FloatType>;
464
464
  /** L1 regularization term (default 0) */
465
- reg_alpha: OptionType<FloatType>;
465
+ readonly reg_alpha: OptionType<FloatType>;
466
466
  /** L2 regularization term (default 0) */
467
- reg_lambda: OptionType<FloatType>;
467
+ readonly reg_lambda: OptionType<FloatType>;
468
468
  /** Random seed for reproducibility */
469
- random_state: OptionType<IntegerType>;
469
+ readonly random_state: OptionType<IntegerType>;
470
470
  /** Number of parallel threads (default -1 for all cores) */
471
- n_jobs: OptionType<IntegerType>;
471
+ readonly n_jobs: OptionType<IntegerType>;
472
472
  }>;
473
473
  /** Model blob type for LightGBM models */
474
474
  readonly ModelBlobType: VariantType<{
475
475
  /** LightGBM regressor model */
476
- lightgbm_regressor: StructType<{
476
+ readonly lightgbm_regressor: StructType<{
477
477
  /** Cloudpickle serialized model */
478
- data: BlobType;
478
+ readonly data: BlobType;
479
479
  /** Number of input features */
480
- n_features: IntegerType;
480
+ readonly n_features: IntegerType;
481
481
  }>;
482
482
  /** LightGBM classifier model */
483
- lightgbm_classifier: StructType<{
483
+ readonly lightgbm_classifier: StructType<{
484
484
  /** Cloudpickle serialized model */
485
- data: BlobType;
485
+ readonly data: BlobType;
486
486
  /** Number of input features */
487
- n_features: IntegerType;
487
+ readonly n_features: IntegerType;
488
488
  /** Number of classes */
489
- n_classes: IntegerType;
489
+ readonly n_classes: IntegerType;
490
490
  }>;
491
491
  }>;
492
492
  };