numpy
Here are 6,771 public repositories matching this topic...
-
Updated
Oct 21, 2020 - Jupyter Notebook
-
Updated
Oct 1, 2020 - Python
Improve navigation of the I/O how-to by prepending a decision tree/flowchart using an image or graphviz, as suggested by @mattip.
-
Updated
Oct 19, 2019
-
Updated
Oct 31, 2020 - Python
-
Updated
Sep 27, 2019 - Jupyter Notebook
-
Updated
Oct 1, 2020 - Python
-
Updated
Sep 22, 2019 - Python
-
Updated
Oct 14, 2020 - Python
.join seems to not work properly with unicode arrays. Here is a reproducer:
In [16]: str_arr = np.array(["hi", "there"])
In [17]: ",".join(str_arr)
Out[17]: 'hi,there'
In [18]: numba.njit(lambda str_arr: ",".join(str_arr))(str_arr)
TypingError: Failed in nopython mode pipeline (step: nopython frontend)
- Resolution failure for literal arguments:
No implementation of function
-
Updated
Aug 17, 2020 - Python
Bidirectional RNN
Is there a way to train a bidirectional RNN (like LSTM or GRU) on trax nowadays?
ConvTranspose Layer
The current version of the HANS dataset is missing the additional information provided for each example, including the sentence parses, heuristic and subcase.
-
Updated
Feb 6, 2020
Description
TVM support has been added in dmlc/gluon-nlp#1390. Also, we updated our benchmarking utility to support profiling the inference speed of TVM: https://github.com/dmlc/gluon-nlp/tree/master/scripts/benchmarks. We can further improve our document.
- Attach the benchmark numbers. (Good for beginners)
- Add a tutorial about how to convert GluonNLP mod
-
Updated
Oct 30, 2020 - C++
Support Series.median()
MCVE Code Sample
# Your code here
import numpy as np
import xarray as xr
data = np.zeros((10, 4))
example_xr = xr.DataArray(data, coords=[range(10), ["
-
Updated
Oct 31, 2020 - Jupyter Notebook
-
Updated
Oct 26, 2020 - Python
-
Updated
Feb 11, 2020 - Python
-
Updated
Oct 16, 2020 - Jupyter Notebook
Improve this page
Add a description, image, and links to the numpy topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the numpy topic, visit your repo's landing page and select "manage topics."
Tensor averaging not implemented for complex types
To Reproduce