File size: 407 Bytes
4db294e
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
"""FaceAnything: 4D Face Reconstruction from Any Image Sequence (inference release).

Public helpers:
    load_model      -- build the model and load the released checkpoint
    run_inference   -- run the model on a clip -> FacePrediction
"""
from .model import load_model
from .predict import run_inference, FacePrediction

__all__ = ["load_model", "run_inference", "FacePrediction"]
__version__ = "1.0.0"