Socket
Book a DemoInstallSign in
Socket

dethub

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dethub

DetHub: Object Detection Model Hub

pipPyPI
Version
0.0.7
Maintainers
1

DetHub: Object Detection Model Hub

Torchvision

Installation

pip install dethub

Yolov5 Object Prediction and Visualization

from dethub.model import Yolov5
from dethub.visualize import show

detection_model = Yolov5(model_path= "yolov5s.pt", device="cpu", confidence_threshold=0.5, image_size=640)
show("highway1.jpg", detection_model)
Yolov5

Torchvision Object Prediction and Visualization

from dethub.model import TorchVision
from dethub.visualize import show

detection_model = TorchVision(model_path= "dethub/models/torchvision/fasterrcnn_resnet50_fpn.pth", device="cpu", confidence_threshold=0.5, image_size=640)
show("highway1.jpg", detection_model)
Torchvision

TensorflowHub Object Prediction and Visualization

from dethub.model import TensorflowHub
from dethub.visualize import show

detection_model = TensorflowHub(model_path= "https://tfhub.dev/tensorflow/efficientdet/d3/1", device="cpu", confidence_threshold=0.5, image_size=640)
show("highway1.jpg", detection_model)
TfHub

Contributing

Before opening a PR:

  • Reformat with black and isort:
black . --config pyproject.toml
isort .

References:

  • SAHI
  • YOLOX
  • Mcvarer

Keywords

machine-learning

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts