Hacker News new | ask | show | jobs
by kk58 1202 days ago
How does your model illustrate specific feature combination for deep learning models - let's say instance segmentation
2 comments

There are two ways:

1. We use model-inferred embeddings. Say, for the instance segmentation task, we use deep learning networks to transform the input image into a dense embeddings representation, on top of which we run clustering and density estimation to find if the given embedding/image/feature combination is an outlier (or belongs to low-density region)

2. We allow users to define custom signals to identify edge-cases, specific to their use-case. A very simple example could be calculate brightness or Hue properties on the input image and see if that is an outlier compared to the training distribution.

Just curious, what kind of use cases do you have in mind?