Integrate CKN with MegaDetector #39
Draft
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces a new model class
MegaDetectorModel
in theplugins/ckn_inference_daemon/models/mega_detector.py
file. The class is designed to load the MegaDetector V5 checkpoint from Hugging Face, preprocess input images, run inference, and return detections.Key changes include:
New Model Class Implementation:
Class Definition and Initialization:
MegaDetectorModel
class, inheriting fromBaseModel
. This class initializes with parameters for device type, confidence threshold, IoU threshold, and an optional labels path. It also handles loading the MegaDetector V5 checkpoint from Hugging Face and setting up the model for inference.Image Preprocessing:
pre_process
method to handle image loading, conversion to RGB, letterboxing, and tensor conversion. This method prepares the image for inference by the model.Inference and Prediction:
predict
method to run the model on pre-processed input data, apply non-max suppression, and rescale detections to the original image size. This method returns a list of detections with labels and confidence scores.