Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 1.73 KB

README.md

File metadata and controls

29 lines (24 loc) · 1.73 KB

UncertaintyRegression

The code for "Simple and Effective Approaches for Uncertainty Prediction in Facial Action Unit Intensity Regression" at FG 2020

All building blocks are part of this repository:

Installation

git clone [email protected]:twoertwein/UncertaintyRegression.git
cd UncertaintyRegression
poetry update
poetry run pip install torchvision --extra-index-url https://download.pytorch.org/whl/cu116

Usage

Run the grid-search for a primary model to predict facial action units (AU) intensities. Some primary models can also estimate their uncertainty.

python train.py --method dropout --workers 4 --dataset mnist

Train a secondary model to estimate the uncertainty of the primary dropout model.

python train_secundary.py --uncertainty umlp --workers 4 --dataset mnist