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,896 public repositories matching this topic...
According to
https://github.com/pytorch/pytorch/blob/64847c7f0b3559c6edc40f001619b80c7dc68ef7/c10/util/Exception.h#L479
all usages of AT_ERROR("msg") should be replace with TORCH_CHECK(false, "msg")
There are currently 29 instances of AT_ERROR being used in c10 codebase:
$ grep AT_ERROR c10 -R|grep -v Exception.h|wc -l
29
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
Mar 1, 2021 - C++
-
Updated
Feb 14, 2021 - Python
-
Updated
Mar 1, 2021 - Python
The current implementation of lyap
for complex scalar arguments is incorrect. We can see this by comparing the result obtained using 1x1 matrices vs scalars:
julia> A = (1.0+2.0im)*ones(1,1);
julia> C = (3.0+4.0im)*ones(1,1);
julia> lyap(A, C) # expected
1×1 Matrix{ComplexF64}:
-1.5 - 2.0im
julia> lyap(A[1], C[1]) # wrong!
-1.1 + 0.2im
julia> -C[1] / 2real(A[1])
-
Updated
Jan 22, 2021
-
Updated
Feb 22, 2021 - C++
-
Updated
Feb 26, 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 24, 2021 - Jupyter Notebook
-
Updated
Jan 16, 2021
-
Updated
Feb 18, 2021 - Python
-
Updated
Feb 12, 2021 - C++
-
Updated
Mar 2, 2021 - Python
-
Updated
Mar 2, 2021 - Python
-
Updated
Dec 21, 2020 - Python
-
Updated
Feb 20, 2021 - Python
-
Updated
Oct 1, 2020 - Jupyter Notebook
-
Updated
Sep 8, 2020 - C++
-
Updated
Feb 9, 2021
-
Updated
Mar 1, 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