Should there adapters for image visualisation (e.g. segmentation) #257
edwardchalstrey1
started this conversation in
Ideas
Replies: 2 comments 2 replies
-
I like the idea of a few core jupyter widgets (for example) that could help with data visualisation. I guess that, if we did it the right way, these could be reused in jupyter notebooks and dynamic web apps too? |
Beta Was this translation helpful? Give feedback.
2 replies
-
On HuggingFace itself, you get a window on the right that allows you to try out segmentation on an image e.g. this one - so the adapter code I'm imagining would do something similar. Unfortunately the code they use for this does not appear to be open, so may have to reinvent the wheel a little. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I’ve added a second Hugging Face plugin for scivision, this time for image segmentation (rather than image classification). At the moment, as you’ll see in this example notebook, the outputs of these models are what you would see if you used the huggingface transformers package directly - there’s no attempt to display the results in an interesting way with a nice example dataset. I’ve had a chat with @acocac about that earlier this week, but it does raise an interesting question - what kind of adapters should be included for visualisation in scivision? Should there be an adapter for image segmentation visualisation?
In the case of classification, the output of models is typically a prediction result - this doesn't require a visualisation to understand, but I think segmentation does, especially for a non-programmer scientist.
Beta Was this translation helpful? Give feedback.
All reactions