Hi, I keep obtaining this error and I do not know how to solve it:
This is my code:
os.makedirs(’/tmp/cats-v-dogs’ +’/training’ + ‘/dogs’)
os.makedirs(’/tmp/cats-v-dogs’ +’/training’ + ‘/cats’)
os.makedirs(’/tmp/cats-v-dogs’ +’/testing’ + ‘/dogs’)
os.makedirs(’/tmp/cats-v-dogs’ +’/testing’ + ‘/cats’)
I can see the folders in the testing field
/tmp/cats-v-dogs/testing
/tmp/cats-v-dogs/training
/tmp/cats-v-dogs/testing/dogs
/tmp/cats-v-dogs/testing/cats
/tmp/cats-v-dogs/training/dogs
/tmp/cats-v-dogs/training/cats
Thank you