Pythagorean Expectation for the English Premier League …
Author: Vasil Kosturski
Making Predictions in C# with a Pre-Trained TensorFlow Model via ONNX. …
Call stacks in async methods are fundamentally different compared to synchronous execution. This leads to pitfalls where seemingly reasonable refactoring can make a method “disappear” from the Stack Trace. Let’s see why and how. …
If you have some beginner knowledge in Machine Learning and want to dive into Deep Learning with its’ modern applications in Computer Vision and NLP – taking the “Deep Learning Specialization” by Andrew Ng on Coursera is a great way to achieve that. Here is a full review of the Specialization. …
The Machine Learning course by Andrew NG at Coursera is one of the best sources for stepping into Machine Learning. It has built quite a reputation for itself due to the authors’ teaching skills and the quality of the content. Admittedly, it also has a few drawbacks. Here’s a complete course review: …
An article on stepping into Machine Learning as an experienced Developer. How to overcome self-doubt, Imposter Syndrome and get the right mindset. You’ll also see some great online courses to start with! …
An article on the internals of nested async/await calls. You’ll see a very detailed workflow diagram with all the execution steps. This also helps to understand precisely why and when we need to use ConfigureAwait(false) in our libraries. …
The Synchronization Context is an abstraction that lets you run a piece of code asynchronously without thinking about the specifics of the current environment. How does it work, and when is it invoked as part of the async workflow? Let’s explore those topics! …
I wrote a series of articles describing the async/await State Machine produced by the C# compiler when it encounters an asynchronous method. The discussion starts with a high-level conceptual overview and gradually moves towards the intriguing technical details and performance optimizations. …
Let’s examine the concrete implementation of the async/await State Machine along with all the intriguing optimizations performed by the compiler. …