Cell 5 line 10: the line reads `train_annotations = annotations[~annotations.image_path.isin(test_images)]` but should be reading `train_annotations = annotations[~annotations.image_path.isin(train_images)]`
Cell 5 line 10:
the line reads
train_annotations = annotations[~annotations.image_path.isin(test_images)]but should be reading
train_annotations = annotations[~annotations.image_path.isin(train_images)]