@@ -20,8 +20,8 @@ Install GFO from PyPI using pip:
2020
2121 pip install gradient-free-optimizers
2222
23- This installs GFO with its minimal dependencies (only NumPy), which is sufficient
24- for all core optimization algorithms.
23+ This installs GFO with its core dependencies (NumPy, SciPy, and pandas ), which is
24+ sufficient for all core optimization algorithms.
2525
2626
2727Installation with Extras
@@ -46,7 +46,7 @@ For additional functionality, you can install optional extras:
4646 pip install gradient-free-optimizers[sklearn]
4747
4848 Adds ``scikit-learn `` for surrogate models used in Bayesian Optimization,
49- TPE, Forest Optimizer, and Ensemble Optimizer.
49+ TPE, and Forest Optimizer.
5050
5151 .. tab-item :: Full Installation
5252
@@ -94,9 +94,11 @@ Gradient-Free-Optimizers requires the following packages (automatically installe
9494
9595 * - Package
9696 - Purpose
97- * - ``numpy >= 1.18 ``
97+ * - ``numpy >= 1.18.1, < 3.0.0 ``
9898 - Numerical operations, array handling, and search space definition
99- * - ``pandas >= 1.0 ``
99+ * - ``scipy < 2.0.0 ``
100+ - Scientific computing and statistical functions
101+ * - ``pandas < 3.0.0 ``
100102 - Search data storage and manipulation
101103
102104Optional Dependencies
@@ -111,7 +113,7 @@ Optional Dependencies
111113 * - ``tqdm >= 4.48 `` (extra: ``progress ``)
112114 - Progress bars during optimization
113115 * - ``scikit-learn >= 0.23 `` (extra: ``sklearn ``)
114- - Surrogate models for SMBO algorithms (Bayesian, TPE, Forest, Ensemble )
116+ - Surrogate models for SMBO algorithms (Bayesian, TPE, Forest)
115117
116118
117119----
0 commit comments