I am using the multinomial distribution from the gbm package in R. When I use the predict function, I get a series of values:
gbm
predict
5.0
Take a look at ?predict.gbm, you'll see that there is a "type" parameter to the function. Try out predict(, , type="response").
?predict.gbm
predict(, , type="response")