Skip to content

Commit d12659d

Browse files
authored
Release v0.67.0 (#3968)
* Release v0.67.0 * Lint fix. * Lint fix.
1 parent aee70ba commit d12659d

File tree

54 files changed

+16
-131
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+16
-131
lines changed

docs/source/release_notes.rst

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,24 @@ Release Notes
33
**Future Releases**
44
* Enhancements
55
* Fixes
6-
* Re-added ``TimeSeriesPipeline.should_skip_featurization`` to fix bug where data would get featurized unnecessarily :pr:`3964`
7-
* Allow float categories to be passed into CatBoost estimators :pr:`3966`
86
* Changes
9-
* Update pyproject.toml to correctly specify the data filepaths :pr:`3967`
107
* Documentation Changes
11-
* Added demo for prediction intervals :pr:`3954`
128
* Testing Changes
139

1410
.. warning::
1511

1612
**Breaking Changes**
1713

1814

15+
**v0.67.0 Jan. 31, 2023**
16+
* Fixes
17+
* Re-added ``TimeSeriesPipeline.should_skip_featurization`` to fix bug where data would get featurized unnecessarily :pr:`3964`
18+
* Allow float categories to be passed into CatBoost estimators :pr:`3966`
19+
* Changes
20+
* Update pyproject.toml to correctly specify the data filepaths :pr:`3967`
21+
* Documentation Changes
22+
* Added demo for prediction intervals :pr:`3954`
23+
1924
**v0.66.1 Jan. 26, 2023**
2025
* Fixes
2126
* Updated ``LabelEncoder`` to store the original typing information :pr:`3960`

docs/source/user_guide/data_checks.ipynb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -805,7 +805,6 @@
805805
"\n",
806806
"\n",
807807
"class MyCustomDataChecks(DataChecks):\n",
808-
"\n",
809808
" data_checks = [\n",
810809
" NullDataCheck,\n",
811810
" InvalidTargetDataCheck,\n",

docs/source/user_guide/model_understanding.ipynb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -783,7 +783,6 @@
783783
"\n",
784784
"\n",
785785
"def hinge_loss(y_true, y_pred_proba):\n",
786-
"\n",
787786
" probabilities = np.clip(y_pred_proba.iloc[:, 1], 0.001, 0.999)\n",
788787
" y_true[y_true == 0] = -1\n",
789788
"\n",

evalml/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@
2323
warnings.filterwarnings("ignore", category=FutureWarning)
2424
warnings.filterwarnings("ignore", category=DeprecationWarning)
2525

26-
__version__ = "0.66.1"
26+
__version__ = "0.67.0"

evalml/data_checks/null_data_check.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,6 @@ def validate(self, X, y=None):
280280
)
281281

282282
if moderately_null_cols:
283-
284283
impute_strategies_dict = {}
285284
for col in moderately_null_cols:
286285
col_in_df = X.ww[col]

evalml/model_understanding/feature_explanations.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ def readable_explanation(
4343
)
4444

4545
if importance_method == "permutation":
46-
4746
if objective == "auto":
4847
objective = evalml.automl.get_default_primary_search_objective(
4948
pipeline.problem_type,

evalml/pipelines/component_graph.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,6 @@ def _get_feature_provenance(self, input_feature_names):
585585
for component_instance in transformers:
586586
component_provenance = component_instance._get_feature_provenance()
587587
for component_input, component_output in component_provenance.items():
588-
589588
# Case 1: The transformer created features from one of the original features
590589
if component_input in provenance:
591590
provenance[component_input] = provenance[component_input].union(

evalml/pipelines/components/transformers/encoders/onehot_encoder.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,6 @@ def _get_feature_names(self):
277277
unique_encoded_columns = []
278278
encoded_features_to_drop = []
279279
for cat_index, category in enumerate(column_categories):
280-
281280
# Drop categories specified by the user
282281
if (
283282
self._encoder.drop_idx_ is not None

evalml/pipelines/components/transformers/feature_selection/rf_regressor_feature_selector.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ def __init__(
4747
random_seed=0,
4848
**kwargs,
4949
):
50-
5150
parameters = {
5251
"number_features": number_features,
5352
"n_estimators": n_estimators,

evalml/pipelines/components/transformers/preprocessing/time_series_featurizer.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,6 @@ def _compute_delays(self, X_ww, y):
241241
X_ww[categorical_columns],
242242
)
243243
for col_name in cols_to_delay:
244-
245244
col = X_ww[col_name]
246245
if col_name in categorical_columns:
247246
col = X_categorical[col_name]

0 commit comments

Comments
 (0)