automl icon indicating copy to clipboard operation
automl copied to clipboard

p.add_(..., inplace=True) error

Open markussteindl opened this issue 1 year ago • 1 comments

commit: c7392f2bab3165244d1c565b66409fa11fa82367 line: automl/lion/lion_pytorch.py:81

When calling Lion.step(), I get this error message:

TypeError: add_() received an invalid combination of arguments - got unrecognized keyword arguments: inplace

I think p.add_() is already the inplace version, while p.add() has an optional parameter inplace.
Or am I using the wrong pytorch version? I have 2.0.1+cu118.

markussteindl avatar Oct 23 '23 19:10 markussteindl

@Stonatus I found some info about Tensor.add_ method in pytorch document, and it means add_ is an inplace method, so I think it might be okey to just remove inplace argument in line: automl/lion/lion_pytorch.py:81, and it seems work fine

fbotp avatar Oct 25 '23 11:10 fbotp