Get_image_files(path)

I am using Gradient from paperspace and I am getting no output when I run the second notebook for v2.

Can someone tell me what I should do?

I could skip the process altogether and get the images by hand like it was done in v1 maybe.

1 Like

I am also facing a similar issue

yep, same here

Add me to the list. The files are definitely present.

EDIT: fwiw, just listing out the files with python doesn’t display them either, despite them being accessible from the paperspace directory display. This looks like a paperspace problem.

import os
from os import walk
for (dirpath, dirnames, filenames) in walk("./bears/"):
    print("Directory path: ", dirpath)
    print("Folder name: ", dirnames)
    print("File name: ", filenames)