Skip to content
#

Deep learning

Deep learning is an AI function and subset of machine learning, used for processing large amounts of complex data.

Here are 32,758 public repositories matching this topic...

DLtangsan
DLtangsan commented Apr 6, 2021

🐛 Bug

torch.sigmoid throws RuntimeError on GPU for complex datatype. According to https://pytorch.org/docs/stable/generated/torch.sigmoid.html, no constraint is proposed. It's bad that CPU runs successfully while GPU does not.

To Reproduce

t = torch.tensor(complex(3, 2))
print(torch.sigmoid(t))
print(torch.sigmoid(t.cuda()))

Expected behavior

The output is

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 Feb 18, 2021
  • Python
Wikipedia
Wikipedia