Tag: dsp2017
Total 19 Posts
Taking part in dajsiepoznac.pl contest
The most common problem when doing deep learning: How can I find enough data to learn my models? Indeed, that's a big problem. Gathering high volume of training data for deep learning purposes is hard. But maybe we can "cheat" a bit? Images Augmentation Let's talk about images. When doing Deep Learning, we want to have as diverse...
Today I'll tell you how to create custom exception handlers in Django. They are useful, if you want to do custom action when Exception is raised from view. For example, you can create consistent way of handling your own generic exception type. It's very easy, but can be super useful! To show how it's working, we'll create helpful handler that...
Today I'll show how you can monitor Redis activity. It's very useful for low-level debugging. Few words about Redis In a single sentence, Redis is an in-memory key-value store. But it's also much more than that - it supports many complex data types and is blazingly fast (can perform milions operations per second). It's mostly used via language wrappers, like...
In this post I'll show how to prepare Docker container able to run already trained Neural Network (NN). It can be helpful if you want to redistribute your work to multiple machines or send it to a client, along with one-line run command. Sample code is using Keras with TensorFlow backend. Prerequisites Already prepared Keras NN. We'll save it to...
If you came here, you probably know what is a context processor, but let's quickly recap. It's a function, that returns dictionary of values. Those values will be injected to rendering context without explicitly defining them in view. They allows us to refactor commonly used variables out of views. The most well-known context processor is Authentication, making it possible to...