英语 | 中文
原始仓库:LivePortrait,感谢作者分享
新功能:
如果您觉得这个项目有用,请给它一个star✨✨
变更日志
python run.py --src_image assets/examples/source/s39.jpg --dri_video assets/examples/driving/d0.mp4 --cfg configs/trt_infer.yaml --paste_back --animal
docker pull shaoguo/faster_liveportrait:v3
添加了对动物模型的支持。
huggingface-cli download warmshao/FasterLivePortrait --local-dir ./checkpoints
,然后将其转换为TRT格式。docker pull shaoguo/faster_liveportrait:v3
。使用动物模型: python run.py --src_image assets/examples/source/s39.jpg --dri_video 0 --cfg configs/trt_infer.yaml --realtime --animal
使用MediaPipe模型替代InsightFace
python app.py --mode trt --mp
或python app.py --mode onnx --mp
python run.py --src_image assets/examples/source/s12.jpg --dri_video 0 --cfg configs/trt_mp_infer.yaml
FasterLivePortrait-windows
,双击all_onnx2trt.bat
转换onnx文件,需要一些时间。app.bat
,打开网页: http://localhost:9870/
camera.bat
,按q
停止。如果要更改目标图像,请在命令行中运行: camera.bat assets/examples/source/s9.jpg
brew install ffmpeg
conda create -n flip python=3.10 && conda activate flip
pip install -r requirements_macos.txt
huggingface-cli download warmshao/FasterLivePortrait --local-dir ./checkpoints
python app.py --mode onnx
docker pull shaoguo/faster_liveportrait:v3
$FasterLivePortrait_ROOT
替换为您下载 FasterLivePortrait 的本地目录: docker run -it --gpus=all
--name faster_liveportrait
-v $FasterLivePortrait_ROOT :/root/FasterLivePortrait
--restart=always
-p 9870:9870
shaoguo/faster_liveportrait:v3
/bin/bash
pip install -r requirements.txt
huggingface-cli download warmshao/FasterLivePortrait --local-dir ./checkpoints
。pip install onnxruntime
。但是,cpu 推理速度极慢,不推荐使用。最新的onnxruntime-gpu仍然不支持grid_sample cuda,但我找到了支持它的分支。请按照以下步骤从源安装onnxruntime-gpu
:git clone https://github.com/microsoft/onnxruntime
git checkout liqun/ImageDecoder-cuda
。感谢liqun提供带有cuda实现的grid_sample!cuda_version
和CMAKE_CUDA_ARCHITECTURES
: ./build.sh --parallel
--build_shared_lib --use_cuda
--cuda_version 11.8
--cuda_home /usr/local/cuda --cudnn_home /usr/local/cuda/
--config Release --build_wheel --skip_tests
--cmake_extra_defines CMAKE_CUDA_ARCHITECTURES= " 60;70;75;80;86 "
--cmake_extra_defines CMAKE_CUDA_COMPILER=/usr/local/cuda/bin/nvcc
--disable_contrib_ops
--allow_running_as_root
pip install build/Linux/Release/dist/onnxruntime_gpu-1.17.0-cp310-cp310-linux_x86_64.whl
python run.py
--src_image assets/examples/source/s10.jpg
--dri_video assets/examples/driving/d14.mp4
--cfg configs/onnx_infer.yaml
git clone https://github.com/SeanWangJS/grid-sample3d-trt-plugin
CMakeLists.txt
中的第 30 行修改为: set_target_properties(${PROJECT_NAME} PROPERTIES CUDA_ARCHITECTURES "60;70;75;80;86")
export PATH=/usr/local/cuda/bin:$PATH
mkdir build && cd build
cmake .. -DTensorRT_ROOT=$TENSORRT_HOME
,将 $TENSORRT_HOME 替换为您自己的 TensorRT 根目录。make
,记住.so文件的地址,将scripts/onnx2trt.py
和src/models/predictor.py
中的/opt/grid-sample3d-trt-plugin/build/libgrid_sample_3d_plugin.so
替换为自己的.so文件路径huggingface-cli download warmshao/FasterLivePortrait --local-dir ./checkpoints
。将所有ONNX模型转换为TensorRT,运行sh scripts/all_onnx2trt.sh
和sh scripts/all_onnx2trt_animal.sh
python run.py
--src_image assets/examples/source/s10.jpg
--dri_video assets/examples/driving/d14.mp4
--cfg configs/trt_infer.yaml
python run.py
--src_image assets/examples/source/s10.jpg
--dri_video 0
--cfg configs/trt_infer.yaml
--realtime
python app.py --mode onnx
python app.py --mode trt
http://localhost:9870/
关注我的shipinhao频道,持续更新我的AIGC内容。欢迎给我留言寻求合作机会。