1

I have recently started with fastai lesson 1 and I am using kaggle to run the course notebooks. While going through the ‘lesson1-pets’ notebook we use untar_data(URLs.PETS) to get the data.

What I want to understand is where does this data get downloaded to? As I can observe, after running the untar_data(URLs.PETS) function, it says downloading… ,the data gets downloaded, but nothing gets added to the data section of kaggle kernel.

Note: I am able to run the whole notebook in kaggle and just want to understand the working of untar_data function.

boredaf
  • 161
  • 2
  • 10

1 Answers1

1

It goes to PosixPath('/root/.fastai/data/oxford-iiit-pet') so you won't see it on the data pane.

Stephen Rauch
  • 1,831
  • 11
  • 23
  • 34
user94982
  • 26
  • 1