Skip to content

Interactive Notebooks

Run UniFace examples directly in your browser with Google Colab, or download and run locally with Jupyter.


Available Notebooks

Notebook Colab Description
Face Detection Open In Colab Detect faces and 5-point landmarks
Face Alignment Open In Colab Align faces for recognition
Face Verification Open In Colab Compare faces for identity
Face Search Open In Colab Find a person in group photos
Face Analyzer Open In Colab All-in-one face analysis
Face Parsing Open In Colab Semantic face segmentation
Face Anonymization Open In Colab Privacy-preserving blur
Gaze Estimation Open In Colab Gaze direction estimation

Running Locally

Download and run notebooks on your machine:

# Clone the repository
git clone https://github.com/yakhyo/uniface.git
cd uniface

# Install dependencies
pip install uniface jupyter

# Launch Jupyter
jupyter notebook examples/

Running on Google Colab

Click any "Open in Colab" badge above. The notebooks automatically:

  1. Install UniFace via pip
  2. Clone the repository to access test images
  3. Set up the correct working directory

GPU Acceleration

In Colab, go to Runtime → Change runtime type → GPU for faster inference.


Next Steps