Created
April 10, 2024 21:37
-
-
Save sleepingcat4/aa46f50c989fef9a2eb87ceacc379f29 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| from sklearn import svm | |
| # Create an SVM classifier | |
| classifier = svm.SVC() | |
| ## X Being the Energy | |
| ### Y Being the Pressure (Particle Beam Pressure) | |
| classifier.fit(X, Y) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment