Fritz Vision includes a comprehensive API to process pre-recorded video. Some of the things we can do with it include running predictions on every frame, exporting the video as well as extracting individual frames. Fritz Vision also has the power to change old experiences into new ones using machine learning augmentations. In this article, we will see how we can use Fritz to apply filters and perform segmentation of people in a video. This is the result of such an operation.
Category: Articles
Attention Model in an Encoder-Decoder
ArticlesIn a naive encoder-decoder model, one RNN unit reads a sentence, and the other one outputs a sentence, as in machine translation.
But what can be done to improve this modelās performance? Here, weāll explore a modification to this encoder-decoder mechanism, commonly known as an attention model.
In machine translation, weāre feeding our input into the encoder (green part) of the network, with the output coming from the decoder (purple part) of the network, as depicted above.
A Brief Guide to the Intel Movidius Neural Compute Stick with Raspberry Pi 3
Articlesš Low-power consumption is indispensable for autonomous/unmanned vehicles and IoT (Internet of Things) devices and appliances. In order to develop deep learning inference applications at the edge, we can use Intelās energy-efficient and low-cost Movidius USB stick!
š The Movidius Neural Compute Stick (NCS) is produced by Intel and can be run without an Internet connection. The Movidius NCSā compute capability comes from its Myriad 2 VPU (Vision Processing Unit).
Continue reading A Brief Guide to the Intel Movidius Neural Compute Stick with Raspberry Pi 3
Support Vector Regression in Python Using Scikit-Learn
ArticlesSupport vector regression (SVR) is a statistical method that examines the linear relationship between two continuous variables.
In regression problems, we generally try to find a line that best fits the data provided. The equation of the line in its simplest form is described as below y=mx +c
In the case of regression using a support vector machine, we do something similar but with a slight change. Here we define a small error value e (error = prediction – actual).
Continue reading Support Vector Regression in Python Using Scikit-Learn
TensorFlow Lite Micro
ArticlesAccording to Statistica, 25.6 billion units of microcontrollers were shipped in 2019. There are over 250 billion microcontrollers in the world and this number is projected to grow over the coming years. As a result of this, deep learning on embedded devices is one of the fastest-growing fields.
Best Machine Learning Projects ā with Visual Demos
ArticlesWith fast-paced advances in neural network architecture, deep and machine learning research, and ever-increasing hardware + software resources, the number of incredible demo projects seems to increase at a near-dizzying rate.
From AI-generated art and enhanced accessibility, to tracking human movement in real-time, and beyond, weāve curated some of our favorite deep learning projects with accompanying visual demos.
Continue reading Best Machine Learning Projects ā with Visual Demos
Recommender Systems with Python: Content-Based Filtering
ArticlesTo kick things off with this tutorial on how to build you own recommender systems in Python, weāll learn how to make an e-commerce item recommender system with a technique called content-based filtering.
Unfortunately, as of the day of this postās publication, Wikipedia defines recommender systems too narrowly, as āa subclass of information filtering systems that seeks to predict the āratingā or āpreferenceā that a user would give to an itemā. Recommender systems are much more than this definition.
Continue reading Recommender Systems with Python: Content-Based Filtering
Lens Studio Face Effects
ArticlesFace Effects allow you to make alterations to faces in Lens Studio. Face effects can be used to make subtle changes on the face, exaggerated changes such as bulging of the face, and you can even add art and art objects to the face. These face effects include eye color, face stretch, face liquify, and more. Letās look at these face effects in more depth.
Fingerprint Authentication using Androidās Biometric API
ArticlesRecently, Google released the first stable version of the androidx.biometric library, which allows developers to use the BiometricsPrompt to bring a standardized experience for fingerprint authentication and potentially fewer bugs when the developers implement it from scratch.
In API 28, the FingerprintManager was deprecated and BiometricPrompt came into the picture. It shows a system-provided dialog upon starting the authentication, unlike the FingerprintManager class where the developer had to design the UI for the fingerprint dialog, manage its state, add custom error handling, use 3rd party libraries which can handle fingerprint authentication for you, and moreāin other words, a lot
Continue reading Fingerprint Authentication using Androidās Biometric API
Fetching and listing conversations for an Android chat application
ArticlesThis tutorial continues the development of an Android chat application. Here, weāll add the ability for registered users to retrieve their chat conversations.
Continue reading “Fetching and listing conversations for an Android chat application”