Skip to main content

Mono repo with packages for inference and training with object detection models

Project description



Sinapsis Object Detection

Mono repo with packages for training and inference with various models for advanced object detection tasks.

🐍 Installation📦 Packages🌐 Webapp📙 Documentation🔍 License

🐍 Installation

[!IMPORTANT] Sinapsis projects requires Python 3.10 or higher.

This repo includes packages for performing object detection using different models:

  • sinapsis-dfine
  • sinapsis-rfdetr
  • sinapsis-ultralytics

Install using your package manager of choice. We strongly encourage the use of uv. If you need to install uv please see the official documentation.

Example with uv:

  uv pip install sinapsis-dfine --extra-index-url https://pypi.sinapsis.tech

or with raw pip:

  pip install sinapsis-dfine --extra-index-url https://pypi.sinapsis.tech

Replace sinapsis-dfine with the name of the package you intend to install.

[!IMPORTANT] Templates in each package may require extra dependencies. For development, we recommend installing the package with all the optional dependencies:

with uv:

  uv pip install sinapsis-dfine[all] --extra-index-url https://pypi.sinapsis.tech

or with raw pip:

  pip install sinapsis-dfine[all] --extra-index-url https://pypi.sinapsis.tech

Be sure to substitute sinapsis-dfine with the appropriate package name.

[!TIP] You can also install all the packages within this project:

  uv pip install sinapsis-object-detection[all] --extra-index-url https://pypi.sinapsis.tech

📦 Packages

This repository is organized into modular packages, each built for integration with different object detection models. These packages offer ready-to-use templates for training and performing inference with advanced models. Below is an overview of the available packages:

Sinapsis D-FINE

The package provides templates for training and inference with the D-FINE model, enabling advanced object detection tasks. It includes:

  • DFINETraining: A template that implements the training pipeline for the D-FINE model, including logic for initializing configurations, downloading weights, and setting up the training solver.
  • DFINEInference: A template designed for performing inference on a set of images using the different D-FINE architectures available.

For specific instructions and further details, see the README.md.

Sinapsis RF-DETR

The package provides templates for training, inference, and export with the RF-DETR model, enabling advanced object detection tasks. It includes:

  • RFDETRExport and RFDETRLargeExport: Templates for exporting the RFDETRBase and RFDETRLarge models to ONNX format.
  • RFDETRInference and RFDETRLargeInference: Templates designed to perform inference on a set of images using the RFDETRBase and RFDETRLarge models.
  • RFDETRTrain and RFDETRLargeTrain: Templates for training the RFDETRBase and RFDETRLarge models.

For specific instructions and further details, see the README.md.

Sinapsis Ultralytics

The package provides templates for training, inference, validation, and exporting models with Ultralytics. It includes:

  • UltralyticsTrain: Template for training Ultralytics models.
  • UltralyticsVal: Template for validating Ultralytics models.
  • UltralyticsPredict: Template for generating inference predictions with trained models.
  • UltralyticsExport: Template for exporting models to deployment-ready format.

For specific instructions and further details, see the README.md.

🌐 Webapp

The webapps included in this project demonstrate the modularity of the templates, showcasing the capabilities of various object detection models for different tasks.

[!IMPORTANT] To run the app, you first need to clone this repository:

git clone git@github.com:Sinapsis-ai/sinapsis-object-detection.git
cd sinapsis-object-detection

[!NOTE] If you'd like to enable external app sharing in Gradio, export GRADIO_SHARE_APP=True

[!NOTE] Agent configuration can be changed through the AGENT_CONFIG_PATH env var. You can check the available configurations in each package configs folder.

[!NOTE] When running the app with the D-FINE model, it defaults to a confidence threshold of 0.5, uses CUDA for acceleration, and employs the nano-sized D-FINE model trained on the COCO dataset. These settings can be customized by modifying the demo.yml file inside the configs directory of the sinapsis-dfine package and restarting the webapp.

