The Wayback Machine - https://web.archive.org/web/20201019014641/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 9,876 public repositories matching this topic...

Flamefire
Flamefire commented Oct 15, 2020

During debugging I've seen many constructs like list(map(lambda i: torch.device('cuda:' + str(i)), gpus))

I'd propose to replace those by "regular" list comprehensions. So the above is equivalent to [torch.device('cuda:' + str(i)) for i in gpus]

This replacement can be automated via regexp replacement for (likely) almost all cases.

Reasoning: The nesting of parentheses and the inline

gensim
JonTriebenbach
JonTriebenbach commented Sep 2, 2020

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
    
nni
You can’t perform that action at this time.