Skip to content

Commit c3be46c

Browse files
committed
Fix: review comments
1 parent aaa8b30 commit c3be46c

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Following that we'll tell you about how you can test your changes locally and th
4646
# If you missed the --recurse-submodules arg during clone or need to install the
4747
# submodule manually, then execute the following line:
4848
#
49-
# git submodule udate --init --recursive
49+
# git submodule update --init --recursive
5050

5151
# ... Alternatively, if you would prefer a more manual method
5252
# Show all the available branches with a * beside your current one

autosklearn/automl.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1928,7 +1928,6 @@ def has_key(rv, key):
19281928
table_dict[model_id]['ensemble_weight'] = weight
19291929

19301930
table = pd.DataFrame.from_dict(table_dict, orient='index')
1931-
table.sort_values(by='cost', inplace=True)
19321931

19331932
# Checking which resampling strategy is chosen and selecting the appropriate models
19341933
is_cv = (self._resampling_strategy == "cv")

autosklearn/metalearning/optimizers/metalearn_optimizer/metalearner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def _learn(self, exclude_double_configurations=True):
111111
except KeyError:
112112
# TODO should I really except this?
113113
self.logger.info("Could not find runs for instance %s" % task_id)
114-
runs[task_id] = pd.Series([], name=task_id, dtype=np.float64)
114+
runs[task_id] = pd.Series([], name=task_id, dtype=float)
115115

116116
runs = pd.DataFrame(runs)
117117

doc/releases.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Version 0.14.4
2222
* Maint #1325: Test workflow can now be manually triggered
2323
* Maint #1332: Update docstring and typing of ``include`` and ``exclude`` params
2424
* Add #1260: Support for Python 3.10
25-
* Add #1318: First update to use the shared backend in ``automl_common``
25+
* Add #1318: First update to use the shared backend in a new submodule `automl_common <https://github.com/automl/automl_common>`_
2626
* Fix #1339: Resolve dependancy issues with ``sphinx_toolbox``
2727
* Fix #1335: Fix issue where some regression algorithm gave incorrect output dimensions as raised in #1297
2828
* Doc #1340: Update example for predefined splits

0 commit comments

Comments
 (0)