C1_W1_Lab_4_patient_overlap_and_data_leakage errata

There is an error on this print:

ids_train_set = set(ids_train)
print(f’There are {len(ids_train_set)} unique Patient IDs in the training set’)

Create a “set” datastructure of the validation set id’s to identify unique id’s

ids_valid_set = set(ids_valid)
print(f’There are {len(ids_valid_set)} unique Patient IDs in the training set’)

it should be:
print(f’There are {len(ids_valid_set)} unique Patient IDs in the validation set’)

1 Like

Hello @piclez

Yes indeed this is an error. Thank you.

@Mubsi can you please look into this.

Regards
DP

Hi @Deepti_Prasad,

Kindly report this as an issue.

Thanks,
Mubsi

2 Likes

@piclez

Please share a screenshot from where you mentioned the error, I just went through Course 1 week 1 assignment, didn’t find similar statement.

@Deepti_Prasad Lab 4 - Patient Overlap & Data Leakage:

1 Like