FaceAnything / src /faceanything /__init__.py
Umut Kocasari
Add FaceAnything Gradio demo app
4db294e
Raw
History Blame Contribute Delete
407 Bytes
"""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"