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,722 public repositories matching this topic...
🚀 Feature
Add support for torch.max with:
- CUDA bfloat16
- CPU float16 and bfloat16
Motivation
Currently, torch.max has support for CUDA float16:
>>> torch.rand(10, dtype=torch.float16, device='cuda').max()
tensor(0.8530, device='cuda:0', dtype=torch.float16)
But all three other combinations of CPU/CUDA and float16/bfloat16 are not supported:
>>> torch.ra
-
Updated
Jan 23, 2021 - Jupyter Notebook
-
Updated
Feb 15, 2021 - Python
-
Updated
Sep 8, 2020 - C++
-
Updated
Feb 9, 2021
-
Updated
Feb 15, 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
Feb 14, 2021 - Python
-
Updated
Feb 9, 2021 - Jupyter Notebook
-
Updated
Feb 15, 2021 - JavaScript
-
Updated
Jan 23, 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
Feb 10, 2021
-
Updated
Oct 16, 2020 - Jupyter Notebook
-
Updated
Dec 19, 2020
-
Updated
Feb 13, 2021 - C++
-
Updated
Nov 13, 2020 - Python
Add a new API for converting a model to external data. Today the conversion happens in 2 steps
external_data_helper.convert_model_to_external_data(<model>, <all_tensors_to_one_file>, <size_threshold>) save_model(model, output_path)
We want to add another api which combines the 2 steps
`
save_model_to_external_data(, <output_
-
Updated
Jan 25, 2021 - Python
-
Updated
Feb 14, 2021 - JavaScript
I'm using mxnet to do some work, but there is nothing when I search the mxnet trial and example.
-
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
Feb 7, 2021 - Python
-
Updated
Feb 9, 2021
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