Jonathan Clark
Jonathan Clark
I didn't test MariaDB, I tried with plain old MySQL Community Edition 5.7 with InnoDB. Quoted from [here](https://mariadb.com/kb/en/mariadb/identifier-names/): > Identifiers may be quoted using the backtick character - `. Quoting...
I guess we can insert the following statement into mysql_schema.sql: `SET SESSION sql_mode = 'ANSI_QUOTES'; ` which should activate it only per this specific session.
You could also try using: `SET GLOBAL sql_mode = 'ANSI_QUOTES';` I'm guessing it still happend since the query and the set session did not run on the same connection, enforcing...
@ipolevoy I'm getting the same error when I attempt to run a clean master branch with a MySQL connection, therefor I don't think it's related to this branch/pull request.
Sorry was a bit busy lately, I will have a good look into it next weekend.
It seems something is weird here since both the zero123-xl.ckpt and the 10500.ckpt are the exact same file size.
https://arxiv.org/abs/2305.18766 And now another loss function comes to light :) Seems very interesting and it's able to skip the refinement stage.
@nagolinc I keep getting CUDA OOM when running your branch (both on V100 and A100): `Error running dreamgaussian: Traceback (most recent call last): File "~/Dev/dreamgaussian/multi-cam.py" , line 1241 , in...
I've tried taking files from here: https://github.com/ashawkey/torch-ngp But then it seems the function is not called properly: ``` TypeError: grid_encode_forward(): incompatible function arguments. The following argument types are supported: 1....
Worked but then I encountered this: File "/home/ubuntu/.local/lib/python3.10/site-packages/nerfacc/cuda/__init__.py", line 13, in call_cuda return getattr(_C, name)(*args, **kwargs) AttributeError: 'NoneType' object has no attribute 'ray_aabb_intersect' So I've tried installing nerfacc like this:...