@<1523701087100473344:profile|SuccessfulKoala55> I mean in the ClearML UI (under PLOTS), you can't change the column width of a table reported this way. I tried to adjust the width but all it does is drag the column around.
For new line, I just add line breaks "\n" to the cells and the reported table basically just ignores it.
OK, and where are the custom column width, new line etc. specified?
These plots are displayed using plotly, I'm not sure it can do that
@<1628927672681762816:profile|GreasyKitten62> When you have specific display considerations, you can implement them through report_table's 'extra_layout' and 'extra_data' parameters
Thanks - Is there plan to add more display manipulating functionality? Right now it's not really ideal for long texts
Hi @<1628927672681762816:profile|GreasyKitten62> , can you share the code you're running?
Hi @<1523701087100473344:profile|SuccessfulKoala55> , yeah here's the relevant code:
df = pd.DataFrame.from_dict(results)
logger = task.get_logger()
logger.report_table(
table_plot = df,
series = f"URL: {args['URL']}, Dataset: {args['Dataset']}",
title = "Full Response"
)