Deepfakes: Beauty and Ugliness
okt 12,
2021
This whole deepfake thing has me concerned and bordering on frightened. And I’m not the only one. I wrote earlier about how neural networks can make realistic-looking faces. They are getting better. A whole collection of the faces is now available for free. These are faces of people who do not exist at all. Samsung […]
SQL Server 2019: Can Dr. Froid Help Your User Defined Functions?
,
2021
User-defined scalar functions (scalar UDFs) provide SQL Server developers with an excellent means to organizer and re-use code. Unfortunately, these benefits often come at the price of poor, and in many cases horrendous, performance. Froid is a technology arising from Microsoft Research that addresses these performance problems with novel optimization techniques. In SQL Server 2019, […]
How deMorgan’s Theorems Can Help Programmers
,
2021
Logic is an important aspect of programming and two important theorems in logic can be a big help to programmers. Basics of computer logic In software, logic is generally found in an if statement. This implements the idea that if some condition is true, then do something. For example, If the user clicks a link […]
Tensorflow 2.0 and Keras
,
2021
Are your the sort of person who likes the good news first or the bad? The good news is that Tensorflow 2.0, currently in beta, has integrated the Keras API. This means that developers looking to create machine learning and AI models in tensorflow can focus more on architecture and design and less on details […]
Keras: One API to Rule them All
,
2021
What is Keras? Keras is an API (Application Program Interface) originally designed to allow Tensorflow developers to focus their attention on the deep-learning problems of interest rather than concern themselves with minutia of how to implement their model in Tensorflow. Since its introduction, Keras has become popular not only among Tensorflow developers, but also among […]