英語 | 中文
原始倉庫: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內容。歡迎給我留言尋求合作機會。