Skip to content
#

Neural Network

Artificial neural networks (ANN) are computational systems that "learn" to perform tasks by considering examples, generally without being programmed with any task-specific rules.

Here are 14,459 public repositories matching this topic...

justinchuby
justinchuby commented Jul 26, 2022

🐛 Describe the bug

The function einsum_helper in torch/onnx/symbolic_opset12.py is a helper. It is not meant for public consumption. We should rename it to _einsum_helper and remove it from __all__

Versions

N/A

module: onnx good first issue triaged OSS contribution wanted
gensim
mpenkov
mpenkov commented Jun 22, 2021

In gensim/models/fasttext.py:

    model = FastText(
        vector_size=m.dim,
        vector_size=m.dim,
        window=m.ws,
        window=m.ws,
        epochs=m.epoch,
        epochs=m.epoch,
        negative=m.neg,
        negative=m.neg,
        # FIXME: these next 2 lines read in unsupported FB FT modes (loss=3 softmax or loss=4 onevsall,
        # or model=3 supervi
bug difficulty easy good first issue fasttext
jcwchen
jcwchen commented Jul 28, 2022

Feature Request

System information

ONNX version (you are using): 1.12

What is the problem that this feature solves?

It would be great if ONNX Hub can download test_data_set. It will be helpful for testing ONNX Model Zoo.

Describe the feature

Currently users can only download models through ONNX Hub. There is no easy API for them to download the test_data_set from.tar.gz

good first issue enhancement onnx hub
nni