I'm trying to combine Posenet with my custom model. The input of this custom model is:
Tensor("dense_Dense1_input:0", shape=(?, 34), dtype=float32)
However, the problem is that the outputs of the posenet to be received is different
The input of this custom model has the values of 17 keypoints of Posenet listed in xy order.
The output of this posenet is:
<tf.Tensor 'tf_op_layer_heatmap/heatmap:0' shape=(?, 23, 23, 17) dtype=float32>, <tf.Tensor 'offset_2/BiasAdd:0' shape=(?, 23, 23, 34) dtype=float32>, <tf.Tensor 'displacement_fwd_2/BiasAdd:0' shape=(?, 23, 23, 32) dtype=float32>, <tf.Tensor 'displacement_bwd_2/BiasAdd:0' shape=(?, 23, 23, 32) dtype=float32>
How can I make these two models together?
this is graph of the models: