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
Hi,we noticed a discrepancy between the calculation of general_shared_ft in the code and the method described in the original paper.
general_shared_ft=shared_ft[mode_split[0]:N*C+1:C] # take the 1st available mode for shared fts# general_shared_ft = 0 # average available shared fts# for m in mode_split: general_shared_ft += shared_ft[m:N * C + 1:C]# general_shared_ft /= len(mode_split)
The approach in the original paper seems more aligned with the commented-out code block. Could you please advise on which one we should use?
The text was updated successfully, but these errors were encountered:
Hi,we noticed a discrepancy between the calculation of general_shared_ft in the code and the method described in the original paper.
The approach in the original paper seems more aligned with the commented-out code block. Could you please advise on which one we should use?
The text was updated successfully, but these errors were encountered: