The Wayback Machine - https://web.archive.org/web/20220709144033/https://github.com/topics/autograd
Skip to content
#

autograd

Here are 128 public repositories matching this topic...

kumpera
kumpera commented Jun 13, 2022

🚀 The feature, motivation and pitch

The current implementation of Zero Redundancy optimizer has its own implementation of object broadcasting.

We should replace it with c10d [broadcast_object_list](https://pytorch.org/docs/stable/distributed.html#torch.distributed.broadcast_object_lis

oncall: distributed module: bootcamp good first issue triaged
djl
zachgk
zachgk commented Apr 20, 2022

Description

This issue is to create the TabNet model and add it to the basic model zoo. TabNet is a good example of a deep learning model that will work with the tabular modality. Then, it can be trained or tested with an implementation of the CsvDataset such as AirfoilRandomAccess or AmesRandomAccess.

References

  • Paper: [TabNet: Attentive Interpretable Tabular Learning](htt
enhancement good first issue Call for Contribution
pennylane
albi3ro
albi3ro commented Jun 16, 2022

Right now, qml.operation.expand_matrix is often called in a code-block like:

if wire_order is None or self.wires == Wires(wire_order):
    return canonical_matrix

expand_matrix(canonical_matrix, wires=self.wires, wire_order=wire_order)

see [pennylane/operation.py Line 587](https://github.com/PennyLaneAI/pennylane/blob/b6fc5380abea6215661704ebe2f5cb8e7a599635/pennylane/operation.p

good first issue code quality 🎓
norse
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

Improve this page

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

Learn more