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

fdb
fdb commented Jan 6, 2020

URL(s) with the issue:

https://www.tensorflow.org/tfx/tutorials/transform/census#python_check_imports_and_globals

Description of issue (what needs changing):

The text says "First we'll make sure that we're using Python 2, and then go ahead and install and import the stuff we need." but the code below indicates we need to use Python 3.

Clear description

The text states:

qysnn
qysnn commented Jan 6, 2020

As indicated in the FAQ, the way to import ResNeXt101 is from keras.applications.resnext import ResNeXt101. But in the latest Keras 2.3.1 and Keras-Applications 1.0.8, it gives ImportError: No module named 'keras.applications.resnext'. I try to change it to `from keras_applications.resnext import preproces

YashasSamaga
YashasSamaga commented Dec 30, 2019

System information (version)

  • OpenCV => 4.2.0
  • Operating System / Platform => Ubuntu 18.04
  • Compiler => g++ 7.4
Detailed description

It appears that the pad value in darknet configuration files indicates the padding mode and not the padding value itself. I think pad being one implies same padding and pad being zero implies manual padding (which is specified in the `padd

yf225
yf225 commented Sep 30, 2019

Context

We would like to add torch::nn::functional::normalize to the C++ API, so that C++ users can easily find the equivalent of Python API torch.nn.functional.normalize.

Steps

  • Add torch::nn::NormalizeOptions to torch/csrc/api/include/torch/nn/options/normalization.h (add this file if it doesn’t exist), which should include the following parameters (based on https://pytorch.
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.

HendricButz
HendricButz commented Nov 17, 2019

I got a conllU file, from my university, where the head column is filled with .
Processing such file with the cli.convert method will result in a int cast error in
https://github.com/explosion/spaCy/blob/master/spacy/cli/converters/conllu2json.py line 73
in the read_conllx method (head = (int(head) - 1) if head != "0" else id
).

In the format documentation on https://universaldependencie

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.