josephbiko
josephbiko
For Anyone Still Looking, I'm using umeyame in 3d. https://github.com/iperov/DeepFaceLab/blob/master/core/mathlib/umeyama.py If anyone has a better Idea, I'd love to hear it. ``` import numpy as np import face_alignment import matplotlib.pyplot...
Either use these, or checkout basel face model
I know, a bit odd. But I stole it from: https://github.com/iperov/DeepFaceLab/tree/master/facelib good luck!
I also noticed you were using static vars, which makes it unsafe to use multiple sessions at the same time.
Is there also a way to just wait until a message is available? Or do I need to sleep&check until something is available?
Yes, but this is a normal consumer, I just want to retrieve a single message from the queue
Allow me to illustrate, What i do know is: ` while True: msg = await q.get(fail=False) if msg: break await asyncio.sleep(1)`