pub trait FaceModel<B: Backend>:
Send
+ Sync
+ 'static
+ Any
+ DynClone {
// Required methods
fn expression2offsets(
&self,
expression: &ExpressionG<B>,
) -> Tensor<B, 2, Float>;
fn get_face_model(&self) -> &dyn FaceModel<B>;
}