I saw the tutorial page of bambi printing the model detail after you created a model (as this figure). However, when I am using bambi (0.12.0) in Colab Notebook, after I created a model nothing was printed.
I tried to look into the source code to see whether I could change some variables to print the model summary but I found nothing. How can I print the model summary after I create a bambi model?
It's a bit hard to know what you're doing without an example. But in general you can do
print(model)
as shown here