tensors
Here are 95 public repositories matching this topic...
-
Updated
Apr 19, 2022 - C++
Issue to track tutorial requests:
- Deep Learning with PyTorch: A 60 Minute Blitz - #69
- Sentence Classification - #79
-
Updated
Jan 27, 2022 - Python
-
Updated
Apr 11, 2022 - C++
We should just return x, when all the shapes passed into specify_shape are None as this won't do anything.
import aesara.tensor as at
x = at.matrix("x")
y = at.specify_shape(x, (None, None))
assert y is xThis has the potential to simplify internal code, and avoid some rewrites to remove useless specify_shapes
-
Updated
Jan 1, 2022 - C++
-
Updated
Apr 20, 2022 - C++
-
Updated
Apr 21, 2022 - Julia
-
Updated
Apr 18, 2022 - Python
-
Updated
Jun 21, 2019 - Jupyter Notebook
-
Updated
Apr 22, 2022 - Python
-
Updated
Feb 18, 2022 - C++
-
Updated
Apr 11, 2022 - C++
-
Updated
Feb 18, 2022 - C
-
Updated
Apr 19, 2022 - C#
-
Updated
Feb 9, 2022 - Crystal
-
Updated
Apr 20, 2022 - Python
Related
#870
Feature functionality
As per #945, it is possible to pass a condition to _operations.__binary_op via the kwarg where. This feature is available in ht.divide. Extend feature to all operations calling _operations.__binary_op, if the numpy API calls for it.
-
Updated
Mar 12, 2021 - MATLAB
-
Updated
May 7, 2021 - Python
-
Updated
Oct 14, 2021 - Python
-
Updated
Sep 17, 2021 - Mathematica
-
Updated
Apr 18, 2022 - C++
-
Updated
Dec 23, 2021 - Haskell
-
Updated
Feb 7, 2022 - Julia
-
Updated
Mar 7, 2022 - C#
-
Updated
Feb 8, 2017 - MATLAB
Improve this page
Add a description, image, and links to the tensors topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the tensors topic, visit your repo's landing page and select "manage topics."
I would like to convert a DataFrame to a JSON object the same way that Pandas does with
to_dict().toJSON()treats rows as elements in an array, and ignores the index labels. Butto_dict()uses the index as keys.Here is an example of what I have in mind: