![]() |
|
Deoldify Vapoursynth filter - 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: Deoldify Vapoursynth filter (/thread-3595.html) Pages:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
RE: Deoldify Vapoursynth filter - Selur - 13.02.2026 @Dan64: could you create a new spartial_correlation_sampler build with Python 3.13 and cu130? Cu Selur RE: Deoldify Vapoursynth filter - Dan64 - 14.02.2026 Torch version ? RE: Deoldify Vapoursynth filter - Selur - 14.02.2026 torch 2.10.0+cu130 see: pip list Cu Selur RE: Deoldify Vapoursynth filter - Dan64 - 14.02.2026 Hello Selur, I attached the zipped wheel. I cannot test it because I don't have already switched to python 3.13 and torch 2.10 with CUDA 13.0. Let me know if is working on your side. Dan RE: Deoldify Vapoursynth filter - Selur - 14.02.2026 Works! Thanks! One less hurdle. (HolyWu's filter don't work with TRT+FP16 and dlib cuda version doesn't work) Cu Selur RE: Deoldify Vapoursynth filter - Dan64 - 15.02.2026 Hello Selur, let me know if the attached dlib build is working on your side. Dan RE: Deoldify Vapoursynth filter - Selur - 15.02.2026 Thanks, but sadly not: 2026-02-15 14:24:46.364Cu Selur RE: Deoldify Vapoursynth filter - Dan64 - 15.02.2026 Try the attached script and let me know. Dan P.S. check also if the following paths are available on your side (file: dlib\__init__.py): if 'ON' == 'ON': add_lib_to_dll_path('C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v13.0/lib/x64/cudnn.lib') add_lib_to_dll_path('C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v13.0/lib/x64/cudart.lib') RE: Deoldify Vapoursynth filter - Selur - 15.02.2026 I placed the .dat into the 'Hybrid\64bit\Vapoursynth\Lib\site-packages\vscodeformer\models' folder and renamed it to 'mmod_human_face_detector-4cb19393.dat' to replace the existing one. Tried Vapoursynth: 2026-02-15 16:02:50.773then i tried: F:\Hybrid\64bit\Vapoursynth>python test_dlib_cuda_13.pyCu Selur RE: Deoldify Vapoursynth filter - Dan64 - 15.02.2026 I included mmod_human_face_detector.dat because was used by the script python test_dlib_cuda_13.py. CodeFormer is using the same model but with a different name and location. But in this case the test script fails when dlib is imported. This means that in your PC is missing CUDA 13 or is not located in 'C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v13.0'. In the case it is installed this means that is missing cuDNN. You need: 1) download: cudnn-windows-x86_64-9.15.1.9_cuda13-archive.zip 2) extract the cuDNN package (it's a .zip file, not a real installer). Copy the files directly into the CUDA directory: # HeaderThis should fix the issue. Dan P.S. as shown in release-compatibility-matrix for pytorch version 2.10 with CUDA 13.0 is used CUDNN 9.15.1.9 (note that CUDA 13.0 is still considered experimental) |