Meatfucker
Meatfucker
This is due to the initial recursive git clone command not working.
Upgrading to 3.44.3 got the dataset error to go away, but its now throwing this error. `(rerender) PS D:\ML\apps\Rerender_A_Video> python .\webUI.py logging improved. Traceback (most recent call last): File ".\webUI.py",...
This is an issue with their package set. remove your existing conda enviroment and create a new one with this. `conda create --name text2live python=3.9 pytorch==1.10.0 torchvision==0.11.0 torchaudio==0.10.0 cudatoolkit=11.3 -c...
You may need to adjust the Cuda version depending on your card and its cuda capabilities. The pytorch website has an archive of old commands to pull in older versions....
The program requires extremely high VRAM. I oom'd about two thirds of the way training on a 24gb card. They recommend a 36gb GPU and they seem to mean it....
This can be fixed by changing this line in train_video.py `seed = np.random.randint(2 ** 32)` to `seed = np.random.randint(2 ** 32, dtype=np.int64)` A similar line exists in train_image.py that can...