Autodistill EfficientSAM Module
This repository contains the code supporting the EfficientSAM base model for use with Autodistill.
EfficientSAM is an image segmentation model that was introduced in the paper "EfficientSAM: Leveraged Masked Image Pretraining for Efficient Segment Anything". You can use EfficientSAM with autodistill for image segmentation.
Read the full Autodistill documentation.
Installation
To use EfficientSAM with Autodistill, you need to install the following dependency:
pip3 install autodistill-efficientsam
Quickstart
This model returns segmentation masks for all objects in an image.
If you want segmentation masks only for specific objects matching a text prompt, we recommend combining EfficientSAM with a zero-shot detection model like GroundingDINO.
Read our ComposedDetectionModel documentation for more information about how to combine models like EfficientSAM and GroundingDINO.
from autodistill_efficientsam import EfficientSAM
# define an ontology to map class names to our EfficientSAM prompt
# the ontology dictionary has the format {caption: class}
# where caption is the prompt sent to the base model, and class is the label that will
# be saved for that caption in the generated annotations
# then, load the model
base_model = EfficientSAM(None)
masks = base_model.predict("./image.png")
License
This project is licensed under an Apache 2.0 license.
🏆 Contributing
We love your input! Please see the core Autodistill contributing guide to get started. Thank you 🙏 to all our contributors!
Release files for autodistill-efficientsam 0.1.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| autodistill-efficientsam-0.1.0.tar.gz | 7.7 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| autodistill_efficientsam-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 15.9 kB
Release files / autodistill-efficientsam-0.1.0.tar.gz
| Download URL | autodistill-efficientsam-0.1.0.tar.gz |
|---|---|
| Size | 7.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
ce8b0349a08d18a8e27472d5e9bdff3321da1bfa82dca87a6c1c731a4ec71f76
|
|
BLAKE2b-256 checksum How to use checksums |
e9d86eb11f1ccb8c7c7edbf9e27d7e3709a0a777a7b6706f3ed0fe71643cdd5c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.11.7
|
Release files / autodistill_efficientsam-0.1.0-py3-none-any.whl
| Download URL | autodistill_efficientsam-0.1.0-py3-none-any.whl |
|---|---|
| Size | 8.2 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
a9c552d0724da7cf6564990f413061ed4170930200827337ea1e3527ee814f5e
|
|
BLAKE2b-256 checksum How to use checksums |
cedf4ccdf58f0a4e70602931d53693778d1b82c5e0ad3885a7686316afbcd3ee
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.11.7
|