Hey, @<1523701070390366208:profile|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 @<1523701977094033408:profile|FriendlyElk26> , let's say you have a table, which you report. How would you suggest comparing between two tables?
@<1523701087100473344:profile|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…
@<1523701977094033408:profile|FriendlyElk26> you can always report the diff from the previous table?