I'm using PointNet for semantic segmentation, and would like to use the advanced model instead of the basic.
tf.concat has changed parameter order, so you need to change
concat_feat = tf.concat(3, [point_feat, global_feat_expand])
on line 64 to
concat_feat = tf.concat(axis=3, values=[point_feat, global_feat_expand])
for the model to work.
However, I cannot figure out how to use the loss as it takes 3 arguments instead of the basic models 2.
So my question is, what am I supposed to pass as the end_points argument?
Hi,
I'm using PointNet for semantic segmentation, and would like to use the advanced model instead of the basic.
tf.concat has changed parameter order, so you need to change
concat_feat = tf.concat(3, [point_feat, global_feat_expand])
on line 64 toconcat_feat = tf.concat(axis=3, values=[point_feat, global_feat_expand])
for the model to work.However, I cannot figure out how to use the loss as it takes 3 arguments instead of the basic models 2.
So my question is, what am I supposed to pass as the end_points argument?