Will Dean
Will Dean
This would be helpful to add visuals. However, this would make it difficult to document and add the docstrings most likely
> We might need to add marimo support to `rich` directly https://github.com/Textualize/rich/blob/43d3b04725ab9731727fb1126e35980c62f32377/rich/console.py#L517-L534 > > Would you be open to create an issue on `rich`? Sure. What is the logic to...
Thanks for that lead. That doesn't work for my use-case unfortunately. I'm doing something like this PyMC x Marimo ```python import marimo __generated_with = "0.12.8" app = marimo.App() @app.cell def...
That hack doesnt work. However, I will raise an issue on the rich repo
The answer over there is that it should be implemented in marimo
That would do the trick! Yeah, no need to slow it down. So I'm hearing that the progressbar html is updated every 50ms or so. Is there much overhead in...
Thanks for sharing that link. Totally. Would that be up to the user though? Something that could be defined in the callback: ```python def create_callback(update_frequency): # Psuedo code step =...
Thanks for the edits @saishreyakumar I'm see some issues with it still https://pymc-marketing--1788.org.readthedocs.build/en/1788/api/generated/pymc_marketing.mmm.utility.diversification_ratio.html#pymc_marketing.mmm.utility.diversification_ratio
Thank you for the PR @saishreyakumar ! Do you need a hand finishing this up?
Is this something you can handle from your application? ```python def alway_allow_for_cb(func): def wrapper(*args, **kwargs): try: result = func(*args, **kwargs) except Exception as e: kwargs.pop("cb") result = func(*args, **kwargs) return...