@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 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