mirror of
https://github.com/KwaiVGI/LivePortrait.git
synced 2024-12-22 20:42:38 +00:00
29 lines
923 B
Markdown
29 lines
923 B
Markdown
|
## The directory structure of `pretrained_weights`
|
||
|
|
||
|
```text
|
||
|
pretrained_weights
|
||
|
├── insightface
|
||
|
│ └── models
|
||
|
│ └── buffalo_l
|
||
|
│ ├── 2d106det.onnx
|
||
|
│ └── det_10g.onnx
|
||
|
├── liveportrait
|
||
|
│ ├── base_models
|
||
|
│ │ ├── appearance_feature_extractor.pth
|
||
|
│ │ ├── motion_extractor.pth
|
||
|
│ │ ├── spade_generator.pth
|
||
|
│ │ └── warping_module.pth
|
||
|
│ ├── landmark.onnx
|
||
|
│ └── retargeting_models
|
||
|
│ └── stitching_retargeting_module.pth
|
||
|
└── liveportrait_animals
|
||
|
├── base_models
|
||
|
│ ├── appearance_feature_extractor.pth
|
||
|
│ ├── motion_extractor.pth
|
||
|
│ ├── spade_generator.pth
|
||
|
│ └── warping_module.pth
|
||
|
├── retargeting_models
|
||
|
│ └── stitching_retargeting_module.pth
|
||
|
└── xpose.pth
|
||
|
```
|