leondgarse / Keras_insightface

Insightface Keras implementation
MIT License
230 stars 56 forks source link

Sub Center Loss #103

Closed HamDan1999 closed 1 year ago

HamDan1999 commented 1 year ago

Hi, Firstly, your repositories are the best.

Secondly, Correct me if I am wrong, but I think you have a typo in data_drop_top_k.py in line 22

if isinstance(model, str):
    **from train import NormDense**

I think it should be:

if isinstance(model, str):
    **from models import NormDense**

Thanks for your GitHub repositories, they are helping me much in my research.

leondgarse commented 1 year ago

Ya, you are right! data_drop_top_k.py haven't been updated in almost 1 year. Looks like it's me forgot to update while modifying others. :)

HamDan1999 commented 1 year ago

Noted with thanks!