Creating a TabularDataBunch from train, valid, test dataframes

Hello. I already have my three dataframes but I’m unclear how to use them to create a TabularDataBunch. I can see I need to convert them to DataLoader. Is there an example of this you could point me to?

Maybe in fastai/examples :wink:
Here is the tabular example. You will just have to concatenate the train and valid dataframe together, but the rest should work the same.

Thanks. I’d been looking at the tabular example, and was thinking there must be a way to avoid joining train and validation together and then split them again in split_by_idx. No worries though.