SuccessfulKoala55 Thanks, you mean downloading the previous from clearML server and make the diff and report it?
It can be a solution but less dynamically since lets say I Iike to change my baseline it will cause to run all the tests again…
Hey, CostlyOstrich36
They both should have the same values and I like to see where they not match.
So even basic stuff like df1==df2
, for example:
>> import pandas as pd
>> df = pd.DataFrame({'a': ['axy a', 'xyz b'], 'b': ['obj e', 'oaw r']})
>> df2 = pd.DataFrame({'a': ['ax2 a', 'xyz b'], 'b': ['obj e', 'oaw r']})
print(df == df2)
a b
0 False True
1 True True
Hi FriendlyElk26 , let's say you have a table, which you report. How would you suggest comparing between two tables?
FriendlyElk26 you can always report the diff from the previous table?