Compilation error using brms

I'm using the "brms" package in RStudio Cloud, but in attempting to compile the C++ model, I receive the error:

"Error in sink(type = "output") : invalid connection"

Does anyone know of a solution to this problem? Thank you!

Link to project: https://rstudio.cloud/project/1176347

library(brms)
library(tidyverse)
iris <- iris
mod1 <- brm(Sepal.Width ~ Petal.Width + (1 | Species), data = iris)

I believe you are running into the limit of the 1 GB of memory that is available. brms is built on top of stan, which we know to use a good deal of memory, and often exceeds the default memory limit. We continue to investigate ways by which to surface this situation in a more obvious fashion.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.