Open
Description
Some models (e.g. YAMNet) support variable sized inputs. TensorFlow represents this by having a 1x1 input that gets resized manually at runtime to fit the desired input.
What this will probably require:
- Update the Runefile to allow at most one unknown dimension in a tensor definition (e.g.
u8[_, 256, 256, 3]
for an arbitrary number of 256x256 RGB8 images) - During codegen, make sure the Rune uses a variable sized buffer (i.e.
Vec<u8>
) to hold the tensor - Figure out how a capability will communicate the size of the tensor it generates to the Rune
- We can do this as part of
rune build
by inserting a special$outputs
argument into each capability's arguments dictionary. That way the end implementation will know what output tensors have been requested in the Runefile
- We can do this as part of