You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think it's deadly necessary to add docs or tutorials for handling the case when We return multiple loaders in test_dataloaders() method? I think it #19907
I know that LightningDataModule supports return multiple dataloaders ,like list of dataloaders, or dict of dataloaders in LightningDataModule. But how to handle the test in LightningModule?
We always need print respective information of the computation upon each test_loader, and save the figs drawn for each dataloader, and we want to do some calculation on the whole dataset in each test_dataloader. But how to do these things in LightningModule's hooks about test? The developers only say that Lightning automatically handle the combination of multiple dataloaders, but how can Lightning compute for each Dataloader? and record information for each dataloaders??