tensor
Here are 276 public repositories matching this topic...
-
Updated
Jul 13, 2020 - Jupyter Notebook
-
Updated
Oct 16, 2020 - Python
-
Updated
Oct 14, 2020 - Java
Support Series.median()
-
Updated
Sep 11, 2020 - Python
-
Updated
Sep 18, 2020 - Jupyter Notebook
-
Updated
Oct 15, 2020 - Python
Currently, we do not have test for command-line options. It'd be nice to have one and have CI run it.
https://egison.readthedocs.io/en/latest/reference/command-line-options.html
-
Updated
Oct 15, 2020 - C++
-
Updated
Sep 12, 2020 - Nim
-
Updated
Apr 23, 2020 - MATLAB
-
Updated
Oct 11, 2020 - C
-
Updated
Sep 14, 2020 - C++
-
Updated
Aug 19, 2020 - Python
-
Updated
Oct 16, 2020 - F#
-
Updated
Sep 24, 2020 - OCaml
-
Updated
Sep 9, 2020 - Jupyter Notebook
-
Updated
Sep 17, 2020 - Julia
-
Updated
Sep 12, 2019 - Scala
-
Updated
Oct 13, 2020 - C++
-
Updated
Aug 25, 2020 - C++
-
Updated
Oct 15, 2020 - Julia
Numpy has a way to rotate matrices by increments of 90 degrees using their rot90 method that uses transposes and flips.
There is a transpose method for Tensors, but no way of flipping the Tensor that I see.
Is there a way of properly rotating a Tensor/Dense currently, other than through manual iteration over the
The Scaladoc should be similar to numpy's API reference
-
Updated
Nov 9, 2019 - Nim
-
Updated
Aug 9, 2017
Improve this page
Add a description, image, and links to the tensor topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the tensor topic, visit your repo's landing page and select "manage topics."
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