-
Notifications
You must be signed in to change notification settings - Fork 21
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
bug when add_deepimagej_config=True
in build_model
#368
Comments
Implementing that would be possible (probably rather as part of the |
Hi hi
I can give it a try if you point me where this is done. I needed it for some zerocost notebook conversion that I just finished.
Yes, you're right. JDLL has the functions implemented. I raised it to @arrmunoz already. Tagging @cfusterbarcelo also to keep track of this. |
If only a few models are affected I suggest to fix the exported models manually. |
Hi Fynn, Thank you! As long as JDLL is updated with the specs, you are completely right and that's how it should be. So, do you want me to test the changes in the PR? |
well, the above PR isn't ready to be merged, see bioimage-io/spec-bioimage-io#546 (comment) |
Halo!
When building a model and adding the deepImageJ config with the IJ macros, if the pre and post-processing need to use the same pipeline (e.g., scale range), there is the issue of downloading just one macro rather than two different versions of it (pre+postprocessing).
For example, the following code will download the
scale_linear.ijm
file twice (one for the preprocessing and one for the postprocessing) but with the same name and in the deepImageJ config, both pre and post-processing will point to the same ij macro filescale_linear.ijm
but with the wrong parameters. Could it be possible to rename the downloaded macros accordingly to something likepre_scale_linear.ijm
andpost_scale_linear.ijm
and include as such in the deepImageJ config?Thank you!
The text was updated successfully, but these errors were encountered: