The following warnings occurred: | |||||||||||||||
Warning [2] Undefined property: MyLanguage::$archive_pages - Line: 2 - File: printthread.php(287) : eval()'d code PHP 8.3.12-nmm1 (Linux)
|
Why VSGAN is not supported,... - Printable Version +- Selur's Little Message Board (https://forum.selur.net) +-- Forum: Talk, Talk, Talk (https://forum.selur.net/forum-5.html) +--- Forum: Small Talk (https://forum.selur.net/forum-7.html) +--- Thread: Why VSGAN is not supported,... (/thread-1858.html) |
Why VSGAN is not supported,... - Selur - 15.05.2021 Okay, since every few month someone asks me why Hybrid does not support VSGAN (https://github.com/rlaPHOENiX/VSGAN) here's the answer: It would increase Hybrids install size by 5,4 GB. In case you want to verify it, here's how-to "Create a VSGAN portable version":
So adding this to Hybrid would add an additional 5.4GB and this does not include any models (each ~64MB). In case you want to try out VSGAN:
start the preview. Cu Selur Links to pth files:
RE: Why VSGAN is not supported,... - Selur - 09.10.2021 Since I now offer an addon for Hybrid here's an updated how to, on how I create it: What I did to create a portable Vapoursynth with pytorch&co:
After that it's ready. Cu Selur RE: Why VSGAN is not supported,... - Selur - 08.11.2021 when updating basicvsrpp and torch use: python -m pip install torch===1.10.0+cu111 torchvision===0.11.1 -f https://download.pytorch.org/whl/torch_stable.html RE: Why VSGAN is not supported,... - Selur - 29.12.2021 btw. Game Upscale Discord has a nice model section with some good models too. Cu Selur RE: Why VSGAN is not supported,... - Selur - 26.03.2022 Note that since Vapoursynth R58 requires Python 3.8 or 3.10, aside from vsgan, all the other filters do not work since the use Python 3.9. RE: Why VSGAN is not supported,... - Selur - 26.03.2022 vs-basicvsrpp works when using: python -m pip install mmcv-full -f https://download.openmmlab.com/mmcv/dist/cu113/torch1.11/index.html Cu Selur RE: Why VSGAN is not supported,... - ld57 - 25.10.2023 Hello Selur, thanks first for qll of your work, and thanks for your step by step guide for creation of VSGAN ! I m currently trying to follow and adapt your guide, 1. to try by myself to build the "torch addons", with newer vapoursynth and filters version , instead of asking directly to you if i can download your version 2. to familiarize a bit more with the different addons, tools, and also the python and compilation 3. implement the vs real-esrgan and try it, and also understand how to integrate some others models. I already did several try, i met some issue, that i resolved correctly, or workarounded, and i keep going. but.. there is a but i may need some hints and some support from you if you agree of course : 1. i met several issue with the python - vapoursynth - filter version/support compatibility. For this point i keep testing, and updating a document with the step by step guide, that i will share once it worked on my side. But i may win some time if you could share some hints about which version i should avoid (versions you may know it will be issues/conflicts) -> the scope will stay the tool and filters you indicated in your step by step guide. 2. well , the best thing... the vsviewer : D For this one, i just tried to use the compiled vsviewer.exe (+provided QT6 files) files provided in the current distribution of Hybrid, but i had some errors that i did not analyse yet , as being busy with the first part of the mission (it was related to some missing functions etc, but i suppose it is related to the fact you said you had to adapt vsviewer code to have it running fine with real-esrgan). I may later probably need also your support for this part, but after i successfully made the first part. Then , feel free to support, or share or shoot me if needed Kr, Ld RE: Why VSGAN is not supported,... - Selur - 25.10.2023 You might want to check: https://forum.doom9.org/showthread.php?p=1982615#post1982615 https://forum.doom9.org/showthread.php?p=1992302#post1992302 for more up-to-date instructions. That said, I have torch&mlrt addons for Hybrid nowadays, see: https://forum.selur.net/thread-2820.html (drop a post there, that you also would like the addons and I'll send you my current links via pm after work) If you need further help to build stuff, let me know. (vsviewer should compile fine, at least with visual studio community installed in the system, which I use) Cu Selur RE: Why VSGAN is not supported,... - ld57 - 25.10.2023 geez you already sent so far in your step by step ! really good links you provided, it helps a lot ! i will rework my side, based on these new details, and keep informed. RE: Why VSGAN is not supported,... - ld57 - 25.10.2023 Selur, i was able to go farer than your try of 08/10 , following your procedure in the forum https://forum.doom9.org/showthread.php?p=1992302#post1992302 i changed 3 things : 1. at first step of all , i created an environment variable after the extraction of CUDA-11.8_cuDNN-8.9.1_TensorRT-8.6.1.6_win64.7z Quote:CUDA_HOME=path_of_folder_of_extracted_CUDA-11.8_cuDNN-8.9.1_TensorRT-8.6.1.6_win64 1. as the big pack (CUDA-11.8_cuDNN-8.9.1_TensorRT-8.6.1.6_win64)from HolyWu is for cuda 11.8 i changed the package to download
python -m pip install torch===2.1.0+cu118 torchvision==0.16.0+cu118 -f https://download.pytorch.org/whl/torch_stable.html 2. i used a different method for installing BasicVSR++ i kept upgrading BasicVSR (it wouln't hurt) python -m pip install --upgrade vsbasicvsr then for BasicVSR++ , i also targetted the same cuda compatibility python -m pip install mmcv==2.1.0 -f https://download.openmmlab.com/mmcv/dist/cu118/torch2.1.0/index.html python -m pip install tqdm on my side everything worked. I did not use the openmim method. Another thing : i uninstalled VS2019, and my 2022 installations, and then reinstalled the 2022 community. i saw that after several mix of install and uninstall 1 but not both, i had some strange behavior. I also used python portable 11.6. also my vapoursynth folder is 10.5GB. now i have a full vapoursynth ready, i need now to see what i have to do with Vsviewer. (i hope final thing) i hope it helps. |