Metadata-Version: 2.1
Name: mira
Version: 0.5.23
Summary: A package for simplifying object detection
Home-page: https://github.com/faustomorales/mira
License: MIT
Author: Fausto Morales
Author-email: faustomorales@gmail.com
Requires-Python: >=3.7.2,<3.11
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Provides-Extra: detectors
Requires-Dist: albumentations
Requires-Dist: matplotlib
Requires-Dist: numpy
Requires-Dist: omegaconf; extra == "detectors"
Requires-Dist: pandas
Requires-Dist: protobuf
Requires-Dist: timm; extra == "detectors"
Requires-Dist: torchvision; extra == "detectors"
Requires-Dist: tqdm
Requires-Dist: validators
Project-URL: Repository, https://github.com/faustomorales/mira
Description-Content-Type: text/markdown

# mira [![CircleCI](https://circleci.com/gh/faustomorales/mira.svg?style=shield)](https://circleci.com/gh/faustomorales/mira) [![Documentation Status](https://readthedocs.org/projects/mira-python/badge/?version=latest)](https://mira-python.readthedocs.io/en/latest/?badge=latest)

mira provides tooling for simple object detection projects. The package spans three areas of focus.

- **Core** object detection abstractions for images and annotations
- Access to **datasets** from common formats (e.g., VOC, COCO) and image sets (e.g., VOC 2012)
- A common API to for **well-known models** (e.g., EfficientDet and FasterRCNN)

Check out [the docs](https://mira-python.readthedocs.io/en/latest/).

## Installation

```shell
pip install mira
```

