-
Notifications
You must be signed in to change notification settings - Fork 512
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
882 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__appname__ = "X-AnyLabeling" | ||
__appdescription__ = "Advanced Auto Labeling Solution with Added Features" | ||
__version__ = "0.2.2" | ||
__version__ = "0.2.3" | ||
__preferred_device__ = "CPU" # GPU or CPU |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
98 changes: 98 additions & 0 deletions
98
anylabeling/configs/auto_labeling/yolov5s_mobile_sam_vit_h.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
type: yolov5_sam | ||
name: yolov5s_mobile_sam_vit_h-r20230920 | ||
display_name: YOLOv5s-MobileSAM (ViT-Huge) | ||
#SAM | ||
encoder_model_path: https://github.com/CVHub520/X-AnyLabeling/releases/download/v0.2.0/mobile_sam.encoder.onnx | ||
decoder_model_path: https://github.com/CVHub520/X-AnyLabeling/releases/download/v0.2.0/sam_vit_h_4b8939.decoder.onnx | ||
cache_size: 10 | ||
target_size: 1024 | ||
max_width: 1024 | ||
max_height: 682 | ||
#Det | ||
model_path: https://github.com/CVHub520/X-AnyLabeling/releases/download/v0.1.0/yolov5s.onnx | ||
input_width: 640 | ||
input_height: 640 | ||
stride: 32 | ||
nms_threshold: 0.45 | ||
confidence_threshold: 0.25 | ||
classes: | ||
- person | ||
- bicycle | ||
- car | ||
- motorcycle | ||
- airplane | ||
- bus | ||
- train | ||
- truck | ||
- boat | ||
- traffic light | ||
- fire hydrant | ||
- stop sign | ||
- parking meter | ||
- bench | ||
- bird | ||
- cat | ||
- dog | ||
- horse | ||
- sheep | ||
- cow | ||
- elephant | ||
- bear | ||
- zebra | ||
- giraffe | ||
- backpack | ||
- umbrella | ||
- handbag | ||
- tie | ||
- suitcase | ||
- frisbee | ||
- skis | ||
- snowboard | ||
- sports ball | ||
- kite | ||
- baseball bat | ||
- baseball glove | ||
- skateboard | ||
- surfboard | ||
- tennis racket | ||
- bottle | ||
- wine glass | ||
- cup | ||
- fork | ||
- knife | ||
- spoon | ||
- bowl | ||
- banana | ||
- apple | ||
- sandwich | ||
- orange | ||
- broccoli | ||
- carrot | ||
- hot dog | ||
- pizza | ||
- donut | ||
- cake | ||
- chair | ||
- couch | ||
- potted plant | ||
- bed | ||
- dining table | ||
- toilet | ||
- tv | ||
- laptop | ||
- mouse | ||
- remote | ||
- keyboard | ||
- cell phone | ||
- microwave | ||
- oven | ||
- toaster | ||
- sink | ||
- refrigerator | ||
- book | ||
- clock | ||
- vase | ||
- scissors | ||
- teddy bear | ||
- hair drier | ||
- toothbrush |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.