|
|
|
|
|
by noirdujour
1254 days ago
|
|
This touches a little on philosophical difference, but I have found that one major difference is the quantification of uncertainty. Bayesian models, being based naturally around modeling a probability distribution, easily enables the researcher to make claims such as "I am 95% certain the mean lies between x and y, given the data." On the other hand, neural networks, decision trees, and other models more associated with ML than Bayesian statistics do not have this capability built in. (Though there are variations and techniques to build confidence intervals and such with them.) |
|
When a model for a binary outcomes returns 0.9 for a given data point, that implies a 90% probably that the value is true.
Evaluating the quality of this estimates (often called measuring the calibration of the model) is even very common.
(There are some exception of course. Max margin models aren't probabilistic. And sometimes people use fixed variance parameters for their normal models, etc).