Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurpaulino committed Apr 18, 2019
1 parent fbcb742 commit 73f87b7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/user_guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ The engine is able to register optimization attempts on dataframes called
feature, as well as a column for the reported score. The values of the
hyperparameters' columns are the values of the hyperparameters themselves. The
values of the features' columns are either 0 or 1, which indicate whether the
features were used or not. An example of history for a K-NN classifier with two
registries would be:
features were used or not. An example of history dataframe for a K-NN classifier
with three registries would be:

=========== ========== === ====== =====
Hyperparameters Features ---
Expand Down
2 changes: 1 addition & 1 deletion examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ without null values. The target column is called `target_class` and contains onl
2. [Implementing an `on_improvement` function](on_improvement.py)

If we want the engine to trigger a function when a better set of predictions
is found, we can define it and pass it to the Engine's constructor.
is found, we can define it and pass it to the engine's constructor.

3. [Implementing parameters rules](parameters_rules.py)

Expand Down
2 changes: 1 addition & 1 deletion miraiml/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
>>> from miraiml import HyperSearchSpace, Config, Engine
"""

__version__ = '2.0.1.5'
__version__ = '2.0.1.6'

from .main import HyperSearchSpace, Config, Engine

Expand Down

0 comments on commit 73f87b7

Please sign in to comment.