File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ You can install using either ``pip`` or ``conda``. See details `here <https://sk
49
49
Requirements
50
50
~~~~~~~~~~~~
51
51
52
- - Python 3.10, or 3.11
52
+ - Python 3.10, 3.11, or 3.12.
53
53
- `beautifulsoup4 <http://www.crummy.com/software/BeautifulSoup/ >`__
54
54
- `gridmap <https://pypi.org/project/gridmap/ >`__ (only required if you plan
55
55
to run things in parallel on a DRMAA-compatible cluster)
Original file line number Diff line number Diff line change @@ -603,13 +603,13 @@ and fixed parameters.
603
603
.. note ::
604
604
Tuples are not supported in the config file, and will lead to parsing errors.
605
605
Make sure to replace tuples with lists when specifying fixed parameters.
606
- For example, the following parameter contains a tuple:
606
+ As an example, consider the following parameter that's usually defined as a tuple in scikit-learn :
607
607
608
608
.. code-block :: python
609
609
610
610
{' hidden_layer_sizes' : (28 , 28 )}
611
611
612
- To specify it in `fixed_parameter `, use a list:
612
+ To specify it in `fixed_parameters `, use a list instead :
613
613
614
614
.. code-block :: python
615
615
@@ -1213,13 +1213,13 @@ SVR
1213
1213
experiment and are best left up to the user.
1214
1214
2. Tuples are not supported in the config file, and will lead to parsing errors.
1215
1215
Make sure to replace tuples with lists when specifying fixed parameters.
1216
- For example, the following parameter contains a tuple:
1216
+ As an example, consider the following parameter that's usually defined as a tuple in scikit-learn :
1217
1217
1218
1218
.. code-block :: python
1219
1219
1220
1220
{' hidden_layer_sizes' : (28 , 28 )}
1221
1221
1222
- To specify it in `param_grids `, use a list:
1222
+ To specify it in `param_grids `, use a list instead :
1223
1223
1224
1224
.. code-block :: python
1225
1225
You can’t perform that action at this time.
0 commit comments