ShunChengWu / 3DSSG

Other
136 stars 21 forks source link

about max #43

Closed yang1332133 closed 1 year ago

yang1332133 commented 1 year ago

Hi, firstly thanks for your great work! I want to ask how max is manifested in node updates?

2b8ff3fd4204bb88cb203c21841a8b0

ShunChengWu commented 1 year ago

The idea of using FAN is to distribute part feature information in the latent space. The simplest case is using height as the metric to distribute the feature embedding. Let's say a feature has a dimension of three. The description of parts under different heights is stored separately into those three dimensions, e.g.: if height>1: store at feature[0], if height>=-1 and height <=1: store at feature[1], if height<-1: store at feature[2]. The use of max is to select the most significant feature among all feature dimensions, e.g., selecting the most representative part under different heights.

Of course, when projecting everything into high dimensional space and with the implicit learning using NN, this behavior is not guaranteed, especially without any extra constraints. But the above example is the intuition of using FAN and the use of max aggregation. Feel free to try out different aggregation methods.

yang1332133 commented 1 year ago

The idea of using FAN is to distribute part feature information in the latent space. The simplest case is using height as the metric to distribute the feature embedding. Let's say a feature has a dimension of three. The description of parts under different heights is stored separately into those three dimensions, e.g.: if height>1: store at feature[0], if height>=-1 and height <=1: store at feature[1], if height<-1: store at feature[2]. The use of max is to select the most significant feature among all feature dimensions, e.g., selecting the most representative part under different heights.

Of course, when projecting everything into high dimensional space and with the implicit learning using NN, this behavior is not guaranteed, especially without any extra constraints. But the above example is the intuition of using FAN and the use of max aggregation. Feel free to try out different aggregation methods.

Thank you for your reply!