NumPy

NumPy is an open source library for the Python programming language, adding support for large, multidimensional arrays, and matrices, along with a large collection of high-level mathematical functions to operate on these arrays.
Here are 8,865 public repositories matching this topic...
-
Updated
Jun 8, 2021 - Jupyter Notebook
-
Updated
May 13, 2021 - Python
LGTM alerts .
I notice that there are still a fair number LGTM alerts, many of which look pretty simple. I wonder if they would be a good source of issues for the next NumPy sprint?
-
Updated
Oct 19, 2019
-
Updated
Dec 22, 2020 - Python
We run doctests on a CI environment with many packages installed:
So we probably don't need to skip as many as we do (grep for # doctest: +SKIP
).
-
Updated
Dec 23, 2020 - Python
-
Updated
Sep 27, 2019 - Jupyter Notebook
-
Updated
Jun 21, 2021 - Python
-
Updated
Jul 6, 2021 - Python
From #5664:
Adding the possibility of using
@njit
flags in@cc.export
would be great! Is it possible?
and:
I have managed to add the 'fastmath' flag to the
ExportEntry
object:class ExportEntry(object): """ A simple record for exporting symbols. """ def __init__(self, symbol, signature, function, fastmath=False): self.symb
Bidirectional RNN
Is there a way to train a bidirectional RNN (like LSTM or GRU) on trax nowadays?
-
Updated
Jun 10, 2021 - Python
-
Updated
Feb 6, 2020
-
Updated
Jun 6, 2021 - Python
-
Updated
Jul 5, 2021 - Python
What's wrong?
codebasics / py
-
Updated
Jun 25, 2021 - Jupyter Notebook
[Error Message] Improve error message in SentencepieceTokenizer when arguments are not expected.
Description
While using tokenizers.create with the model and vocab file for a custom corpus, the code throws an error and is not able to generate the BERT vocab file
Error Message
ValueError: Mismatch vocabulary! All special tokens specified must be control tokens in the sentencepiece vocabulary.
To Reproduce
from gluonnlp.data import tokenizers
tokenizers.create('spm', model_p
-
Updated
Jun 22, 2021 - C++
hi,
if possible, please add these indicators as well:
TDI (Traders Dynamic Index)
chandelier exit
pivot points
BOP (balance of power)
CTM (Chande trend meter)
Coppock Curve
Correlation Coefficient
PMO (DecisionPoint Price Momentum Oscillator)
Ulcer Index
most of them except TDI are available on stockcharts.com
thanks
-
Updated
Jul 3, 2021 - Rust
Support Series.between
Is your feature request related to a problem? Please describe.
I have a dataset where I do not know which of two dimensions (lets call them a
and b
) exists in this dataset (So either it has dims ("a", "other") or ("b", "other")).
I would like to make sure that this dimension is first using transpose, but currently this is only possible using if
or try
statements. Just using `ds.trans
Created by Travis Oliphant
Latest release 18 days ago
- Repository
- numpy/numpy
- Website
- numpy.org
- Wikipedia
- Wikipedia
Support to pickle a jitted function (or at least throw a
TypeError
when using protocol 0 and 1).Motivation
Trying to pickle a jitted function either raises
TypeError: cannot pickle 'torch._C.ScriptFunction' object
whenprotocol>1
or far worse when usingprotocol=0
orprotocol=1
python 3.9.5 dies with: