Hello!
I want to see what’s inside the Random layer circuit. How to decompose the whole layer, so that I can study each gate.
dev = qml.device('lightning.qubit', wires=(0,1,2,3))
@qml.qnode(dev)
def circuit():
qml.RandomLayers(rand_params, wires=list(range(4)))
return qml.expval(qml.PauliZ(0))
fig, ax = qml.draw_mpl(circuit)()
fig.show()