autograd
Here are 104 public repositories matching this topic...
-
Updated
Mar 14, 2021 - Jupyter Notebook
-
Updated
Aug 19, 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
Feature details
We would like to define a new operation called SISWAP, that is the square-root of the qml.ISWAP operation. See further details here.
Implementation
List of tasks for completion:
A. Adding the operation
- Adding the
SISWAPnew class for the operation topennylane/ops/qubit/non_parametric_ops.py. Complete its
-
Updated
Aug 9, 2021 - OCaml
-
Updated
Aug 13, 2021 - Nim
-
Updated
Feb 1, 2021 - Python
-
Updated
Aug 18, 2021 - Python
-
Updated
Jun 4, 2021 - Python
-
Updated
Aug 11, 2021
-
Updated
Aug 7, 2021 - Rust
-
Updated
Oct 8, 2020 - Python
Following the merge of the adjoint code, our coverage fell dramatically. We should put in some effort to get it back to 100%! :-)
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
Aug 19, 2021 - Python
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
Apr 19, 2020 - Scala
-
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
Aug 11, 2021 - Python
-
Updated
Oct 13, 2018 - Python
-
Updated
Nov 8, 2020 - 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."


Teach torch.Tensor.scatter_ to handle
index.size(d) > src.size(d).Motivation
Currently,
torch.Tensor.scatter_requiresindex.size(d) <= src.size(d)for all dimensionsd, unlesssrcis float-valued. This constraint seems artificial.