mirror of
https://github.com/KwaiVGI/LivePortrait.git
synced 2024-12-22 20:42:38 +00:00
bbb2e33599
* feat: update * feat: update * feat: update * feat: update * feat: update * feat: update * feat: update * chore: refactor * chore: refactor * chore: refactor * fix: video cropping * chore: refactor * chore: remove timm * merge: animal support (#258) * feat: update * feat: update * feat: update * feat: update * feat: update * feat: update * feat: update * feat: update * feat: update * feat: update * feat: update --------- Co-authored-by: zhangdingyun <zhangdingyun@kuaishou.com> feat: update feat: update chore: stage * chore: stage * chore: refactor * chore: refactor * doc: update readme * doc: update readme * doc: update readme * chore: refactor * doc: update * doc: update * doc: update * doc: update * chore: rename * doc: update * doc: update * chore: refactor * doc: update * chore: refactor * chore: refactor * doc: update * chore: update clip feature * chore: add landmark option * doc: update * doc: update * doc: update * doc: update * doc: update * doc: update * doc: update * doc: update * doc: update * doc: update * doc: update * doc: update --------- Co-authored-by: zhangdingyun <zhangdingyun@kuaishou.com> Co-authored-by: zzzweakman <1819489045@qq.com>
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
|
|
```
|