Skip to content

Commit

Permalink
Update typo on README.md (#8)
Browse files Browse the repository at this point in the history
* Update README.md

* Update index.html
  • Loading branch information
lusob authored and haifeng-jin committed Apr 18, 2018
1 parent 2b5002a commit de604d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Here is a short example for using the package.
(x_train, y_train), (x_test, y_test) = mnist.load_data()
clf = ak.ImageClassifier()
clf.fit(x_train, y_train)
results = clf.predict(y_test)
results = clf.predict(x_test)

For the repository on GitHub visit [Auto-Keras on GitHub](https://github.com/jhfjhfj1/autokeras).

Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ <h1 id="welcome-to-auto-keras">Welcome to Auto-Keras</h1>
(x_train, y_train), (x_test, y_test) = mnist.load_data()
clf = ak.ImageClassifier()
clf.fit(x_train, y_train)
results = clf.predict(y_test)
results = clf.predict(x_test)
</code></pre>
<p>For the repository on GitHub visit <a href="https://github.com/jhfjhfj1/autokeras">Auto-Keras on GitHub</a>.</p>

Expand Down

0 comments on commit de604d4

Please sign in to comment.