When I try to do a test run and set my project path using
from hops import hdfs
project_path = hdfs.project_path() + 'Resources/cats_and_dogs_CNN_datasets'
and then make the function call
training_set = train_datagen.flow_from_directory(project_path,
target_size=(64, 64),
batch_size=32,
class_mode='binary')
I get the error message
FileNotFoundError: [Errno 2] No such file or directory: 'hdfs://10.0.104.196:8020/Projects/andreas_cnn/Resources/cats_and_dogs_CNN_datasets'
I've double checked that all directories exist and are correctly spelled. I'm out of clues right now and could need some help.
Best Regards,
Andreas