https://github.com/tkat0/pytorch_blazeface
Unofficial PyTorch implementation of BlazeFace
https://github.com/tkat0/pytorch_blazeface
blazeface pytorch-implementation
Last synced: 11 months ago
JSON representation
Unofficial PyTorch implementation of BlazeFace
- Host: GitHub
- URL: https://github.com/tkat0/pytorch_blazeface
- Owner: tkat0
- License: apache-2.0
- Created: 2019-06-20T22:48:12.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T05:44:11.000Z (about 2 years ago)
- Last Synced: 2025-03-30T19:07:24.709Z (11 months ago)
- Topics: blazeface, pytorch-implementation
- Language: Python
- Homepage:
- Size: 13.7 KB
- Stars: 323
- Watchers: 14
- Forks: 57
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PyTorch_BlazeFace
[](https://travis-ci.com/tkat0/PyTorch_BlazeFace)
Unofficial PyTorch implementation of [BlazeFace](https://sites.google.com/view/perception-cv4arvr/blazeface)
## Installation
```bash
pip install git+https://github.com/tkat0/PyTorch_BlazeFace
```
```python
import torch
from blazeface import BlazeFace
x = torch.randn(1, 3, 128, 128)
model = BlazeFace()
h = model(x)
```
## Paper
### BlazeFace: Sub-millisecond Neural Face Detection on Mobile GPUs
[[Project Page]](https://sites.google.com/view/perception-cv4arvr/blazeface)
[[Original Implementation]](https://github.com/google/mediapipe/tree/master/mediapipe/models#blazeface-face-detection-model)