Tomas
Tomas

Reputation: 59525

How to run maximum likelihood optimization (BFGS) in STAN?

According to the STAN homepage, STAN is capable of penalized maximum likelihood (BFGS) optimization. I am using R package rstan but I haven't found any way how to use this method. I tried to look at the ?stan help for the stan() function, but the only available options algorithms are "NUTS" and "HMC".

I am using rstan version 2.5.0.

Upvotes: 3

Views: 2788

Answers (1)

Ben Goodrich
Ben Goodrich

Reputation: 4990

You want to look at help(optimizing, package = "rstan"), i.e. the optimizing() function in the RStan package.

Upvotes: 6

Related Questions