Carlos Mocholí

Results 427 comments of Carlos Mocholí

We'll try this and report back. Only handling configs is acceptable at the moment since it's how we recommend that people interact with the program.

Thank you Mauricio. I won't be able to check this with my original script. Feel free to close the issue if the current implementation is good enough.

> Seems to be that nnutils-pytorch does not support torch > 1.7.0? It should, it's just that there is not maintenance currently 😕 I opened https://github.com/jpuigcerver/nnutils/pull/5 to update this a...

There are some examples in this directory: https://github.com/carmocca/PyLaia-examples/tree/master/legacy Note that you will need to install an old PyLaia version to run them, particularly this one: https://github.com/jpuigcerver/PyLaia/tree/v0.1.0

Your issue happens in code that doesn't come from Lightning: ```python File "D:\codes2\GaussianEditor\threestudio\systems\GassuianEditorAdd.py", line 121, in on_fit_start ``` There you will find the `on_fit_start` hook defined. This is what is...

Might be similar to the infamous https://github.com/Lightning-AI/torchmetrics/issues/1560. Although in your case, you aren't using `transformers` cc @awaelchli

There's this issue on PyTorch to include the SeedSequence API: https://github.com/pytorch/pytorch/issues/56805, but as a workaround, they added https://github.com/pytorch/pytorch/pull/56797 The relevant discussion is at https://github.com/pytorch/pytorch/pull/56488/files#r619435608 This PR can be done in...

@dingusagar You can go ahead and replace the usages you are confident about.

> Do we plan to remove the numpy requirement completely and replace it with torch This is the end goal. Some of our numpy usages are easy to replace, others...

It could be implemented by adapting https://dev-discuss.pytorch.org/t/the-ideal-pytorch-flop-counter-with-torch-dispatch/505 but PyTorch itself does not provide a solution upstream: https://github.com/pytorch/pytorch/issues/5013