autograd
Here are 106 public repositories matching this topic...
-
Updated
Mar 14, 2021 - Jupyter Notebook
-
Updated
Sep 8, 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
Update handling of sort in qml.math such that the return values are the same across all interfaces.
The current behaviour is as follows. For numpy, jax, and tf,
>>> a = np.array([1, 3, 4, 2])
>>> qml.math.sort(a)
tensor([1, 2, 3, 4], requires_grad=True)But for torch, the argument indices are also returned:
>>> a = torch.tensor-
Updated
Aug 9, 2021 - OCaml
-
Updated
Sep 8, 2021 - Nim
-
Updated
Feb 1, 2021 - Python
-
Updated
Sep 16, 2021 - Python
-
Updated
Sep 6, 2021 - Python
-
Updated
Sep 14, 2021
-
Updated
Aug 7, 2021 - Rust
-
Updated
Oct 8, 2020 - Python
Spike-time decoding
Add a function and module that permits spike-time decoding, as suggested by @schmitts https://twitter.com/sbstnschmtthd/status/1432343373072019461
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
Sep 17, 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
Sep 17, 2021 - Crystal
-
Updated
Apr 28, 2017 - Lua
-
Updated
Apr 17, 2021 - Jupyter Notebook
-
Updated
Jul 4, 2021 - Swift
-
Updated
Sep 18, 2021 - Python
-
Updated
Mar 11, 2019 - Jupyter Notebook
-
Updated
Oct 13, 2018 - Python
-
Updated
Sep 13, 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."


Motivation
Currently lots of C++ based unit tests are executed directly from test.sh/win-test.sh for example:
https://github.com/pytorch/pytorch/blob/0bd8d0951dcb4063c0f7552a7404bd7f0e7b6e6f/.jenkins/pytorch/test.sh#L317
Which have following drawbacks: