OperationalError: “no such column: size” when using DWaveSampler with EmbeddingComposite in Python
I'm working on running a QUBO-based FDIA detection model using D-Wave’s Ocean SDK in a VScode Jupyter Notebook (Windows, Python 3.12.3, Ocean SDK installed 8.3.0). The goal is to run a QUBO problem on the D-Wave QPU or hybrid solver via:
python
from dwave.system import DWaveSampler, EmbeddingComposite
sampler = EmbeddingComposite(DWaveSampler())
sampleset = sampler.sample(bqm, label='FDIA QUBO Hybrid Solver')
However, I receive the following error:
OperationalError: no such column: "size" - should this be a string literal in single-quotes?
Comments
Please sign in to leave a comment.