Tobias Hermann
Tobias Hermann
Different convolution implementations might perform differently depending on the convolution settings (input size/depth, kernel size/count) and depending on the hardware (mostly CPU/memory) used. Right now, for example, we have [a...
@JinhoPark-SNU [mentioned](https://github.com/Dobiasd/frugally-deep/issues/8#issuecomment-438579249) having masking layers would be nice. @n-Guard [wrote](https://github.com/Dobiasd/frugally-deep/issues/8#issuecomment-438661171) "the fdeep `lstm_impl()` function can easily be modified to skip those timesteps that are equal to the masking value that...
Hi, is there an example on how to make a client and run a file transfer somewhere? I did not find anything and was unable to figure out how to...
Recognition attempts end with exit code 139 (interrupted by signal 11: SIGSEGV). Minimal example: ```python3 import keras_ocr pipeline = keras_ocr.pipeline.Pipeline() image = keras_ocr.tools.read('https://i.imgur.com/NpJdN6R.png') pipeline.recognize([image]) ``` The following Dockerfile can be...
The following minimal example (`main.py`) ```python3 import keras_ocr pipeline = keras_ocr.pipeline.Pipeline() image_urls = [ "https://i.imgur.com/euIw5Dt.png", "https://i.imgur.com/fAT6keX.png", "https://i.imgur.com/RlxBrvX.png", "https://i.imgur.com/pWBX9z5.png", "https://i.imgur.com/tzfitxz.png", "https://i.imgur.com/VPPpRJg.png" ] for image_url in image_urls: image = keras_ocr.tools.read(image_url) predictions =...
Thanks for this amazing library! Just wanted to let you know, that in the blog post "Optimising a neural network for inference" (https://tech-blog.sonos.com/posts/optimising-a-neural-network-for-inference/) the link to the second post is...
Hi, Shem sounds really promising and Golem looks nice, but the text editing mode [drives me crazy](https://www.reddit.com/r/programming/comments/3wp5pn/shem_eager_haskelllike_in_sexp_clothing/cxyi00l). ;-) Is there any chance to switch to a "normal" text editing mode...
Hi, this pull request is meant mainly as a proposal. For me, it was eye-opening to convert the continuation-based implementation of the TCP-echo server to coroutines. So I thought seeing...
http://celeryproject.org/ does not work since last week. It does not even respond to a ping: ```bash ping -w 10 celeryproject.org ``` ``` --- celeryproject.org ping statistics --- 10 packets transmitted,...