Open JHevia23 opened 2 years ago
Sorry for the late reply: I guess you need to add another dimension for the target (but not the scene) input such that it is (1, 1, 57, 266, 3)
. For few-shot experiments, you can use that to have e.g. 5 or 10 targets.
Cool! I tried that and then found out I also needed to resize the query image to 96x96 . Do you know if performance varies significantly with query resizing?
I didn't find it to have a huge impact. Image size was more important than reference size.
Hi! Amazing work and very nice codebase overall. I enjoyed checking the architecture.
I tried testing the model on the "small" configuration with a single query image and a reference, loading them from cv2:
Basically:
and I'm finding the following issue:
I saw that the
input_target
shape is a function ofconfig.NUM_TARGETS
andconfig.TARGET_SHAPE
, however I tried playing with those 2 values and got no solution.Could you point me at the change I'd have to do in the configuration for this to be solved?
Thanks!