🐳 Docker

IMPORTANT This docker image depends on the sinapsis-nvidia:base image. Please refer to the official sinapsis instructions to Build with Docker.

  1. Build the sinapsis-object-detection image:
docker compose -f docker/compose.yaml build
  1. Start the app container:
  • For D-FINE:
docker compose -f docker/compose_apps.yaml up sinapsis-dfine-gradio -d
  • For RF-DETR:
docker compose -f docker/compose_apps.yaml up sinapsis-rfdetr-gradio -d
  • For Ultralytics Inference:
docker compose -f docker/compose_apps.yaml up sinapsis-ultralytics-inference -d
  • For Ultralytics Training:
docker compose -f docker/compose_apps.yaml up sinapsis-ultralytics-train -d
  1. Check the logs:
  • For D-FINE:
docker logs -f sinapsis-dfine-gradio
  • For RF-DETR:
docker logs -f sinapsis-rfdetr-gradio
  • For Ultralytics Inference:
docker logs -f sinapsis-ultralytics-inference
  • For Ultralytics Training:
docker logs -f sinapsis-ultralytics-train
  1. The logs will display the URL to access the webapp, e.g.:
Running on local URL:  http://127.0.0.1:7860

NOTE: The url can be different, check the output of logs.

  1. To stop the app:
docker compose -f docker/compose_apps.yaml down
💻 UV

To run the webapp using the uv package manager, follow these steps:

  1. Create the virtual environment and sync the dependencies:
uv sync --frozen
  1. Install the sinapsis-object-detection package:
uv pip install sinapsis-object-detection[all] --extra-index-url https://pypi.sinapsis.tech
  1. Run the webapp:
  • For D-FINE:
uv run webapps/detection_demo.py
  • For RF-DETR:
export AGENT_CONFIG_PATH=packages/sinapsis_rfdetr/src/sinapsis_rfdetr/configs/rfdetr_demo.yml
uv run webapps/detection_demo.py
  • For Ultralytics Inference:
uv run webapps/inference_app.py
  • For Ultralytics Training:
uv run webapps/training_app.py
  1. The terminal will display the URL to access the webapp, e.g.:
Running on local URL:  http://127.0.0.1:7860

NOTE: The URL may vary; check the terminal output for the correct address.

📙 Documentation

Documentation for this and other sinapsis packages is available on the sinapsis website

Tutorials for different projects within sinapsis are available at sinapsis tutorials page

🔍 License

This project is licensed under the AGPLv3 license, which encourages open collaboration and sharing. For more details, please refer to the LICENSE file.

For commercial use, please refer to our official Sinapsis website for information on obtaining a commercial license.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sinapsis_object_detection-0.3.2.tar.gz (39.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sinapsis_object_detection-0.3.2-py3-none-any.whl (46.5 kB view details)

Uploaded Python 3

File details

Details for the file sinapsis_object_detection-0.3.2.tar.gz.

File metadata

File hashes

Hashes for sinapsis_object_detection-0.3.2.tar.gz
Algorithm Hash digest
SHA256 a17538018e24ef5505fde88666ff108b50ab5ed6b5ade50a9ac76f7f5d544163
MD5 b0d950050646eda892a54308e8580448
BLAKE2b-256 fd2e4a0d7c17b6ecf3f57431983083c937c44bfca4a4965a7e8f465568a219fa

See more details on using hashes here.

File details

Details for the file sinapsis_object_detection-0.3.2-py3-none-any.whl.

File metadata

File hashes

Hashes for sinapsis_object_detection-0.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 1cbeeda39d082ca6a0963675bd547c9462262923a1dc7f2b2b8a31300af43682
MD5 ad72ea1df4da4d86c659df5a7a94da5d
BLAKE2b-256 de09e32b2c55bb3ff1add9646a96931c750ba869e57804759f41d8fff23e4c76

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page