We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nnDetection/projects/Task012_LIDC/scripts/prepare_mic.py
Line 44 in 9853d3e
if ii == '0000000'
after nodule_ids = [ii.split('_')[2].lstrip("0") for ii in roi_id_paths]
nodule_ids = [ii.split('_')[2].lstrip("0") for ii in roi_id_paths]
ii will be ''
which will cause rater_labels = [df[df.NoduleID == int(ii)].Malignancy.values[0] for ii in nodule_ids] raise an error becaue of int('')
rater_labels = [df[df.NoduleID == int(ii)].Malignancy.values[0] for ii in nodule_ids]
The text was updated successfully, but these errors were encountered:
Dear @Zouxxyy ,
thanks for the bug report, I'll look into it in more detail after my vacation.
Best, Michael
Sorry, something went wrong.
@Zouxxyy do you have any solutions?
No branches or pull requests
nnDetection/projects/Task012_LIDC/scripts/prepare_mic.py
Line 44 in 9853d3e
if ii == '0000000'
after
nodule_ids = [ii.split('_')[2].lstrip("0") for ii in roi_id_paths]
ii will be ''
which will cause
rater_labels = [df[df.NoduleID == int(ii)].Malignancy.values[0] for ii in nodule_ids]
raise an error becaue of int('')The text was updated successfully, but these errors were encountered: