--- license: mit library_name: ultralytics tags: - yolov8 - object-detection - pytorch --- # TabDetect ### Supported Labels ``` ['full_lined', 'not_full_lined'] ``` ### How to use - Install ultralytics: ```bash pip install -U ultralytics==8.0.227 ``` - Load model and perform prediction: ```python from ultralytics import YOLO # load model model = YOLO('camiloa2m/TabDetect-YOLOv8s') # set model parameters (optional) model.overrides['conf'] = 0.25 # NMS confidence threshold model.overrides['iou'] = 0.45 # NMS IoU threshold model.overrides['agnostic_nms'] = False # NMS class-agnostic model.overrides['max_det'] = 1000 # maximum number of detections per image # set image image = ' camiloa2m/TabDetect-YOLOv8n