autograd
Here are 105 public repositories matching this topic...
-
Updated
Mar 14, 2021 - Jupyter Notebook
-
Updated
Jul 31, 2021 - C++
Yolo Model
Description
Implement a YOLO model and add it to the DJL model zoo
References
Issue to track tutorial requests:
- Deep Learning with PyTorch: A 60 Minute Blitz - #69
- Sentence Classification - #79
As I was inspecting the MultiControlledX gate, I noticed how it printed out:
MultiControlledX(array([[0, 1],
[1, 0]]), wires=[0, 1, 2, 3])
And was quite confused as to where the array came from. It turns out MultiControlledX inherits from ControlledQubitUnitary with the Unitary matrix as an X gate. This makes MultiControlledX a parametrized gate.
Worse yet, th
-
Updated
Jul 8, 2021 - OCaml
-
Updated
Jul 29, 2021 - Nim
-
Updated
Feb 1, 2021 - Python
-
Updated
Jul 29, 2021 - Python
-
Updated
Jun 4, 2021 - Python
-
Updated
Jul 30, 2021
-
Updated
Jul 25, 2021 - Rust
-
Updated
Oct 8, 2020 - Python
We should support the pseudo-derivative used in Bellec et al. 2018 and subsequent
work by other authors as implemented for example here:
It has the advantage that it naturally lead to sparse gradients and therefore is a good alternative
to f
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 approachWe should upd
-
Updated
Jul 22, 2021 - Julia
-
Updated
Jul 31, 2021 - Python
-
Updated
Apr 19, 2020 - Scala
Okay, so this might not exactly be a "good first issue" - it is a little more advanced, but is still very much accessible to newcomers.
Similar to the mygrad.nnet.max_pool function, I would like there to be a mean-pooling layer. That is, a convolution-style windows is strided over the input, an
-
Updated
Jul 1, 2019 - Python
-
Updated
Jul 12, 2021 - Crystal
-
Updated
Apr 28, 2017 - Lua
-
Updated
Apr 17, 2021 - Jupyter Notebook
-
Updated
Jul 4, 2021 - Swift
-
Updated
Mar 11, 2019 - Jupyter Notebook
-
Updated
Oct 13, 2018 - Python
-
Updated
Nov 8, 2020 - Python
-
Updated
Apr 6, 2021 - Python
Improve this page
Add a description, image, and links to the autograd topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the autograd topic, visit your repo's landing page and select "manage topics."


Support to pickle a jitted function (or at least throw a
TypeErrorwhen using protocol 0 and 1).Motivation
Trying to pickle a jitted function either raises
TypeError: cannot pickle 'torch._C.ScriptFunction' objectwhenprotocol>1or far worse when usingprotocol=0orprotocol=1python 3.9.5 dies with: