Data block tutorial | fastai
https://docs.fast.ai/tutorial.datablockThe split training/validation is done by using a GrandparentSplitter. And the function to get our targets (often called y) is parent_label. To get an idea of the objects the fastai library provides for reading, labelling or splitting, check the data.transforms module. In itself, a …
Learner, Metrics, and Basic Callbacks | fastai
https://docs.fast.ai/learner29.01.2022 · You can use regular PyTorch functionality for most of the arguments of the Learner, although the experience will be smoother with pure fastai objects and you will be able to use the full functionality of the library.The expectation is that the training loop will work smoothly even if you did not use fastai end to end.