Skip to content

Can I create a table with images and details to show the latest eval predictions? #3385

@alita-moore

Description

@alita-moore

❓Question

I want to use aim instead of wandb due to their insane pricing. I want to create a table to track the predictions at each evaluation step where each row is one of the eval examples. It needs to include an image and the other metrics. See below example:

Image

which I implement now in the code like so

table = wandb.Table(
                        columns=self._val_table_columns,
                        data=[row for _, row in all_rows],
                    )
self.logger.experiment.log(
    {
        "eval/predictions": table,
    }
)

is there a way to do this equivalently in aim, if not is this something that could be added?

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions