Learning rate finder #49
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Hello,
I am trying to implement learning rate finder from https://github.com/davidtvs/pytorch-lr-finder so I would be able to find optimal learning rate when training new language. However I don't have much experience in ML and Pytorch.
I have been able to implement the model loading like this, but I am not sure how to load the dataset into the training
It's a bit of a pickle, since all the relevant code to actually train the model is within DLAS. I believe here is the relevant code for preparing the dataloader.
You might have a better time instead trying to use it within DLAS, since you can probably just inject it here, rather than re-implement the dataloader preparation routines within TorToiSe.
Thank you, I didn't realize that could be the case. I have tried to insert/modify the code, but the complexity is beyond my capabilities. Thank you for this library though!