Part 1 — Detailed steps from training a detector on a custom dataset to inferencing on jetson nano board or…
Continue Readingobject
Basic Concepts of Object-Oriented Programming in Python
Introduction While learning Object-Oriented Programming. I decided to dive into its history and it turned out to be fascinating. The…
Continue ReadingSelecting the Right Bounding Box Using Non-Max Suppression (with implementation)
So OverviewUnderstand the concept of Non-Max SuppressionLearn how object detection algorithms use Non-Max SuppressionImplement non-max suppression using NMS function in…
Continue ReadingResearch Highlights: YOLO Revisited
In the insideBIGDATA Research Highlights column we take a look at new and upcoming results from the research community for…
Continue ReadingFacebook AI Launches DEtection TRansformer (DETR) – A Transformer based Object Detection Approach!
Introduction Every once in a while, a machine learning framework or library changes the landscape of the field. Today, Facebook…
Continue ReadingYour Social Distancing Detection Tool: How to Build One using your Deep Learning Skills
Overview Learn how to build your own Social Distancing Tool using your Deep Learning and Computer Vision skills Understand the…
Continue ReadingBuild your own Vehicle Detection Model using OpenCV and Python
Overview Excited by the idea of smart cities? You’ll love this tutorial on building your own vehicle detection system We’ll…
Continue ReadingBuild your Own Object Detection Model using TensorFlow API
The World of Object Detection I love working in the deep learning space. It is, quite frankly, a vast field…
Continue ReadingHowzatt! How to Build Your Own Ball Tracking System for Cricket
Overview Learn how to build your own ball tracking system for cricket using computer vision and Python We will discuss…
Continue ReadingA Friendly Introduction to Real-Time Object Detection using the Powerful SlimYOLOv3 Framework
The inference time here is too much. The car will take a lot of time to make decisions which might…
Continue ReadingThe emergence of Modern Conv Nets
The emergence of Modern Conv NetsKarthik RajaBlockedUnblockFollowFollowingJul 5Photo by Alina Grubnyak on UnsplashFor humans, vision feels so easy since we do it…
Continue ReadingHow to analyze the quality of training a chatbot?
How to analyze the quality of training a chatbot?Some important metrics to evaluate the training of a chatbot. Daniela SéBlockedUnblockFollowFollowingJul 1Currently, chatbots…
Continue ReadingCNN Application-Detecting Car Exterior Damage(full implementable code)
Computer VisionApplication-Detecting Car Exterior DamageCNN Application-Detecting Car Exterior Damage(full implementable code)Sourish DeyBlockedUnblockFollowFollowingJun 20Recent advances in deep learning and computation infrastructure(cloud,GPUs etc.…
Continue ReadingLearning the Basics of Core Data
Learning the Basics of Core DataSwift persistent storageSteven CurtisBlockedUnblockFollowFollowingJun 17Getting StartedCore data is a great option for persistent data in Swift,…
Continue ReadingPython plays Counter Strike GO(Part 1)
Python plays Counter Strike GO(Part 1)Hrishikesh SaikiaBlockedUnblockFollowFollowingJun 11Counter Strike is one of the most popular first person shooter games. The game…
Continue ReadingScope vs. Context in JavaScript
Scope vs. Context in JavaScriptScope and context may seem similar, but they actually have very different functionsDavid EngelBlockedUnblockFollowFollowingJun 3Photo by…
Continue ReadingLambda, Map, and Filter in Python
Lambda, Map, and Filter in PythonA look at the syntax and usage of each functionRupesh MishraBlockedUnblockFollowFollowingMay 5, 2017Photo by Taras Shypka on UnsplashToday’s…
Continue ReadingC++ Rvalues, Move Semantics, and Copy Elision.
As a general rule of thumb, a value is a temporary if it does not have an identifier or name.…
Continue ReadingYOLO (You Only Look Once)
But what how?You Only Look Once is an algorithm that utilizes a single convolutional network for object detection. Unlike other…
Continue ReadingWhy GraphQL Connection types don’t work well with Apollo cache
Why GraphQL Connection types don’t work well with Apollo cacheNeele BarthelBlockedUnblockFollowFollowingJun 4Spoiler alert –this article won’t provide a perfect solution– because…
Continue ReadingClass and Object Attributes — Python
We managed to assign variables that are unique to an object while having one shared variable that all objects contain.…
Continue ReadingDecode FutureBuilder
As it happens, the FutureBuilder widget is a StatefulWidget. In this article, we’ll review how it works. class FutureBuilder as…
Continue ReadingComposition Over Inheritance
You can’t add the flying ability to the Human class because not all humans can fly, and you can’t make…
Continue ReadingJavaScript: An In-Depth Look at Prototypal Inheritance
All classes in JavaScript are inherited from the Object class. Whenever we look up a property on an object, Object.…
Continue ReadingHands-on Graph Neural Networks with PyTorch & PyTorch Geometric
Compared to another popular Graph Neural Network Library, DGL, in terms of training time, it is at most 80% faster!!Benchmark…
Continue Reading