Hi,
I’m using a Table as it’s the simplest to log text (Input output expected).
However, I would like to keep only the last logged item in the Table, else I have thousand of rows or hundred of tables if I create a new table instead.
Is there any fix for that ?
Thanks in advance,
Have a great day 
Hi @ierezell,
I think the simplest way about this would be to create a new table, for the last logged item, log it, and then delete it using python’s del command.
This way, you get to store the last row as desired, but deleting the table also means that you don’t use up all your memory in the process.
Thanks,
Ramit
Hi @ramit_goolry,
Thanks a lot for the response,
The problem is that I will then have many tables as artifacts in weight and biases…
I guess it’s the best solution as it will only show the latest table in the report…
I will try that 
Have a great day