I don't really understand the difference in practical terms of distribution = Adaboost or bernoulli
library(MASS)
library(gbm)
data=Boston
data$chas = factor(data$chas)
ada_model = gbm(chas~ . , data, distribution ='adaboost')
bern_model = gbm(chas ~ . , data, distribution = 'bernoulli')
ada_model
bern_model
I don't understand why bernoulli doesn't give any results? I guess I have a fundamental mis-understanding of how this works?
I'm looking for: 1. explanation why bernoulli doesn't work. I thought documentation said this can be used for classification? 2. if they can both be used for classification, what are the practical differences?