Created
October 5, 2021 13:44
-
-
Save SajidLhessani/90194951eaeea0eec610d353ac1a5313 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Instantiate the StandardScaler | |
ss1 = StandardScaler() | |
# Pass the scaled train data to the SVC classifier | |
cls.fit(ss1.fit_transform(X.iloc[:split]), y.iloc[:split]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment