Machine learning
Machine learning is the practice of teaching a computer to learn. The concept uses pattern recognition, as well as other forms of predictive algorithms, to make judgments on incoming data. This field is closely related to artificial intelligence and computational statistics.
Here are 56,217 public repositories matching this topic...
🚀 Feature
Add support for torch.max with:
- CUDA bfloat16
- CPU float16 and bfloat16
Motivation
Currently, torch.max has support for CUDA float16:
>>> torch.rand(10, dtype=torch.float16, device='cuda').max()
tensor(0.8530, device='cuda:0', dtype=torch.float16)
But all three other combinations of CPU/CUDA and float16/bfloat16 are not supported:
>>> torch.ra
Most functions in scipy.linalg functions (e.g. svd, qr, eig, eigh, pinv, pinv2 ...) have a default kwarg check_finite=True that we typically leave to the default value in scikit-learn.
As we already validate the input data for most estimators in scikit-learn, this check is redundant and can cause significant overhead, especially at predict / transform time. We should probably a
-
Updated
Dec 29, 2020 - Jupyter Notebook
-
Updated
Feb 13, 2021 - C++
-
Updated
Feb 14, 2021 - Python
-
Updated
Feb 14, 2021 - Python
Should lpad/rpad be defined in terms of textwidth instead of code units or have the option to do so?
One of the main use cases of lpad and rpad is, at least for me personally, to align things in the terminal. However, lpad and rpad are defined (and documented) to work in terms of code units (i.e. they call length on the input string) which means that when length and textwidth disagree, you get unaligned output:
julia> s1 = "⟨k|H₁|k̃⟩"
"⟨k|H₁|k̃⟩"
julia> s2 = "⟨k|H₁|k⟩"
"⟨
-
Updated
Jan 22, 2021
-
Updated
Nov 22, 2020 - C++
-
Updated
Feb 13, 2021
-
Updated
Feb 9, 2021 - Jupyter Notebook
-
Updated
Dec 25, 2020
-
Updated
Aug 27, 2020 - TeX
-
Updated
Jan 23, 2021 - Jupyter Notebook
Currently many more Python projects like dask and optuna are using Python type hints. With the Python package of xgboost gaining more and more features, we should also adopt mypy as a safe guard against some type errors and for better code documentation.
-
Updated
Feb 14, 2021 - Jupyter Notebook
-
Updated
Jan 28, 2021 - Python
-
Updated
Jan 16, 2021
-
Updated
Feb 12, 2021 - C++
-
Updated
Feb 13, 2021 - Python
-
Updated
Feb 14, 2021 - Python
-
Updated
Dec 21, 2020 - Python
-
Updated
Feb 12, 2021 - Python
-
Updated
Sep 8, 2020 - C++
-
Updated
Oct 1, 2020 - Jupyter Notebook
-
Updated
Feb 9, 2021
-
Updated
Feb 12, 2021 - C++
- Wikipedia
- Wikipedia


Please make sure that this is a documentation issue. As per our GitHub Policy, we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:doc_template
System information