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

lanslans
lanslans commented Dec 29, 2019

https://docs.opencv.org/master/javadoc/org/opencv/imgproc/Imgproc.html#findContours(org.opencv.core.Mat,java.util.List,org.opencv.core.Mat,int,int)

hierarchy - Optional output vector (e.g. std::vectorcv::Vec4i), containing information about the image topology. It has as many elements as the number of contours. For each i-th contour contours[i], the elements hierarchy[i][0] , hierarchy[i][1]

wangxinyue11
wangxinyue11 commented Nov 30, 2019

studentc@2080ti:~/caffe$ make all
PROTOC src/caffe/proto/caffe.proto
CXX .build_release/src/caffe/proto/caffe.pb.cc
CXX src/caffe/blob.cpp
CXX src/caffe/syncedmem.cpp
CXX src/caffe/net.cpp
CXX src/caffe/data_transformer.cpp
CXX src/caffe/layer.cpp
CXX src/caffe/common.cpp
CXX src/caffe/parallel.cpp
CXX src/caffe/layers/infogain_loss_layer.cpp
src/caffe/layers/infogain_loss_layer.cpp: In

openpose
ran2207
ran2207 commented Dec 5, 2019

I am having difficulty in running this package as a Webservice. Would appreciate if we could provide any kind of documentation on implementing an API to get the keypoints from an image. Our aim is to able to deploy this API as an Azure Function and also know if it is feasible.

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

biggoron
biggoron commented Dec 4, 2019

With the latest version of scipy.misc, scipy.misc.toimage is no longer available. To load and save an image as png we now have to use PIL, breaking tensorboard image summary.

Here is how I fixed the bug:
1./ At the end of main.py, log a uint8 image
logger.image_summary(tag, (images * 255).astype(np.uint8), step+1)
2./ In Logger class, package image as bytes with the PIL library (mode="L

Real-Time-Voice-Cloning
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.