Spaces:
Paused
Paused
File size: 2,844 Bytes
d69879c 0aee4e5 d69879c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 |
---
title: FacePoke
emoji: 💬
colorFrom: yellow
colorTo: red
sdk: docker
pinned: true
license: mit
header: mini
app_file: app.py
app_port: 8080
---
# FacePoke
This project is not finished! Controls of the eyes, eyebrow etc are not finished yet!
## Table of Contents
- [Introduction](#introduction)
- [Acknowledgements](#acknowledgements)
- [Installation](#installation)
- [Local Setup](#local-setup)
- [Docker Deployment](#docker-deployment)
- [Development](#development)
- [Contributing](#contributing)
- [License](#license)
## Introduction
A real-time head transformation app.
For best performance please run the app from your own machine (local or in the cloud).
**Repository**: [GitHub - jbilcke-hf/FacePoke](https://github.com/jbilcke-hf/FacePoke)
You can try the demo but it is a shared space, latency may be high if there are multiple users or if you live far from the datacenter hosting the Hugging Face Space.
**Live Demo**: [FacePoke on Hugging Face Spaces](https://huggingface.co/spaces/jbilcke-hf/FacePoke)
## Acknowledgements
This project is based on LivePortrait: https://arxiv.org/abs/2407.03168
It uses the face transformation routines from https://github.com/PowerHouseMan/ComfyUI-AdvancedLivePortrait
## Installation
### Local Setup
1. Clone the repository:
```bash
git clone https://github.com/jbilcke-hf/FacePoke.git
cd FacePoke
```
2. Install Python dependencies:
```bash
pip install -r requirements.txt
```
3. Install frontend dependencies:
```bash
cd client
bun install
```
4. Build the frontend:
```bash
bun build ./src/index.tsx --outdir ../public/
```
5. Start the backend server:
```bash
python app.py
```
6. Open `http://localhost:8080` in your web browser.
### Docker Deployment
1. Build the Docker image:
```bash
docker build -t facepoke .
```
2. Run the container:
```bash
docker run -p 8080:8080 facepoke
```
3. To deploy to Hugging Face Spaces:
- Fork the repository on GitHub.
- Create a new Space on Hugging Face.
- Connect your GitHub repository to the Space.
- Configure the Space to use the Docker runtime.
## Development
The project structure is organized as follows:
- `app.py`: Main backend server handling WebSocket connections.
- `engine.py`: Core logic.
- `loader.py`: Initializes and loads AI models.
- `client/`: Frontend React application.
- `src/`: TypeScript source files.
- `public/`: Static assets and built files.
## Contributing
Contributions to FacePoke are welcome! Please read our [Contributing Guidelines](CONTRIBUTING.md) for details on how to submit pull requests, report issues, or request features.
## License
FacePoke is released under the MIT License. See the [LICENSE](LICENSE) file for details.
---
Developed with ❤️ by Julian Bilcke at Hugging Face
|