Skip to content

Commit 2c9a28f

Browse files
Reformatted files with updated black version (#4395)
* Initial commit * Updated release notes
1 parent 812a5ee commit 2c9a28f

File tree

205 files changed

+324
-82
lines changed

Some content is hidden

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

205 files changed

+324
-82
lines changed

docs/source/release_notes.rst

Lines changed: 1 addition & 0 deletions

evalml/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""EvalML."""
2+
23
import warnings
34

45
# hack to prevent warnings from skopt

evalml/automl/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""AutoMLSearch and related modules."""
2+
23
from evalml.automl.automl_search import AutoMLSearch, search_iterative, search
34
from evalml.automl.utils import (
45
get_default_primary_search_objective,

evalml/automl/automl_algorithm/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""AutoML algorithms that power EvalML."""
2+
23
from evalml.automl.automl_algorithm.automl_algorithm import (
34
AutoMLAlgorithm,
45
AutoMLAlgorithmException,

evalml/automl/automl_algorithm/automl_algorithm.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Base class for the AutoML algorithms which power EvalML."""
2+
23
import inspect
34
from abc import ABC, abstractmethod
45

evalml/automl/automl_algorithm/default_algorithm.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""An automl algorithm that consists of two modes: fast and long, where fast is a subset of long."""
2+
23
import logging
34

45
import numpy as np

evalml/automl/automl_algorithm/iterative_algorithm.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""An automl algorithm which first fits a base round of pipelines with default parameters, then does a round of parameter tuning on each pipeline in order of performance."""
2+
23
import logging
34
import warnings
45
from operator import itemgetter

evalml/automl/automl_search.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""EvalML's core AutoML object."""
2+
23
import copy
34
import logging
45
import pickle

evalml/automl/callbacks.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Callbacks available to pass to AutoML."""
2+
23
import logging
34

45
from evalml.exceptions import PipelineScoreError

evalml/automl/engine/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""EvalML Engine classes used to evaluate pipelines in AutoMLSearch."""
2+
23
from evalml.automl.engine.engine_base import (
34
EngineBase,
45
EngineComputation,

0 commit comments

Comments
 (0)