Last active
August 29, 2015 14:27
-
-
Save kyu999/f29dc06f5af1d3c7d72c to your computer and use it in GitHub Desktop.
basic_direction
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
Basic Direction | |
1. one variable classify. Simply, find the point to separate into two groups. List up all available characteristics. | |
2. several variables linear classify | |
a. generate all patterns by combinations(1 to 20) | |
b. in each pattern, find border by linear SVM | |
c. in each pat, check it can classify 100%. | |
3. several variables non-linear classify | |
d. use non-linear SVM instead of linear one | |
``` | |
w = clf.coef_ | |
b = clf.intercept_ | |
w.dot(x) + b = 0 | |
the function above is border. | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment