Skip to content

Instantly share code, notes, and snippets.

@kyu999
Last active August 29, 2015 14:27
Show Gist options
  • Save kyu999/f29dc06f5af1d3c7d72c to your computer and use it in GitHub Desktop.
Save kyu999/f29dc06f5af1d3c7d72c to your computer and use it in GitHub Desktop.
basic_direction
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