You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that models defined under python/tvm/relay/testing/ all have fixed input shapes. But in real applications some dimensions, e.g. the batch dimension, could vary from one request to another.
In Tensorflow, the dynamic shape is supported by specifying None for some dimensions of a placeholder's shape. So I'm curious does relay or nnvm have such support too?
The text was updated successfully, but these errors were encountered:
Hi @minminsun, There is RFC for dynamic shape in Relay(#3042). For dynamic rank, algebraic data type can be used to support it to some degree. https://discuss.tvm.ai/ is the forum for general questions/discussions :-)
I noticed that models defined under python/tvm/relay/testing/ all have fixed input shapes. But in real applications some dimensions, e.g. the batch dimension, could vary from one request to another.
In Tensorflow, the dynamic shape is supported by specifying None for some dimensions of a placeholder's shape. So I'm curious does relay or nnvm have such support too?
The text was updated successfully, but these errors were encountered: