PFLD-pytorch icon indicating copy to clipboard operation
PFLD-pytorch copied to clipboard

Can someone help me to understand "self.fc = nn.Linear(176, 196)" how 176 input feature has been choose

Open sainisanjay opened this issue 3 years ago • 2 comments

Can someone help me to understand self.fc = nn.Linear(176, 196) how 176 input feature has been choose in PFLDInference network.

sainisanjay avatar Aug 10 '22 17:08 sainisanjay

I have the same question. Do you have any idea about this @sainisanjay ?

Sridhar98 avatar Nov 11 '22 23:11 Sridhar98

That's because when you stack three multi-scale features together, you get a new tensor which shape is (bs, 176). Please see the code in models/pfld.py @sainisanjay @Sridhar98

CrossEntropy avatar May 08 '23 06:05 CrossEntropy