Description
I am attempting to use TFQ to do measurement noise mitigation by passing the measured bitstrings into a tensorflow model. Ultimately, this is something I'd like to run on either physical or simulated hardware, but I don't see support for this currently in TFQ.
I have been reading in the source for Expectation
, Sample
, and SampledExpectation
, and from what I can tell there doesn't seem to be support for physical or cirq.Simulator.run()
type backends through those channels. Currently it seems like the only options are "noiseless" and "noisy", without the ability to pass a customized noise model or on-chip device. Is there a way to pass a physical device execution or a simulated device to generate the data to compute expectation values with respect to as TFQ layer?
Thanks.