Skip to content

Commit

Permalink
Update Day 13 SVM.md (Avik-Jain#16)
Browse files Browse the repository at this point in the history
Update code
  • Loading branch information
bibin-johny authored and Avik-Jain committed Aug 10, 2018
1 parent 38cd173 commit fcde48c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Day 13 SVM.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fcde48c

Please sign in to comment.