<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Yasin&#39;s Keep</title>
    <link>https://y-t-g.github.io/project-types/model-configs/</link>
    <description>Recent content in Model Configs on Yasin&#39;s Keep</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en-us</language>
    <lastBuildDate>Sat, 18 Jan 2025 15:16:37 +0800</lastBuildDate><atom:link href="https://y-t-g.github.io/project-types/model-configs/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Adding New Classes to a Trained YOLO Model Without Affecting Old Weights</title>
      <link>https://y-t-g.github.io/tutorials/yolo-refine-classes/</link>
      <pubDate>Sun, 16 Aug 2026 16:51:08 +0800</pubDate>
      
      <guid>https://y-t-g.github.io/tutorials/yolo-refine-classes/</guid>
      <description>Add new classes to a pre-trained YOLO model, or improve existing ones, without changing the predictions of the other classes, using the RefineDetectionTrainer.</description>
    </item>
    
    <item>
      <title>Pruning Ultralytics YOLO Models with NVIDIA Model Optimizer</title>
      <link>https://y-t-g.github.io/tutorials/yolo-prune/</link>
      <pubDate>Sat, 27 Sep 2025 17:40:47 +0800</pubDate>
      
      <guid>https://y-t-g.github.io/tutorials/yolo-prune/</guid>
      <description>Learn how to prune and fine-tune YOLO models to boost efficiency, reduce size, and speed up inference.</description>
    </item>
    
    <item>
      <title>Tracking with Efficient Re-Identification in Ultralytics</title>
      <link>https://y-t-g.github.io/tutorials/yolo-reid/</link>
      <pubDate>Sat, 12 Apr 2025 21:02:20 +0600</pubDate>
      
      <guid>https://y-t-g.github.io/tutorials/yolo-reid/</guid>
      <description>Add reidentification to Ultralytics without compromising latency using object-level features extracted from YOLO.</description>
    </item>
    
    <item>
      <title>Pretrain YOLO Backbone Using Self-Supervised Learning With Lightly</title>
      <link>https://y-t-g.github.io/tutorials/yolo-pretrain-ssl/</link>
      <pubDate>Sun, 22 Dec 2024 17:07:56 +0800</pubDate>
      
      <guid>https://y-t-g.github.io/tutorials/yolo-pretrain-ssl/</guid>
      <description>Use Lightly to pretrain a YOLO backbone through self-supervised learning and then fine-tune it in Ultralytics.</description>
    </item>
    
    <item>
      <title>Boosting Inference FPS With Tracker Interpolated Detections</title>
      <link>https://y-t-g.github.io/tutorials/yolo-tracker-interpolate/</link>
      <pubDate>Fri, 22 Nov 2024 00:49:02 +0800</pubDate>
      
      <guid>https://y-t-g.github.io/tutorials/yolo-tracker-interpolate/</guid>
      <description>Boost your inference performance by exploiting Kalman filter predictions to interpolate detections for skipped frames.</description>
    </item>
    
    <item>
      <title>Retrieving Object-Level Features From YOLO</title>
      <link>https://y-t-g.github.io/tutorials/yolo-object-features/</link>
      <pubDate>Thu, 17 Oct 2024 16:11:36 +0800</pubDate>
      
      <guid>https://y-t-g.github.io/tutorials/yolo-object-features/</guid>
      <description>Extract the object-level features from YOLO for downstream tasks without extra overhead.</description>
    </item>
    
    <item>
      <title>Balance Classes During YOLO Training Using a Weighted Dataloader</title>
      <link>https://y-t-g.github.io/tutorials/yolo-class-balancing/</link>
      <pubDate>Sun, 01 Sep 2024 22:15:51 +0800</pubDate>
      
      <guid>https://y-t-g.github.io/tutorials/yolo-class-balancing/</guid>
      <description>Implement class balancing in Ultralytics using a weighted dataloader and improve the performance of minority class.</description>
    </item>
    
    <item>
      <title>A Simple Trick To Increase YOLOv8&#39;s Accuracy On Small Objects With No Overhead</title>
      <link>https://y-t-g.github.io/tutorials/yolov8-increase-accuracy/</link>
      <pubDate>Mon, 01 Jul 2024 00:44:07 +0800</pubDate>
      
      <guid>https://y-t-g.github.io/tutorials/yolov8-increase-accuracy/</guid>
      <description>Get over 10% more mAP in small object detection by exploiting YOLOv8 pose models while training.</description>
    </item>
    
    <item>
      <title>Extending YOLOv8 COCO Model With New Classes Without Affecting Old Weights</title>
      <link>https://y-t-g.github.io/tutorials/yolov8n-add-classes/</link>
      <pubDate>Mon, 04 Mar 2024 23:22:42 +0800</pubDate>
      
      <guid>https://y-t-g.github.io/tutorials/yolov8n-add-classes/</guid>
      <description>Add additional classes to pre-trained YOLOv8 model without affecting the confidences on the existing classes.</description>
    </item>
    
    <item>
      <title>MMDetection 3.x Hacks and Tricks</title>
      <link>https://y-t-g.github.io/tutorials/mmdetection-hacks-tricks/</link>
      <pubDate>Fri, 01 Dec 2023 19:18:02 +0800</pubDate>
      
      <guid>https://y-t-g.github.io/tutorials/mmdetection-hacks-tricks/</guid>
      <description>Some useful tricks and hacks I learnt while using MMDetection for my research work.</description>
    </item>
    
    <item>
      <title>Monkey Patching MMDetection 3.1.0 To Get Class Probabilities</title>
      <link>https://y-t-g.github.io/tutorials/mmdetection-patching-probabilities/</link>
      <pubDate>Thu, 17 Aug 2023 01:01:00 +0800</pubDate>
      
      <guid>https://y-t-g.github.io/tutorials/mmdetection-patching-probabilities/</guid>
      <description>A quick monkey patching technique to modify MMDetection 3.1.0 to return class probabilities.</description>
    </item>
    
    <item>
      <title>Debugging Python Functions Using Pickling Trick</title>
      <link>https://y-t-g.github.io/tutorials/debugging-python-pickling-trick/</link>
      <pubDate>Sat, 12 Aug 2023 00:32:00 +0800</pubDate>
      
      <guid>https://y-t-g.github.io/tutorials/debugging-python-pickling-trick/</guid>
      <description>A useful trick to debug deeply embedded functions and methods in Python.</description>
    </item>
    
    <item>
      <title>How to download background images for YOLO model training?</title>
      <link>https://y-t-g.github.io/tutorials/bg-images-for-yolo/</link>
      <pubDate>Sun, 06 Aug 2023 09:54:00 +0800</pubDate>
      
      <guid>https://y-t-g.github.io/tutorials/bg-images-for-yolo/</guid>
      <description>Guide to download background images using COCOAPI.</description>
    </item>
    
  </channel>
</rss>
