-
Notifications
You must be signed in to change notification settings - Fork 0
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
Non-mp predict support [WIP] #1
base: master
Are you sure you want to change the base?
Conversation
I've looked at the code and added non-MP support in the data-processing and prediction pipeline. I'm yet to test this - i haven't really setup nnunet workflow yet. Could you test it and let me know if it looks good? |
Nice; I set up a test env and am looking into it. |
FYI; we get the following assertion error. MHub Error Log
|
Okay test is running; have no results yet but the gpu spins up 🔥 |
Okay, so the good news is, it ran. Logs below. nnUNet_results=/app/nnunet_out uv run nnUNetv2_predict \
-i /app/tmp/2b238249-d307-4757-b9f2-9541f4444f18 \
-o /app/nnunet_out -d Dataset007_Nodules -c 3d_fullres Output
This might be our problem:
|
Ok was just able to check the code. You'll have to set both nps and npp to 0. It seems like thats where that |
Now, the proper test with nnUNet_results=/app/nnunet_out uv run nnUNetv2_predict \
-i /app/tmp/2b238249-d307-4757-b9f2-9541f4444f18 \
-o /app/nnunet_out -d Dataset007_Nodules -c 3d_fullres \
-npp 0 -nps 0 Output
|
New environment variables: - nnUNet_npp - nnUNet_nps Default values remain unchanged, cli parameter -npp and -nps overwrite environment variables if set.
No description provided.