Skip to content

Allow folders for the train and validation paths. #168

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 34 additions & 4 deletions taming/data/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,46 @@ def __getitem__(self, i):
class CustomTrain(CustomBase):
def __init__(self, size, training_images_list_file):
super().__init__()
with open(training_images_list_file, "r") as f:
paths = f.read().splitlines()

isFile = os.path.isfile(training_images_list_file)
isDirectory = os.path.isdir(training_images_list_file)

if isFile:
with open(training_images_list_file, "r") as f:
paths = f.read().splitlines()

if isDirectory:
paths = []
for images in os.listdir(training_images_list_file):

# check if the image ends with png or jpg or jpeg
if (images.endswith(".png") or images.endswith(".jpg")\
or images.endswith(".jpeg")):
paths.append(os.path.join(training_images_list_file, images))

self.data = ImagePaths(paths=paths, size=size, random_crop=False)


class CustomTest(CustomBase):
def __init__(self, size, test_images_list_file):
super().__init__()
with open(test_images_list_file, "r") as f:
paths = f.read().splitlines()

isFile = os.path.isfile(test_images_list_file)
isDirectory = os.path.isdir(test_images_list_file)

if isFile:
with open(test_images_list_file, "r") as f:
paths = f.read().splitlines()

if isDirectory:
paths = []
for images in os.listdir(test_images_list_file):

# check if the image ends with png or jpg or jpeg
if (images.endswith(".png") or images.endswith(".jpg")\
or images.endswith(".jpeg")):
paths.append(os.path.join(test_images_list_file, images))

self.data = ImagePaths(paths=paths, size=size, random_crop=False)