Open markussteindl opened 1 year ago
@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
commit: c7392f2bab3165244d1c565b66409fa11fa82367 line: automl/lion/lion_pytorch.py:81
When calling
Lion.step()
, I get this error message:I think
p.add_()
is already the inplace version, whilep.add()
has an optional parameterinplace
.Or am I using the wrong pytorch version? I have
2.0.1+cu118
.