Hi,
Can anyone tell how to use image_dataset_from_directory on a regression task;
the image folder has the structure bellow:
the name of each directory refers to 4 numerical numbers like this: [1,2,3,4]
Thank you
Hi,
Can anyone tell how to use image_dataset_from_directory on a regression task;
the image folder has the structure bellow:
the name of each directory refers to 4 numerical numbers like this: [1,2,3,4]
Thank you
Hi @youb ,
Certainly! To use image_dataset_from_directory
for a regression task, where each directory name refers to numerical values (such as [1,2,3,4]
), you can follow these steps:
image_dataset_from_directory
: Use this function to load the images from your directory structure. Since this function is typically used for classification tasks, we will initially load the data without using the labels.Thank You !