av-savchenko / face-emotion-recognition

Efficient face emotion recognition in photos and videos

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

A few suggestions.

ioctl-user opened this issue · comments

Hello!

I have a couple of ideas:

  1. Could you, please, add text description about difference between models, especially between b0 and b2 general types?
  2. Please consider adding hsemotion-onnx package to the pip repository.

Hello!

  1. EfficientNet-B0 and B2 are the architectures proposed in an excellent paper. I just trained them by my own procedure. The main difference is in scaling, b2 accepts an input image with greater resolution(260x260 vs 224x224 from EfficientNet-B0). Moreover, the depth and width, and consequently, the size of EfficientNet-B2 are larger. Hence, it is potentially possible to reach better accuracy, but the latency of EfficientNet-B0 is better. But I should say, that my internal experiments demonstrate that EfficientNet-B0 works better for typical videos. I personally recommend to use enet_b0_8_best_vgaf.pt or enet_b0_8_va_mtl.pt in practice. These models are typically more accurate for various datasets if you do not want to fine-tune them on new domain
  2. Thanks, I will try to do it in 1 or 2 weeks. I'm overwhelmed with a lot of reports now (

I created separate hsemotion-onnx package that is available via pip. Moreover, I slightly refactored the code and moved the python packages in the separate repositories: hsemotion and hsemotion-onnx

Thanks!