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 11,989 public repositories matching this topic...
🚀 Feature
Teach torch.Tensor.scatter_ to handle index.size(d) > src.size(d)
.
Motivation
Currently, torch.Tensor.scatter_
requires index.size(d) <= src.size(d)
for all dimensions d
, unless src
is float-valued. This constraint seems artificial.
import math
import torch
device = 'cuda' # fail
-
Updated
Jun 8, 2021 - Jupyter Notebook
-
Updated
Aug 21, 2021 - Python
-
Updated
Aug 9, 2021
-
Updated
Aug 3, 2021 - C++
-
Updated
Aug 19, 2021 - C
-
Updated
Aug 21, 2021 - Python
-
Updated
Aug 21, 2021 - JavaScript
fitDataset() expects a Dataset that produces elements of a certain shape, with matching batch sizes etc., and throws errors (from standardizeDataIteratorOutput()) when the conditions are not met. These errors should be tested.
-
Updated
Aug 7, 2021 - Jupyter Notebook
-
Updated
Apr 16, 2021 - JavaScript
-
Updated
Aug 19, 2021 - C
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
-
Updated
May 2, 2021
-
Updated
May 2, 2021 - TypeScript
-
Updated
Apr 5, 2021
-
Updated
Jul 30, 2021 - Jupyter Notebook
New Operator
Describe the operator
Why is this operator necessary? What does it accomplish?
This is a frequently used operator in tensorflow/keras
Can this operator be constructed using existing onnx operators?
If so, why not add it as a function?
I don't know.
Is this operator used by any model currently? Which one?
Are you willing to contribute it?
-
Updated
Aug 21, 2021 - Python
-
Updated
Jan 25, 2021 - Python
-
Updated
Jan 16, 2021 - Java
-
Updated
Dec 22, 2020 - Python
-
Updated
Jan 15, 2021 - Jupyter Notebook
-
Updated
Oct 22, 2020
-
Updated
Aug 14, 2019 - TypeScript
-
Updated
Aug 19, 2021 - Python
-
Updated
Aug 19, 2021
-
Updated
Apr 1, 2021 - Jupyter Notebook
-
Updated
Aug 15, 2021 - Python
Current implementation of Go binding can not specify options.
GPUOptions struct is in internal package. And
go generate
doesn't work for protobuf directory. So we can't specify GPUOptions forNewSession
.