numpy
Here are 6,333 public repositories matching this topic...
Python Data Science Handbook: full text in Jupyter Notebooks
-
Updated
Sep 7, 2020 - Jupyter Notebook
Data science Python notebooks: Deep learning (TensorFlow, Theano, Caffe, Keras), scikit-learn, Kaggle, big data (Spark, Hadoop MapReduce, HDFS), matplotlib, pandas, NumPy, SciPy, Python essentials, AWS, and various command lines.
-
Updated
Jul 24, 2020 - Python
Picking up from #15731, there are many places in numpy where we do something like:
try:
something_which_throws_typeError
except TypeError:
raise ValueError("a clearer explanation of what went wrong")It would produce a marginally clearer error if we could change these to use traceback chaining. Our two options are either:
- The inner error provides valuable infor
Essential Cheat Sheets for deep learning and machine learning researchers https://medium.com/@kailashahirwar/essential-cheat-sheets-for-machine-learning-and-deep-learning-researchers-efb6a8ebd2e5
-
Updated
Oct 19, 2019
机器学习相关教程
-
Updated
Jul 9, 2020 - Python
Free online textbook of Jupyter notebooks for fast.ai Computational Linear Algebra course
-
Updated
Sep 27, 2019 - Jupyter Notebook
The documentation in the Joins section https://docs.dask.org/en/latest/dataframe-joins.html has code blocks but they aren't interactive and therefore not as useful.
I think the documentation would benefit from an interactive example with use of real data (or data from the demo API).
I had a quick rummage of the tutorial (h
Open Machine Learning Course
-
Updated
Sep 6, 2020 - Python
阿布量化交易系统(股票,期权,期货,比特币,机器学习) 基于python的开源量化交易,量化投资架构
-
Updated
Sep 22, 2019 - Python
tensorboard for pytorch (and chainer, mxnet, numpy, ...)
-
Updated
Jul 5, 2020 - Python
A flexible framework of neural networks for deep learning
-
Updated
Aug 17, 2020 - Python
Trax — Deep Learning with Clear Code and Speed
-
Updated
Sep 12, 2020 - Python
-
Updated
Sep 12, 2020 - Python
-
Updated
Sep 12, 2020 - Python
人工智能学习路线图,整理近200个实战案例与项目,免费提供配套教材,零基础入门,就业实战!包括:Python,数学,机器学习,数据分析,深度学习,计算机视觉,自然语言处理,PyTorch tensorflow machine-learning,deep-learning data-analysis data-mining mathematics data-science artificial-intelligence python tensorflow tensorflow2 caffe keras pytorch algorithm numpy pandas matplotlib seaborn nlp cv等热门领域
-
Updated
Feb 6, 2020
Well, Gumbel Distribution is magical. Basically, given a sequence of K logits, i.e., "\log a_1, \log a_2, ..., \log a_K" and K independent gumbel random variables, i.e., "g_1, g_2, ..., g_K". We have
\argmax_i \log a_i + g_i ~ Categorical({a_i / sum(a)})
This gives you a very simple way to sampl
C++ tensors with broadcasting and lazy computing
-
Updated
Sep 11, 2020 - C++
Support Series.median()
What happened:
xr.DataArray([1], coords=[('onecoord', [2])]).sel(onecoord=2).to_dataframe(name='name') raise an exception ValueError: no valid index for a 0-dimensional object
What you expected to happen:
the same behavior as: xr.DataArray([1], coords=[('onecoord', [2])]).to_dataframe(name='name')
Anything else we need to know?:
I see that the array after the select
画像処理100本ノックして画像処理を画像処理して画像処理するためのもの Jap, Eng, Chi
-
Updated
Aug 10, 2020 - Jupyter Notebook
Python Cheat Sheet NumPy, Matplotlib
-
Updated
Feb 11, 2020 - Python
Practice and tutorial-style notebooks covering wide variety of machine learning techniques
-
Updated
Aug 30, 2020 - Jupyter Notebook
Deep learning operations reinvented (for pytorch, tensorflow, chainer, gluon and others)
-
Updated
Sep 11, 2020 - Python
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."


Follow up on #43476.
Scanning CUDA KernelUtils.GET_BLOCKS might be called with overflowed 32bit integers. should convert to int64 to hold num_kernels
Additional context
See examples such as:
https://github.com/pytorch/pytorch/blob/c010ef7f0c6d837809a7e973048afac76373e3de/aten/src/ATen/native/cuda/vol2col.cuh#L107
https://github.com/pytorch/pytorch/blob/c010ef7f0c6d83780