@elaraai/east-py-datascience 0.0.2-beta.66 → 0.0.2-beta.68
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/README.md +39 -0
- package/dist/mapie/mapie.d.ts +1601 -182
- package/dist/mapie/mapie.d.ts.map +1 -1
- package/dist/mapie/mapie.js +9 -8
- package/dist/mapie/mapie.js.map +1 -1
- package/dist/shap/shap.d.ts +1483 -97
- package/dist/shap/shap.d.ts.map +1 -1
- package/dist/shap/shap.js +19 -19
- package/dist/shap/shap.js.map +1 -1
- package/dist/sklearn/sklearn.d.ts +8 -0
- package/dist/sklearn/sklearn.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/xgboost/xgboost.d.ts +162 -0
- package/dist/xgboost/xgboost.d.ts.map +1 -1
- package/dist/xgboost/xgboost.js +16 -0
- package/dist/xgboost/xgboost.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,6 +14,45 @@
|
|
|
14
14
|
npm install @elaraai/east-py-datascience @elaraai/east
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
+
### Python Optional Dependencies
|
|
18
|
+
|
|
19
|
+
Each module has its own optional Python dependencies to avoid installing unnecessary packages. Install only the extras you need:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
# Single extra
|
|
23
|
+
pip install "east-py-datascience[scipy]"
|
|
24
|
+
|
|
25
|
+
# Multiple extras
|
|
26
|
+
pip install "east-py-datascience[scipy,sklearn,xgboost]"
|
|
27
|
+
|
|
28
|
+
# All extras
|
|
29
|
+
pip install "east-py-datascience[all]"
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
When using a git dependency in `pyproject.toml`:
|
|
33
|
+
```toml
|
|
34
|
+
"east-py-datascience[scipy] @ git+https://github.com/elaraai/east-py@main#subdirectory=packages/east-py-datascience"
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
| Module | Extra | Python Packages |
|
|
38
|
+
|--------|-------|-----------------|
|
|
39
|
+
| **MADS** | `mads` | PyNomadBBO |
|
|
40
|
+
| **Optuna** | `optuna` | optuna |
|
|
41
|
+
| **SimAnneal** | `simanneal` | simanneal |
|
|
42
|
+
| **Scipy** | `scipy` | scipy, cloudpickle |
|
|
43
|
+
| **Optimization** | *(none)* | *(core only — numpy)* |
|
|
44
|
+
| **GoogleOr** | `google-or` | ortools |
|
|
45
|
+
| **Sklearn** | `sklearn` | scikit-learn, skl2onnx, onnxruntime |
|
|
46
|
+
| **XGBoost** | `xgboost` | xgboost, cloudpickle |
|
|
47
|
+
| **LightGBM** | `lightgbm` | lightgbm, cloudpickle |
|
|
48
|
+
| **NGBoost** | `ngboost` | ngboost, cloudpickle |
|
|
49
|
+
| **Torch** | `torch` | torch, cloudpickle |
|
|
50
|
+
| **GP** | `gp` | scikit-learn, cloudpickle |
|
|
51
|
+
| **Lightning** | `lightning` | torch, pytorch-lightning, cloudpickle |
|
|
52
|
+
| **Shap** | `shap` | shap, cloudpickle |
|
|
53
|
+
| **MAPIE** | `mapie` | mapie, cloudpickle |
|
|
54
|
+
| **ALNS** | `alns` | alns |
|
|
55
|
+
|
|
17
56
|
## Quick Start
|
|
18
57
|
|
|
19
58
|
```typescript
|