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
Hi @ajayanto, thanks for opening the issue. We do not currently support loading the LSTM, but we do support all of its components. We haven't made a lot of progress here because LSTMs are usually used in RNNs, and Glow does not currently support control flow which is needed for RNNs. The best option for RNNs right now is to unroll them to some max length, but that isn't currently supported directly in Glow -- it must be done loading the model into Glow.
So, if your model is not an RNN model/it doesn't need control flow, then this should be something that can fixed without a lot of work. Do you have any interest in working on this?
When I try to compile the following model,
I got the following error
MODEL_LOADER_UNSUPPORTED_OPERATOR message: Failed to load operator LSTM
It seems LSTM operator is not implemented in glow.
The text was updated successfully, but these errors were encountered: