I had a little feedback about the C3W1 assignment, I noticed this line in the Google Colab comments:
To set file paths, you’ll use os.path.join. As an example, if you wanted to create the path ‘./parent_folder/file_name1.txt’, you could write:
os.path.join(‘parent_folder’, ‘file_name’, str(1), ‘.txt’)
However, I believe this piece of code should be replaced to make it work as intended, even for the following code cell where learners need to do this for the zombie images.
os.path.join('parent_folder', 'file_name' + str(1) + '.txt')