Computer vision | fastai
https://docs.fast.ai/tutorial.visionThen we can create a Learner, which is a fastai object that combines the data and a model for training, and uses transfer learning to fine tune a pretrained model in just two lines of code: learn = cnn_learner(dls, resnet34, metrics=error_rate) learn.fine_tune(1)
Transfer learning in text | fastai
https://docs.fast.ai/tutorial.text.html29.11.2021 · In this tutorial, we will see how we can train a model to classify text (here based on their sentiment). First we will see how to do this quickly in a few lines of code, then how to get state-of-the art results using the approach of the ULMFit paper.. We will use the IMDb dataset from the paper Learning Word Vectors for Sentiment Analysis, containing a few thousand …