How to evaluate multiple test sets #9986
Unanswered
amritap-ef
asked this question in
Lightning Trainer API: Trainer, LightningModule, LightningDataModule
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, what is the best way to evaluate multiple test sets and get the individual accuracies?
In my data module, the test data loader is as follows, where self.test_datasets is a list of Datasets:
I have the following test_step and test_epoch_end:
But this prints out results as follows:
Is there a good way to get the output to just print e.g. DataLoader 0 and test_0_loss_, test_0_acc, Dataloader 1 and test_1_loss, test_1_acc, etc?
Beta Was this translation helpful? Give feedback.
All reactions