luckycallor / InsightFace-tensorflow

Tensoflow implementation of InsightFace (ArcFace: Additive Angular Margin Loss for Deep Face Recognition).
248 stars 112 forks source link

ValueError: dictionary update sequence element #0 has length 5; 2 is required #21

Open 2151330 opened 5 years ago

2151330 commented 5 years ago

When I run get_embd.py, this problem occurs.I don't know why.Can you help me? image

kingguan4 commented 5 years ago

change ‘’embds_dict = dict(*zip(fns, list(embds_arr)))" to "embds_dict = dict(zip(fns, list(embds_arr)))"