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

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

dkurt
dkurt commented May 18, 2019

Basically, this is a GSoC project which has not been applied this year:

We want to see some kind of higher level API which can manage DL networks. There are several criterias for now:

  • Hide asynchronous inference management internally. User just choose the number of requests (what about heterogenous scenario? In example, use both GPU and VPU with specific number of requestst for each other
yf225
yf225 commented Sep 9, 2019

Currently, PyTorch C++ API is missing many torch::nn layers that are available in the Python API. As part of the Python/C++ API parity work, we would like to add the following torch::nn modules and utilities in C++ API:

Containers

  • Module (TODO: some APIs are missing in C++, e.g. register_forward_hook / register_forward_pre_hook)
  • Sequential (@ShahriarSS)
  • Modul
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.

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.

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,

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.