63. The Challenge of Unstructured Models
Let’s say you want to go from A to B as fast as you can. In order to get there, you’ll have to first drive to the closest station from where you’re at, then take the train, then finally walk…
Let’s say you want to go from A to B as fast as you can. In order to get there, you’ll have to first drive to the closest station from where you’re at, then take the train, then finally walk…
Yeah, this wasn’t supposed to happen. I trained an Instance segmentation model using NVIDIA’s Transfer Learning Toolkit to detect cars and deployed it on a Jetson. It seems I messed up with either the settings for the threshold or with…
Unsupervised Pre-training is a method to initialize the weights for the hidden layers using unsupervised learning. And the procedure to do that is GREEDY LAYER-WISE PRETRAINING. In this procedure, the machine will learn the weights in an unsupervised manner 1…
Just being able to detect things won’t be useful, so I created a function to invoke some kind of action under a certain condition.Thanks to Edge Electronics’s video, I was able to understand how to structure actions after detection. The…
Let’s say we have 300 genres, that would mean each column of the table would be a 300×1 dimension vector representing the nuance of that word. Vectorizing this nuance is called word-embedding.By making the machine learn this nuance(the table above),…
Nowadays almost anyone can make use of machine/deep learning just by copying and pasting codes from the internet. But I think it is still important to understand the math behind the inference. Ok, Let’s consider a simple neural network that…
When detecting objects, the method to display the detected boxes can affect the inference speed. One of the models I’m working on uses a clustering method to display those boxes and it is SUPER SLOW.I’ve noticed something when I was…
For this post, I’d like to share how to label images using LabelIMG.I’ll be using the Anaconda command prompt, so start the tutorial after you’re inside one of your environments. Start LabelIMG Git clone the repo Install Requirements Change directory…
OPTIMIZING YOUR MODELThere is a machine learning framework called, TensorRT to “optimize” your model for faster inference. I’ve been converting many models to a TensorRT engine for a while, but I didn’t really know how it was optimizing the model.…
MY BRITAFor the past few weeks, I’ve been deploying pre-trained models so, for this time, I finally made my first retrained model for detecting my BRITA(I honestly just didn’t have anything else to detect). Since it’s my first time, I…