Dmitry Shabat
Dmitry Shabat
@ashawkey this may or may not be related to https://github.com/ashawkey/torch-ngp/issues/96 Using the `GridEncoder` from the latest commit in any way (for example, this) ``` enc = GridEncoder(input_dim=3) enc(torch.rand(3)) ``` results...
One of the features of the [Smart-Typography](https://github.com/mgmeyers/obsidian-smart-typography) plugin is automatically turning standard double quotes into curly double quotes ("" → ““). This is a very subtle change that is hard...
One of the features of the Smart-Typography plugin is automatically turning standard double quotes into curly double quotes ("" → ““). This is a very subtle change that is hard...
### Steps to reproduce - Create a file in the vault with an unaccesible creation date. I got such a file whlie creating a text file on my HDD https://gitlab.gnome.org/GNOME/nautilus/-/issues/1734....
``` from pydantic import BaseModel, Field import tyro class A(BaseModel): x: str class B(BaseModel): a: A = Field(default_factory=A) if __name__ == "__main__": tyro.cli(B) ``` This particular example failed on me...