CoolFace
Apppublic

Shellbrady/LivePortrait5

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
models.yaml44 linesDownload Raw Back to config
1model_params:2  appearance_feature_extractor_params: # the F in the paper3    image_channel: 34    block_expansion: 645    num_down_blocks: 26    max_features: 5127    reshape_channel: 328    reshape_depth: 169    num_resblocks: 610  motion_extractor_params: # the M in the paper11    num_kp: 2112    backbone: convnextv2_tiny13  warping_module_params: # the W in the paper14    num_kp: 2115    block_expansion: 6416    max_features: 51217    num_down_blocks: 218    reshape_channel: 3219    estimate_occlusion_map: True20    dense_motion_params:21      block_expansion: 3222      max_features: 102423      num_blocks: 524      reshape_depth: 1625      compress: 426  spade_generator_params: # the G in the paper27    upscale: 2 # represents upsample factor 256x256 -> 512x51228    block_expansion: 6429    max_features: 51230    num_down_blocks: 231  stitching_retargeting_module_params: # the S in the paper32    stitching:33      input_size: 126 # (21*3)*234      hidden_sizes: [128, 128, 64]35      output_size: 65 # (21*3)+2(tx,ty)36    lip:37      input_size: 65 # (21*3)+238      hidden_sizes: [128, 128, 64]39      output_size: 63 # (21*3)40    eye:41      input_size: 66 # (21*3)+342      hidden_sizes: [256, 256, 128, 128, 64]43      output_size: 63 # (21*3)44