Skip to content
#

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 72,716 public repositories matching this topic...

davidberard98
davidberard98 commented Dec 10, 2021

🚀 The feature, motivation and pitch

JIT serialization & freezing uses equality checks for things like common subexpression elimination (CSE).

Since aten::equal isn't implemented for sparse tensors, sparseTensorA.equals(sparseTensorB) fails, preventing CSE during freezing.

repro:

import torch

x = torch.rand((3, 4)).to_sparse()
y = torch.rand((3, 4))
print(torch.equal(x, 

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 4, 2021
  • Python
trivialfis
trivialfis commented Dec 13, 2020

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.

Wikipedia
Wikipedia