-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
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
An sklearn installation error occurred while running setup.py in step-8 of FeTS 2022 Challenge Task 1. #88
Comments
Thanks for the report! Can you please put the PR so that we can record your contribution? |
When executing the command below Even after fixing it, a similar error occurs.
It seems like sklearn is being loaded again from somewhere. I haven't found out where that is yet. Does |
That's weird. I don't think a separate |
Found the problem.Line 14 in c46e968
The version of nnUnet is version 1.6.6, and https://github.com/MIC-DKFZ/nnUNet/releases/tag/v1.6.6 Version 1.7.0 of nnUnet uses scikit-learn. So, when I changed the nnUnet version of setup.py in the repository cloned from my GitHub to 1.7.0, the following error occurred.
I think we need to change the version of nnUnet in setup.py to 1.7.0. |
If you can confirm that this will work as expected, then please put a PR in. |
Describe the bug
A clear and concise description of what the bug is.
During step 8 in https://github.com/FeTS-AI/Challenge/tree/main/Task_1 , a sklearn installation error occurred while executing
'fets @ git+https://github.com/FETS-AI/Algorithms.git@fets_challenge',
among install_requires in setup.py.To Reproduce
Steps to reproduce the behavior:
Expected behavior
A clear and concise description of what you expected to happen.
Screenshots
If applicable, add screenshots to help explain your problem.
FeTS Version
Version information is found on Help > About
Desktop (please complete the following information):
window10
22hz
Additional context
After cloning FeTS-AI/Algorithms to my GitHub, change
sklearn
in the 14th line code of https://github.com/sunyeongan/Algorithms/blob/master/setup.py toscikit-learn
.The text was updated successfully, but these errors were encountered: