Hi @NicoleChJ
As commented previously, (YOU HAVE HARD CODED THE PATH, and instructions in the grade cell mentions
Don’t hardcode the paths. Use os.path.join to append the new directories to the root_path parameter
you need to do correction for GRADED FUNCTION: create_train_val_dirs
def create_train_val_dirs(root_path) and GRADED FUNCTION: split_data
def split_data(SOURCE_DIR, TRAINING_DIR, VALIDATION_DIR, SPLIT_SIZE)
Use the below comment link to make the correction for these two grade cells. Your output does not match for the split data grade cell. below is your output with the expected output
- In GRADED FUNCTION: create_model
def create_model():
In model.compile statement, optimizer need to be recalled as ‘rmsprop’ without adding any learning_rate
Regards
DP