autograd
Here are 94 public repositories matching this topic...
-
Updated
Mar 14, 2021 - Jupyter Notebook
-
Updated
Apr 30, 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
-
Updated
Apr 29, 2021 - OCaml
-
Updated
May 3, 2021 - Python
-
Updated
Apr 17, 2021 - Nim
-
Updated
Feb 1, 2021 - Python
-
Updated
Apr 25, 2021 - Python
-
Updated
Apr 23, 2021 - Python
-
Updated
Apr 16, 2021 - Rust
-
Updated
Oct 8, 2020 - Python
-
Updated
May 3, 2021
For simple neuron types like leaky integrate and fire neurons it
is possible to analytically describe the maximal membrane voltage
in response to a spike in terms of the membrane and synapse
time constants. It makes sense to scale the weights according to
that factor in order to normalise the initialisation.
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
Feb 6, 2021 - Julia
-
Updated
Apr 28, 2021 - Python
-
Updated
Apr 19, 2020 - Scala
-
Updated
Jul 1, 2019 - 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 9, 2021 - Crystal
-
Updated
Apr 28, 2017 - Lua
-
Updated
Apr 17, 2021 - Jupyter Notebook
-
Updated
Feb 15, 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."
The builtin
getattrfunction has a third optional parameter calleddefault, returned if the key fetched does not exist. However, the IR emitter does not support this third parameter and supports only the 2 arguments version:https://github.com/pytorch/pytorch/blob/master/torch/csrc/jit/frontend/ir_emitter.cpp#L2858-L285