You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In fact deploying this project on windows 10 is quite troublesome, my GPU is 4090, there are a lot of bugs , including:
AttributeError: module 'distutils' has no attribute '_msvccompiler'
Solution: lower the setuptools
[WinError 1455] The page file is too small to complete the operation (页面文件太小,无法完成操作)
Solution: First, Advanced System Settings --> Increase the virtual memory (e.g., 20GB), second, restart your computer and find the following code in dtu.py, colmap.py, blender.py :
Change os.cpu_count() to a suitable value, maybe 4 or 6? Just have a try.
3. Loss=NaN after 15000 iters
Solution: modify os.cpu_count() to 0, but this will dramatically reduce the training speed to about 5 iters/s after 15000 iters.
All in all, this works.
The text was updated successfully, but these errors were encountered:
In fact deploying this project on windows 10 is quite troublesome, my GPU is 4090, there are a lot of bugs , including:
Solution: lower the setuptools
Solution: First, Advanced System Settings --> Increase the virtual memory (e.g., 20GB), second, restart your computer and find the following code in dtu.py, colmap.py, blender.py :
Change
os.cpu_count()
to a suitable value, maybe 4 or 6? Just have a try.3. Loss=NaN after 15000 iters
Solution: modify
os.cpu_count()
to 0, but this will dramatically reduce the training speed to about 5 iters/s after 15000 iters.All in all, this works.
The text was updated successfully, but these errors were encountered: