I log model predictions to a wandb table. I would like to filter records for this table across multiple runs on multiple columns on the weave panel. I am able to do so when filtering the records for a single run via -
runs.summary["predictions"].table.rows[0].filter((row) => row["col1"] == "val1" and row["col2"] == "val2")
I am unable to do so when using the weave panel across runs. Can someone help me with the right query for this?