Can please help me:
C2W1_Assignment: GRADED FUNCTION: split_data
My Output
666.jpg is zero length, so ignoring.
11702.jpg is zero length, so ignoring.
Original cat’s directory has 12500 images
Original dog’s directory has 12500 images
There are 11249 images of cats for training
There are 11249 images of dogs for training
There are 1250 images of cats for validation
There are 1250 images of dogs for validation
Expected Output
666.jpg is zero length, so ignoring.
11702.jpg is zero length, so ignoring.
Original cat’s directory has 12500 images
Original dog’s directory has 12500 images
There are 11249 images of cats for training
There are 11249 images of dogs for training
There are 1250 images of cats for validation
There are 1250 images of dogs for validation
Graded
All tests passed for create_train_val_dirs!
Details of failed tests for split_data
Failed test case: incorrect number of (training, validation) images when using a split of 0.5 and 12 images (6 are zero-sized).
Expected:
(3, 3),
but got:
(4, 5).
What happen here?
Thank you