The Wayback Machine - https://web.archive.org/web/20220810015819/https://github.com/topics/neural-network
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,558 public repositories matching this topic...

justinchuby
justinchuby commented Jul 8, 2022

Tracking issue on the onnx opset 17 support.

  • Add version 17 as a known version
  • stft
  • istft
  • bartlett_window
  • blackman_window
  • hamming_window
  • hann_window
  • kaiser_window

Closes #80834

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 Aug 9, 2022

Feature Request

System information

ONNX version (you are using): latest main branch

What is the problem that this feature solves?

Making the checker behavior consistent can prevent confusion. And checker should not modify the model in place.

Describe the alternatives you have considered

Keep the same behavior as before.

Describe the feature

Current behavior:
ch

good first issue enhancement onnx checker
nni