Is it worth it to apply to Oxford Machine Learning Summer School? Part 1: Application, costs & general information
Sometime in April I stumbled upon the website of Oxford Machine Learning Summer School (OxML for short) and their call for applications. They proposed lectures in 2 tracks: ML in Health and ML in Finance. Wanting to explore some new research directions, I didn’t hesitate even for a minute. In this short series of […]
Unboxing a Python decorator: learn how to implement it and make your work efficient in 2022
There is one tool provided with Python that makes prettier and cleaner writing easier: Python decorator. Obviously they are not only used for that. There are other reasons like faster and more intuitive process of coding, but nevertheless, a decorator is an important tool to know when you dive deeper into Python. In this article, […]
Python Context Manager: How To Create Your Own in 3 Easy Steps
One of the first things you’ve learnt when handling files in Python was definitely with statements. Everyone taught you to use it, so you don’t have to remember about allocating resources and closing your own files. And since then you probably always used this magical: with open(“file.txt”, “r”) as f: f.read() But what […]
Image of Sound – Audio Feature Engineering in 5 Easy Steps
What comes to your mind first when I tell you to create image of sound? If you’re a musician you might think about score, which allows us to see the sequence of individual sounds, their pitch and length. Or if you used some old audio players you can still remember crazy waves shown on your […]