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 21,277 public repositories matching this topic...

bersbersbers
bersbersbers commented Jan 8, 2020

System information

  • Have I written custom code (as opposed to using a stock example script provided in TensorFlow):
import tensorflow as tf

a = tf.Variable(2)
a.assign(5)
assert a.numpy() == 5

# ValueError: Shapes () and (2,) are incompatible
a.assign([1,2])  

# TypeError: assign() got an unexpected keyword argument 'validate_shape'
a.assign([1,2], validate_shape=False)

IvanFarkas
IvanFarkas commented May 28, 2019

What's the ETA for updating the massively outdated documentation?

Please update all documents that are related building CNTK from source with latest CUDA dependencies that are indicated in CNTK.Common.props and CNTK.Cpp.props.
I tried to build from source, but it's a futile effort.

ines
ines commented Sep 29, 2019

I was going though the existing enhancement issues again and though it'd be nice to collect ideas for spaCy plugins and related projects. There are always people in the community who are looking for new things to build, so here's some inspiration For existing plugins and projects, check out the spaCy universe.

If you have questions about the projects I suggested,

JRMeyer
JRMeyer commented Dec 3, 2019

transcribe.py has odd directory-scanning behavior which isn't documented

If you point --src to a directory, you get the error:

E Path in --src not existing

Looking at the code logic, the script expects a JSON file with a .catalog file extension. This is (1) not documented, and (2) not a really useful logic. It would be much better to point the script to a dir, and scan f

You can’t perform that action at this time.