Skip to content

Commit

Permalink
Fixed typo in README.rst and in Travis config (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
bernardoduarte authored Feb 16, 2020
1 parent 2c25bce commit 60c7296
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ language: python
language: python
python:
- "2.7"
- "3.4"
# - "3.6"
- "3.5"
- "3.6"
# command to install dependencies
install:
- pip install -Ur test_requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ If scikit-learn is installed, then, in a terminal::

and use in Python::

from search_grid import set_grid, make_grid_search
from searchgrid import set_grid, make_grid_search
estimator = set_grid(MyEstimator(), param=[value1, value2, value3])
search = make_grid_search(estimator, cv=..., scoring=...)
search.fit(X, y)
Expand Down

0 comments on commit 60c7296

Please sign in to comment.