Closed MarMarhoun closed 11 months ago
Hi @MarMarhoun,
It appears that the problem comes from the dtype of your input matrix when the early stopping check is performed by the stop window.
Here are some tricks you could use to overcome the problem:
dtype=torch.float32
as a parameter of sb.maximize
m_sb = m_sb.to(dtype=torch.float32)
use_window=False
Hope this helps.
@bqth29 It works. Thank you for your support.
I used the following code to optimize the proposed dataset:
I faced the following issue, any suggestions to solve this issue: