Kyosuke

Kyosuke

54. Annotating Images with LabelIMG

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…

53. Data Augmentation with Albumentation

Augmenting Data In most case for AI projects, there are not enough data to train a model. So that’s when Data Augmentation comes into play! You can create new data from what you already have and use that to train…

51. Model Optimization with TensorRT

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.…

50. Detecting My BRITA with YOLOV5

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…

47. SSD_Inception_V2 vs SSD_MobileNet_V2

COMPARING MODELSLast week, I was able to deploy SSD_mobileNet_v2, so for comparison, this time I deployed SSD_Inception_V2. PREREQUISITE– DeepStream 5.0.1– Jetpack 4.4– Tensorflow 1.15.0 ( If you haven’t installed it yet, check out my last post) REFERENCES– https://havedatawilltrain.com/stream-of-the-jest/– IMPLEMENTATION1.…