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
In the implementation of 'recurrent_hourglass.py'. There is only oneConvGRUCell
self.convgru_cell = ConvGRUCell
But it seems that there are supposed to be n_levels ConvGRUCell, each of which tackles one type of resolution feature maps. As for the recurrent part, I think you can just maintain the hidden state of GRUCell and let the input at next timestep come in.
In the implementation of 'recurrent_hourglass.py'. There is only one
ConvGRUCell
But it seems that there are supposed to be
n_levels ConvGRUCell
, each of which tackles one type of resolution feature maps. As for the recurrent part, I think you can just maintain the hidden state of GRUCell and let the input at next timestep come in.That's my understanding of the paper Instance Segmentation and Tracking with Cosine Embeddings and Recurrent Hourglass Networks. If you think in another way, let me know.
The text was updated successfully, but these errors were encountered: