Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
13530934
100-Days-Of-ML-Code
Commits
fcde48cd
Commit
fcde48cd
authored
Aug 10, 2018
by
Bibin Johny
Committed by
Avik Jain
Aug 10, 2018
Browse files
Update Day 13 SVM.md (#16)
Update code
parent
38cd1733
Changes
1
Hide whitespace changes
Inline
Side-by-side
Code/Day 13 SVM.md
View file @
fcde48cd
...
...
@@ -25,7 +25,7 @@ X_train, X_test, y_train, y_test = train_test_split(X, y, test_size = 0.25, rand
from
sklearn.preprocessing
import
StandardScaler
sc
=
StandardScaler
()
X_train
=
sc
.
fit_transform
(
X_train
)
X_test
=
sc
.
transform
(
X_test
)
X_test
=
sc
.
fit_
transform
(
X_test
)
```
## Fitting SVM to the Training set
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment