-
When we implement models such as DETR, we use an algorithm such as Hungarian matching to map the output of the model to the set of ground truths. What is the recommended way to do this in flax? One could implement Hungarian matching from scratch (I believe this is what google/Scenic does), but it would be ideal if there was a way to just use |
Beta Was this translation helpful? Give feedback.
Answered by
cgarciae
Nov 1, 2022
Replies: 1 comment 1 reply
-
Hey @rdilip, couple of thoughts:
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
rdilip
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey @rdilip, couple of thoughts:
jax.scipy.optimize
module so it might be beneficial to also post this question in the JAX repo in case they can add tis.