Skip to content
#

quantum-machine-learning

Here are 157 public repositories matching this topic...

pennylane
glassnotes
glassnotes commented Nov 25, 2021

Feature details

Due to the similarity, it is easy to confuse qml.X and qml.PauliX, especially since other methods of specifying circuits, e.g., QASM, use x for PauliX. But if a user uses qml.X in their circuit on a qubit device, nothing happens to inform them that the incorrect operation is being used:

@qml.qnode(dev)
def circ():
    qml.PauliX(wires=0)
    qml.Hada
enhancement good first issue
qml
josh146
josh146 commented Apr 23, 2021

The init module has been deprecated, and the recommend approach for generating initial weights is to use the Template.shape method:

>>> from pennylane.templates import StronglyEntanglingLayers
>>> qml.init.strong_ent_layers_normal(n_layers=3, n_wires=2) # deprecated
>>> np.random.random(StronglyEntanglingLayers.shape(n_layers=3, n_wires=2))  # new approach

We should upd

help wanted good first issue
qmlcourse
covalent
github-actions[bot]
github-actions[bot] commented Jun 24, 2021

Improve QFT part with other non-Fourier transform (wavelet, fourier on groups..

It would be cool to have some non-trivial facts about the QFT

(like how to see it as a mapping between elements of a group to a Hilbert space).

But also it would be even better to have more quantum transform, like the Wavelet transfrom.

This can be really helpful in the context of group-theoretical machine learnin

enhancement help wanted good first issue todo
QNLP

Improve this page

Add a description, image, and links to the quantum-machine-learning topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the quantum-machine-learning topic, visit your repo's landing page and select "manage topics."

Learn more