MeshCNN icon indicating copy to clipboard operation
MeshCNN copied to clipboard

What is the meanning of input_nc?

Open liangqianqian123 opened this issue 5 years ago • 1 comments

I want to what is the meaning of opt.inpu_nc? And I cannot find the definition of input_nc, I want to know where is it defined? Thank you!

liangqianqian123 avatar Jun 28 '20 09:06 liangqianqian123

Hi @liangqianqian123 ,

it means number of input channels (input features). In the case of this work, opt.input_nc = 5 (always). It is the 5-dimensional geometric feature vector.

It is defined in the dataset class. For example, in classification it is defined here https://github.com/ranahanocka/MeshCNN/blob/15b83cc6a4db968baf6cf595df78995a9c2dcee3/data/classification_data.py#L22

and self.ninput_channels is set during the call to get_mean_std().

ranahanocka avatar Jun 30 '20 13:06 ranahanocka