|
|
|
|
|
by freeradical13
2603 days ago
|
|
I see, so basically instead of intuiting a simple threshold (e.g. >X% change), they apply an SVM which is able to discover more accurate thresholds (and error ranges). Do you have any suggested resources on learning more about SVM? I guess my question comes from the observation that these advanced statistical techniques such as machine learning haven't been around for long and yet medicine has often created decision boundaries, presumably just looking at the data and making a reasonable cutoff. Is all the extra effort in a case like this worth the time investment? |
|
That will tell you SVMs are ancient (linear version dates back to 1963), and that what they do here isn’t really machine learning, but something similar to linear regression: just as linear regression finds the best (in some strict mathematical sense) line describing a set of points, this finds the best (in a similar mathematical sense) line splitting two sets of points.
For software, take a look at https://www.csie.ntu.edu.tw/~cjlin/libsvm/. Easy to use, fairly flexible, with a Java applet you can play with.