automl
automl copied to clipboard
p.add_(..., inplace=True) error
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
.
@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