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
Is it possible to write your own dataloader and embed it in the architecture of the QuartzNet model for training?
It seems to me that I saw somewhere how the default dataloader is replaced with a custom dataloader. But I can't find an example of how to do it.
Is it possible to somehow see which dataloader is used from the loaded model in the code?
Many thanks in advance for any insights!
The text was updated successfully, but these errors were encountered:
You can potentially create your own dataloader and pass it to trainer.fit(). See the lightning documention for such use case, but note that we have never tried it.
You can access model._train_dl, _validation_dl and _test_dl I think for most Nemo models.
Good evening! I have 2 questions...
It seems to me that I saw somewhere how the default dataloader is replaced with a custom dataloader. But I can't find an example of how to do it.
Many thanks in advance for any insights!
The text was updated successfully, but these errors were encountered: