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 10,930 public repositories matching this topic...
🐛 Bug
I stumbled upon excessive CPU usage for my training code running on GPU. After some investigations I found the culprit.
It basically was
x = torch.eye(256).to('cuda')
To Reproduce
This is quick and loads single CPU core.
%%timeit
torch.eye(181)
6.43 µs ± 218 ns per loop (mean ± std. dev. of 7 runs, 100000 loops each)
This is 3 times slowe
-
Updated
on Mar 26, 2021 - Jupyter Notebook
-
Updated
on Mar 26, 2021 - Python
-
Updated
on Sep 8, 2020 - C++
-
Updated
on Feb 9, 2021
-
Updated
on Mar 28, 2021 - C
Reference from TensorFlow: https://www.tensorflow.org/api_docs/cc/class/tensorflow/ops/matrix-band-part
This op is used by the Music Transformer model.
-
Updated
on Mar 27, 2021 - Python
-
Updated
on Mar 18, 2021 - Jupyter Notebook
-
Updated
on Mar 27, 2021 - JavaScript
-
Updated
on Mar 18, 2021 - TypeScript
Not a high-priority at all, but it'd be more sensible for such a tutorial/testing utility corpus to be implemented elsewhere - maybe under /test/
or some other data- or doc- related module – rather than in gensim.models.word2vec
.
Originally posted by @gojomo in RaRe-Technologies/gensim#2939 (comment)
-
Updated
on Mar 24, 2021
-
Updated
on Mar 27, 2021 - C++
-
Updated
on Dec 19, 2020
-
Updated
on Oct 16, 2020 - Jupyter Notebook
Bug Report
These tests were run on s390x. s390x is big-endian architecture.
Failure log for helper_test.py
________________________________________________ TestHelperTensorFunctions.test_make_tensor ________________________________________________
self = <helper_test.TestHelperTensorFunctions testMethod=test_make_tensor>
def test_make_tensor(self): # type: () -> None
-
Updated
on Feb 14, 2021 - JavaScript
-
Updated
on Jan 25, 2021 - Python
I'm using mxnet to do some work, but there is nothing when I search the mxnet trial and example.
-
Updated
on Jan 16, 2021 - Java
-
Updated
on Dec 22, 2020 - Python
-
Updated
on Jan 15, 2021 - Jupyter Notebook
-
Updated
on Oct 22, 2020
-
Updated
on Aug 14, 2019 - TypeScript
-
Updated
on Mar 17, 2021 - Python
-
Updated
on Mar 25, 2021
-
Updated
on Sep 23, 2020 - Jupyter Notebook
Hi I would like to propose a better implementation for 'test_indices':
We can remove the unneeded np.array casting:
Cleaner/New:
test_indices = list(set(range(len(texts))) - set(train_indices))
Old:
test_indices = np.array(list(set(range(len(texts))) - set(train_indices)))
Please make sure that this is a documentation issue. As per our GitHub Policy, we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:doc_template
System information