You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enable serialization and de-serialization of the Optimizers such that they can be sent to Qiskit Runtime as algorithm settings. This is easily done by adding to_dict and from_dict methods and agree on a common structure, such as
{'name': 'SPSA', # required key'maxiter': 100,
# other settings
}
It's probably best to wait after #6319 is merged and then add it to the SciPyMinimizer base class.
The text was updated successfully, but these errors were encountered:
What is the expected enhancement?
Enable serialization and de-serialization of the
Optimizer
s such that they can be sent to Qiskit Runtime as algorithm settings. This is easily done by addingto_dict
andfrom_dict
methods and agree on a common structure, such asIt's probably best to wait after #6319 is merged and then add it to the
SciPyMinimizer
base class.The text was updated successfully, but these errors were encountered: