Skip to content
#

automatic-differentiation

Here are 268 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
aesara
ricardoV94
ricardoV94 commented Apr 7, 2022

This section of the Scan documentation has several issues:

https://aesara.readthedocs.io/en/latest/library/scan.html#using-shared-variables-gibbs-sampling

  1. Binomial no longer accepts n, p as keyword arguments
  2. Outputs info is wrong because it uses a float vector, but the returned output type is int64
  3. aesara.dot is no longer a thing
  4. updates are not actually optional, t
documentation good first issue help wanted Scan
bob-carpenter
bob-carpenter commented Mar 15, 2022

Description

Describe the issue as clearly as possible. Issues are meant for bug reports and feature requests. The issue should contain enough information for a developer to put together a solution.

If this is a general question, please post to the forums.

Example

Here's the current errors.

mkdir -p doc/api
doxygen doxygen/doxygen.cfg
warn
kotlingrad
breandan
breandan commented Oct 25, 2020

Debugging Kotlin∇ code within IntelliJ IDEA can be somewhat cumbersome due to the functional API structure (lots of deeply-nested stack traces and context switching). To facilitate more user-friendly debugging, we should add support for visual debugging by exposing Kaliningraph’s built-in graph visualization capabilities. For example, the use

help wanted good first issue
AeroSandbox

Aircraft design optimization made fast through modern automatic differentiation. Composable analysis tools for aerodynamics, propulsion, structures, trajectory design, and much more.

  • Updated Apr 11, 2022
  • Jupyter Notebook
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
willtebbutt
willtebbutt commented Jan 18, 2020

Lots has changed since the docs were first written. #152 addresses a number of things, but there are a few more things that we might want to consider:

  • changing all references to autodiff / automatic differentiation to AD / algorithmic differentiation, with a terminology box in the docs somewhere, explaining what we're on about.
  • In the "On writing good rrule and frule " bit, we should consi
good first issue

Improve this page

Add a description, image, and links to the automatic-differentiation 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 automatic-differentiation topic, visit your repo's landing page and select "manage topics."

Learn more