-
Updated
Apr 14, 2022 - Jupyter Notebook
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 11,483 public repositories matching this topic...
-
Updated
Apr 3, 2022 - Python
-
Updated
Oct 19, 2019
-
Updated
Dec 22, 2020 - Python
#9130 adds a sort_results
argument to assert_eq
, which allows us to assert DataFrame equality without sorting them (by default, assert_eq
sorts the input DataFrames before checking equality). It'll be nice to identify+update the tests that would benefit from it.
A first step could be to run the dataframe tests with check_index=False
and sort_results=False
as defaults.
-
Updated
Dec 23, 2020 - Python
-
Updated
Sep 27, 2019 - Jupyter Notebook
-
Updated
Apr 1, 2022 - Python
Numba ignores any indices that are out of bounds for a given array shape. This behavior is present in both basic and advanced indexing.
import numpy as np
import numba
@numba.njit
def something():
arr = np.ones((3,3))
arr[100] = 0
arr[:, np.array([2,3,5,100])] = 0
return arr
print(something()) # Does not raise error, ignores the out of bound indices comp
-
Updated
Apr 2, 2022 - Python
-
Updated
Jun 5, 2022 - Python
Bidirectional RNN
Is there a way to train a bidirectional RNN (like LSTM or GRU) on trax nowadays?
Description
https://numpy.org/doc/stable/reference/generated/numpy.corrcoef.html
https://docs.cupy.dev/en/stable/reference/generated/cupy.corrcoef.html
Seems args are different
Additional Information
dtype
argument added in NumPy version 1.20.
-
Updated
Mar 8, 2022 - Python
-
Updated
Apr 11, 2022 - Python
-
Updated
Apr 16, 2022 - Jupyter Notebook
-
Updated
Feb 6, 2020
如何导入pytorch训练好的模型或者权重文件?
-
Updated
Jun 6, 2022 - Python
-
Updated
Jun 7, 2022 - Python
-
Updated
Jun 8, 2022 - Python
Wondering if this already exists? If not happy to create if valuable.
I'm looking for a mapping from the column names outputted, to the actual technical indicator it represents.
examples:
momentum_ao == "Momentum, Awesome Oscilator"
momentum_kama == "Momentum, Kaufman’s Adaptive Moving Average (KAMA)"
Can help quickly grasp what the features represent without having to refer back to do
-
Updated
May 18, 2022 - C++
-
Updated
May 16, 2022 - HTML
Is your feature request related to a problem? Please describe.
Implements classification_report
for classification metrics.(https://scikit-learn.org/stable/modules/generated/sklearn.metrics.classification_report.html)
Created by Travis Oliphant
Latest release 19 days ago
- Repository
- numpy/numpy
- Website
- numpy.org
- Wikipedia
- Wikipedia
Describe the bug
Streaming Datasets can't be pickled, so any interaction between them and multiprocessing results in a crash.
Steps to reproduce the bug