Rerender_A_Video icon indicating copy to clipboard operation
Rerender_A_Video copied to clipboard

[SIGGRAPH Asia 2023] Rerender A Video: Zero-Shot Text-Guided Video-to-Video Translation

Results 53 Rerender_A_Video issues
Sort by recently updated
recently updated
newest added

Even though I cloned the repository using the command `git clone [email protected]:williamyang1991/Rerender_A_Video.git --recursive` like this, I still encounter the error `No module named 'deps.ControlNet.share'`.

I run project on RTX 3090 TI, in docker container (dockerfile below) ``` FROM nvcr.io/nvidia/cuda:11.3.1-cudnn8-runtime-ubuntu20.04 ENV DEBIAN_FRONTEND=noninteractive # install base dependencies RUN apt update && apt install curl wget nano...

首先非常惊喜的发现是我们ntu学长的工作哈哈哈哈,非常牛的工作!! 我使用的是A100,会出现下图的问题 ![c5ae2b426e6a69d0c37b7e72b787b29](https://github.com/user-attachments/assets/a41087f3-ec0a-4678-bc17-cce91108c964) 核心问题在于架构不同需要重新修改 可以参考https://arnon.dk/matching-sm-architectures-arch-and-gencode-for-various-nvidia-cards/ 在A100需要修改Rerender_A_Video/deps/ebsynth/build-linux-cpu+cuda.sh中成compute_80!! ` nvcc -arch compute_80 src/ebsynth.cpp src/ebsynth_cpu.cpp src/ebsynth_cuda.cu -I"include" -DNDEBUG -D__CORRECT_ISO_CPP11_MATH_H_PROTO -O6 -std=c++11 -w -Xcompiler -fopenmp -o bin/ebsynth `