Lesson 4 execute learn.lr_find() results in ZeroDivisionError: division by zero

I’ve manage to get:
data = TextDataBunch.load(path)
working. My previous post was reporting an error on that. Actually, when I try:
if data:
print(data)
The output prints a bunch of data. The problem now is:
learn.lr_find()
The failure occurs because len(learn.data.train_dl) returns 0.
Any tips?

It’s solved. The variable data was the loading of imdb sample. I’ve missed a couple of steps.