Skip to content

Commit

Permalink
Merge pull request #4 from mike-ivs/gh-pages
Browse files Browse the repository at this point in the history
comment typo
  • Loading branch information
tesaunders authored Mar 23, 2023
2 parents 4dfc2b1 + 377ac73 commit 9662166
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _episodes/03-classification.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ x2 = x_train_scaled[[feature_names[0], feature_names[1]]]
SVM = svm.SVC(kernel='poly', degree=3, C=1.5)
SVM.fit(x2, y_train)
DecisionBoundaryDisplay.from_estimator(SVM, x2) #, ax=ax)
DecisionBoundaryDisplay.from_estimator(SVM, x2) #, ax=ax
sns.scatterplot(x2, x=feature_names[0], y=feature_names[1], hue=dataset['species'])
plt.show()
~~~
Expand Down

0 comments on commit 9662166

Please sign in to comment.