You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there any official API to determine how many channels are required by a given model stored in bioimage-io format?
Part of my job is implementing a universal GUI that allows evaluating a model on user data to check how it works with user data for PartSeg/napari.
The possibility to adjust the parameters of visualization of each data channel separately is an essential functional requirement. Also, a user could have more channels in data than the model creator uses to train it. So it would be nice if the interface could adjust to the model rather than require the user to search for such information in the description or understand traceback.
In the future, it will be nice to allow model creators to annotate channels with semantic descriptions, which is expected input that could be rendered in the interface (label or tooltip). I do not find such a possibility in a current model.
The text was updated successfully, but these errors were encountered:
yes, you probably want to double check that inputs.shape.step has a zero in the channel dim, otherwise the model would accept a range of input channels (which you probably don't want to support for now. I don't think any current model has this edge case).
Is there any official API to determine how many channels are required by a given model stored in bioimage-io format?
Part of my job is implementing a universal GUI that allows evaluating a model on user data to check how it works with user data for PartSeg/napari.
The possibility to adjust the parameters of visualization of each data channel separately is an essential functional requirement. Also, a user could have more channels in data than the model creator uses to train it. So it would be nice if the interface could adjust to the model rather than require the user to search for such information in the description or understand traceback.
In the future, it will be nice to allow model creators to annotate channels with semantic descriptions, which is expected input that could be rendered in the interface (label or tooltip). I do not find such a possibility in a current model.
The text was updated successfully, but these errors were encountered: