You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a quesiton about the loss.py
line7: pose_logits = nn.Softmax(dim=1)(logits[:, :13])
line8: interact_logits = nn.Sigmoid()(logits[:, 13:]))
The number of person pose is 14, Should the "13" in line7 and line8 to be changed to "14"?
The text was updated successfully, but these errors were encountered:
You can take a look at the file 'ava_action_list_v2.2_for_activitynet_2019.pbtxt', which selects 60 classes from ava's 80 classes.
Among them, action id 2 is missing, and there are only 13 pose action classes.
So the 'logits[:, :13]' is correct.
There is a quesiton about the loss.py
line7: pose_logits = nn.Softmax(dim=1)(logits[:, :13])
line8: interact_logits = nn.Sigmoid()(logits[:, 13:]))
The number of person pose is 14, Should the "13" in line7 and line8 to be changed to "14"?
The text was updated successfully, but these errors were encountered: