Sonali
Mmarimo
•Created by Sonali on 10/3/2024 in #help-support
mo.ui.altair_chart(chart) is not updating based on filtered data
when I do the filteration based on the date range e.g. filtered_data = filtered_data[
(filtered_data["request_date"] >= end_date_str)
& (filtered_data["request_date"] <= start_date_str)
]
10 replies
Mmarimo
•Created by Sonali on 10/3/2024 in #help-support
mo.ui.altair_chart(chart) is not updating based on filtered data
Hi @Myles Scolnick Thank you for the suggestion. I have now refactored the code as suggested by you but now I am getting "The variable 'filtered_data' was defined by another cell:"
10 replies
Mmarimo
•Created by Sonali on 10/3/2024 in #help-support
mo.ui.altair_chart(chart) is not updating based on filtered data
Please find the reduced version of above code here.
10 replies
Mmarimo
•Created by Sonali on 10/3/2024 in #help-support
mo.ui.altair_chart(chart) is not updating based on filtered data
can anyone please help me witht this
10 replies
Mmarimo
•Created by Akshay on 8/12/2024 in #help-support
Output too large
It worked properly! Thanks for the help
20 replies
Mmarimo
•Created by Akshay on 8/12/2024 in #help-support
Output too large
when I set MARIMO_OUTPUT_MAX_BYTES=1500000 while executing I am getting "'MARIMO_OUTPUT_MAX_BYTES' is not recognized as an internal or external command,
operable program or batch file."
20 replies
Mmarimo
•Created by Akshay on 8/12/2024 in #help-support
Output too large
I run it using poetry run python ./eval/marimo_app.py
20 replies
Mmarimo
•Created by Akshay on 8/12/2024 in #help-support
Output too large
I am running multiple marimo notebooks using below code "# marimo_app.py
import marimo
#from starlette.applications import Starlette
import uvicorn
Create your Marimo ASGI app
server = marimo.create_asgi_app()
for dashboard in app_config.DASHBOARD_MENU:
for name, path in dashboard.items():
server = server.with_app(path=dashboard['path'], root=dashboard["root"])
Create a Starlette app and mount the Marimo ASGI app
app = server.build()
if name == "main":
uvicorn.run(app, host="localhost", port=2718)
"
20 replies
Mmarimo
•Created by Akshay on 8/12/2024 in #help-support
Output too large
Is the parameter is not set properly
20 replies
Mmarimo
•Created by Akshay on 8/12/2024 in #help-support
Output too large
but still getting same error for 7mb size too .
20 replies
Mmarimo
•Created by Akshay on 8/12/2024 in #help-support
Output too large
and it is now 15000000
20 replies
Mmarimo
•Created by Akshay on 8/12/2024 in #help-support
Output too large
Below is the code to set the env patameter : MARIMO_OUTPUT_MAX_BYTES= boto_client.get_parameter(Name=os.getenv('MARIMO_OUTPUT_MAX_BYTES'), WithDecryption=True)['Parameter']['Value']
20 replies
Mmarimo
•Created by Akshay on 8/12/2024 in #help-support
Output too large
table = mo.ui.table(
{
"Request Id": df_next["request_id"].tolist(),
"Request Type": df_next["request_type"].tolist(),
"Request": df_next["requests"].tolist(),
"Response":df_next["responses"].tolist(),
"Feedback": df_next["feedbacks"].tolist(),
"Comment":df_next["comments"].tolist(),
"Faithfulness": df_next["faithfulness"].tolist(),
"Answer Relevancy": df_next["answer_relevancy"].tolist(),
"Groundtruth Answer": list(groundtruth_texts),
"LLM model": df_next["llm_model"].tolist(),
"Contexts": df_next["contexts"].tolist(),
},
pagination=True, page_size=10)
20 replies
Mmarimo
•Created by Akshay on 8/12/2024 in #help-support
Output too large
up to what extent we can increase
20 replies
Mmarimo
•Created by Akshay on 8/12/2024 in #help-support
Output too large
Sometimes my output size is 13309715 bytes
20 replies
Mmarimo
•Created by Akshay on 8/12/2024 in #help-support
Output too large
@Akshay Hi What is the maximum acceptable output size?
20 replies
Mmarimo
•Created by Akshay on 8/12/2024 in #help-support
Output too large
we are tring to display marimo table based on multiple filters e.g. date range etc.
20 replies