我正在尝试使用 Hamiltonian Ising 模型将金融投资组合优化问题编码为量子退火器。我正在使用dwave模块
neal.sampler.SimulatedAnnealingSampler.sample_ising
我想知道如何确定偏见是什么?我真的不明白它是如何工作的。在 Dwave 的文档中,它说:
还有这个示例代码:
import neal
>>> sampler = neal.SimulatedAnnealingSampler()
h = {'a': 0.0, 'b': 0.0, 'c': 0.0}
J = {('a', 'b'): 1.0, ('b', 'c'): 1.0, ('a', 'c'): 1.0}
sampleset = sampler.sample_ising(h, J, num_reads=10)
print(sampleset.first.energy)