Today I want to tell you something about a great tool that I'm extensively using on a daily basis for a few years now. It's called Docker, and I've already created couple posts about it, but none of them is dedicated to beginners. Time to fix it....
This blog made it to a very finals of the "Get Noticed" contest! Out of 1000 participating blogs, I'm on 13th place of 25 best blogs. I'm soo happy about it :D Detailed description of contest can be found in my first post, and summary here. And now, since you're reading this, I really need your help. If...
This blog was kickstarted as a part of the Get Noticed contest, organized by Maciej Aniserowicz. To fulfill requirements, I had to write 20 posts and work on my own open source project. Last day, as well as my last contest post, is... today! This post is my 20th in a three months period, which gives almost 2 posts per...
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...