In rstan, it's possible to compile a model without providing any data or doing any sampling, and then use provide data and draw samples in a subsequent call; something like:
Would it be reasonable to do something similar here? This would mean that a) users could fit the model on multiple data sets without recompiling, and b) it wouldn't be necessary to recompile the model if a mistake was made providing the data.
In rstan, it's possible to compile a model without providing any data or doing any sampling, and then use provide data and draw samples in a subsequent call; something like:
Would it be reasonable to do something similar here? This would mean that a) users could fit the model on multiple data sets without recompiling, and b) it wouldn't be necessary to recompile the model if a mistake was made providing the data.
Thanks.