numpy
- Sign up for GitHub or sign in to edit this page
Here are 4,268 public repositories matching this topic...
Python Data Science Handbook: full text in Jupyter Notebooks
-
Updated
Nov 21, 2019 - 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
Nov 21, 2019 - Python
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
Nov 21, 2019
When attempting to add an ndarray of type int64 to an ndarray of type uint64, numpy throws a TypeError:
TypeError: Cannot cast ufunc add output from dtype('float64') to dtype('uint64') with casting rule 'same_kind'
The error message incorrectly identifies the type of the first array as float64, when it is actually int64.
Reproducing code example:
impoOpen Machine Learning Course
-
Updated
Nov 21, 2019 - Python
The original issue dask/dask#1699 solves being able to repartition a bag into more partitions (useful after a flatten() for example).
However, the doc string wasn't updated as part of the PR - it says: "Coalesce bag into fewer partitions."
I would suggest updating it to "Change number of partitions of bag". Happy to do a PR for it.
A similar fix was applied to da
tensorboard for pytorch (and chainer, mxnet, numpy, ...)
-
Updated
Nov 21, 2019 - Python
阿布量化交易系统(股票,期权,期货,比特币,机器学习) 基于python的开源量化交易,量化投资架构
-
Updated
Nov 21, 2019 - Python
A flexible framework of neural networks for deep learning
-
Updated
Nov 21, 2019 - Python
When loading my CSV or Excel file with a Date field Orange does not recognize or provide the ability to change the field type to DateTime. All date fields come in as Categorical data. I'm trying to do a time series prediction but without a the dates being recognized I'm unable to build out my prediction model. I've tried date in several different formats to no avail.
Please note that the for
Implement hypergeometric functions (https://docs.scipy.org/doc/scipy/reference/special.html#hypergeometric-functions).
In numpy we have this:
>>>np.unravel_index(0, [1,32,32,1])
(0, 0, 0, 0)
>>>np.unravel_index([0,1,2], [1,32,32,1])
(array([0, 0, 0]), array([0, 0, 0]), array([0, 1, 2]), array([0, 0, 0]))
But in xtensor we can only use unravel with one index. Also we'll get by this not an xarray of
dimensions, but this:
"xt::get_strides_t<std::vector<int, std::allocator>>"
Why is it
Python Cheat Sheet NumPy, Matplotlib
-
Updated
Nov 19, 2019 - Python
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), ["An open-access book on numpy vectorization techniques, Nicolas P. Rougier, 2017
-
Updated
Nov 19, 2019 - Python
Những kiến thức cần thiết để học tốt Machine Learning trong vòng 2 tháng. Essential Knowledge for learning Machine Learning in two months.
-
Updated
Nov 20, 2019 - Jupyter Notebook
Practice and tutorial-style notebooks covering wide variety of machine learning techniques
-
Updated
Nov 19, 2019 - Jupyter Notebook
Notebooks to learn data science - Videos https://www.edyoda.com/course/1416
-
Updated
Nov 20, 2019 - Jupyter Notebook
Context
We would like to add
torch::nn::functional::normalizeto the C++ API, so that C++ users can easily find the equivalent of Python APItorch.nn.functional.normalize.Steps
torch::nn::NormalizeOptionstotorch/csrc/api/include/torch/nn/options/normalization.h(add this file if it doesn’t exist), which should include the following parameters (based on https://pytorch.