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
Can one easily retrieve outputs from the regression, classification and masks submodel ?
The following trick cannot work because of the submodel embedding in a keras.Models object for each of these processes (different graphs - Keras won't allow to mix their inputs/outputs):
Yet, I would like to get the features so as to perform further computations on these.
One way would be to build one model for each task, but model slicing in Keras is not an easy task, especially for non-sequential models (with different streams as maskrcnn exhibits), where tracking inbounds nodes at each layer is not convenient when you have several inputs for some layers (P3 --> P7 feature maps).
Any easy idea, workaround to get this done ?
Thanks !
The text was updated successfully, but these errors were encountered:
Hi,
Can one easily retrieve outputs from the regression, classification and masks submodel ?
The following trick cannot work because of the submodel embedding in a keras.Models object for each of these processes (different graphs - Keras won't allow to mix their inputs/outputs):
Yet, I would like to get the features so as to perform further computations on these.
One way would be to build one model for each task, but model slicing in Keras is not an easy task, especially for non-sequential models (with different streams as maskrcnn exhibits), where tracking inbounds nodes at each layer is not convenient when you have several inputs for some layers (P3 --> P7 feature maps).
Any easy idea, workaround to get this done ?
Thanks !
The text was updated successfully, but these errors were encountered: