This operator extracts embedding vector from facial image using [Inception-ResNet](https://arxiv.org/pdf/1602.07261.pdf). The implementation is an adaptation from [timesler/facenet-pytorch](https://github.com/timesler/facenet-pytorch).
## Code Example
Extract face image embedding from './img.png'.
*Write the pipeline in simplified style*:
```python
import towhee
towhee.glob('./img.png') \
.image_decode.cv2() \
.face_embedding.inceptionresnetv1() \
.tolist()
```
*Write a same pipeline with explicit inputs/outputs name specifications:*