ShiqiYu / OpenGait

A flexible and extensible framework for gait recognition. You can focus on designing your own models and comparing with state-of-the-arts easily with the help of OpenGait.
720 stars 165 forks source link

Results of removing illegal sequences on OU-MVLP #143

Closed HUAFOR closed 1 year ago

HUAFOR commented 1 year ago

I would like to know if opengait can provide the results of removing illegal sequences on OU-MVLP as shown in the table below? If so can you please tell me how I should modify the settings? image

ChaoFan996 commented 1 year ago

Maybe you should replace this line with the following code:

if dataset == 'OUMVLP':
    pseq_mask = np.isin(seq_type, probe_seq) & np.isin(
                            view, [probe_view]) & np.isin(label, gallery_y)
else:
    pseq_mask = np.isin(seq_type, probe_seq) & np.isin(
                                        view, [probe_view])
HUAFOR commented 1 year ago

Thank you very much!