Skip to content
#

neural-networks

Here are 3,746 public repositories matching this topic...

lwmv
lwmv commented Jan 15, 2020

Some lines in the code block of the keras docs is too long, the result of which is, there will be a horizonal scroll bar at the bottom of the code block. That is hard to read. The long lines should be rearranged to multiple short lines to improve readibility.

Example:
The docs for the SimpleRNN class (https://keras.io/layers/recurrent/#simplernn). The initializer of SimpleRNN has m

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

reuben
reuben commented Feb 19, 2020

It would be nice to have an API similar to strerror to get textual descriptions of error codes so applications can show something meaningful to users in error messages.

This was already implemented ad-hoc in the .NET bindings, see here: https://github.com/mozilla/DeepSpeech/blob/0b82c751db58d9d2d90e861f9af04e671fd2ab41/native_client/dotnet/DeepSpeechClien

Tesla32X
Tesla32X commented Feb 19, 2020

THIS IS NOT TECH SUPPORT FOR NEWBIE FAKERS
POST ONLY ISSUES RELATED TO BUGS OR CODE

Expected behavior

To extract images with the manual extractor, making use of the current screen and image resolution.

Actual behavior

There is some sort of autoscaling of the window, and depending on the image resolution the autoscaling makes it very difficult to see what you are working on. (4k dis

ferreirafabio
ferreirafabio commented Dec 5, 2018

The sonnet documentation states the about the Conv2DTranspose:

This acts as a light wrapper around the TensorFlow op tf.nn.conv2d_transpose
abstracting away variable creation and sharing.

tf.layers.conv2d_transpose(inputs, filters=64, kernel_size=1, strides=5, padding='valid')
--> yields shape (?, 5, 5, 64)

snt.Conv2DTranspose(64, 1, 5, padding='VALID')(inputs)
--> yiel

zafizufi
zafizufi commented Aug 8, 2019

You know, scipy library are updated to the 1.3.0 version and some scipy methods are deleted like resize, imread or something like that. Lots of people suggest that numpy methods can be used instead of the deleted scipy methods but especially the shape of images needs to be resize are not match correctly with numpy resize funcitons.

I have solved this problem with using 'opencv-python' library a

bodgergely
bodgergely commented Jun 12, 2017

Upon environment timeout python client will only receive the error message "Environment in wrong status for call to observations()". Might be good to provide more information why the environment is not running anymore (due to timeout etc.)

if (!is_running(self)) {
  PyErr_SetString(PyExc_RuntimeError,
  "Environment in wrong status for call to observations()");
  return NULL;
}
toslunar
toslunar commented Nov 8, 2019

Sphinx (2.2.1 or master) produces the following two kinds of warnings in my environment.

duplicate object description

I think cross refs to such object is ambiguous.

autosummary: stub file not found

There are

  • chainer.dataset.Converter base class and
  • chainer.dataset.converter decorator.

Therefore the filesystem has to allow to store `chainer.dataset.Conver

Augmentor
masyagin1998
masyagin1998 commented Nov 28, 2018

While I was using Your library (it is great lib!), I found two strange things.
Sorry for my English.

  1. In your documentation You write
# Create your new operation by inheriting from the Operation superclass:
class FoldImage(Operation):
    # Here you can accept as many custom parameters as required:
    def __init__(self, probability, num_of_folds):
        # Call the superclass's c

Improve this page

Add a description, image, and links to the neural-networks topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the neural-networks topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.