pragmascript

Results 3 issues of pragmascript

Hello thank you for releasing this. Could you expand on what preprocessing steps you had to take to be able to train from Nick's audiobooks if any?

Hello, I was trying getting a sample running with `OpenGL.Net.CoreProfile`. Unfortunately getting CoreProfile from NuGet doesn't seem to work. So I tried building it manually from Source. `OpenGL.Net.dll` builds fine...

In the notebook "explore_siren.ipynb" Can you explain why the line `coords.clone().detach().requires_grad_(True)` is necessary? Why wouldn't you be able to get a gradient otherwise? ``` def forward(self, coords): coords = coords.clone().detach().requires_grad_(True)...