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
The image capability takes an image input in the following format: [batch_size, height, width, channels]. This is the standard format followed by Tensorflow models. There is another format followed by PyTorch models: [batch_size, channels, height, width]. Right now, we only support the Tensorflow format in the rune. We have to change it to support the PyTorch format. There is also one Tensorflow model (craft-text-detector) which support PyTorch format.
The text was updated successfully, but these errors were encountered:
The
image capability
takes an image input in the following format:[batch_size, height, width, channels]
. This is the standard format followed by Tensorflow models. There is another format followed by PyTorch models:[batch_size, channels, height, width]
. Right now, we only support the Tensorflow format in therune
. We have to change it to support the PyTorch format. There is also one Tensorflow model (craft-text-detector) which support PyTorch format.The text was updated successfully, but these errors were encountered: