├── .gitignore ├── LICENSE ├── README.md ├── examples ├── maskrcnn.py ├── maskrcnn_requirements.py ├── yolov5.py └── yolov5_requirements.py ├── pytorch_clip_bbox ├── __init__.py └── clip_bbox.py ├── requirements.txt ├── resources └── preds.jpg ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bes-dev/pytorch_clip_bbox/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bes-dev/pytorch_clip_bbox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bes-dev/pytorch_clip_bbox/HEAD/README.md -------------------------------------------------------------------------------- /examples/maskrcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bes-dev/pytorch_clip_bbox/HEAD/examples/maskrcnn.py -------------------------------------------------------------------------------- /examples/maskrcnn_requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bes-dev/pytorch_clip_bbox/HEAD/examples/maskrcnn_requirements.py -------------------------------------------------------------------------------- /examples/yolov5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bes-dev/pytorch_clip_bbox/HEAD/examples/yolov5.py -------------------------------------------------------------------------------- /examples/yolov5_requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bes-dev/pytorch_clip_bbox/HEAD/examples/yolov5_requirements.py -------------------------------------------------------------------------------- /pytorch_clip_bbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bes-dev/pytorch_clip_bbox/HEAD/pytorch_clip_bbox/__init__.py -------------------------------------------------------------------------------- /pytorch_clip_bbox/clip_bbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bes-dev/pytorch_clip_bbox/HEAD/pytorch_clip_bbox/clip_bbox.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bes-dev/pytorch_clip_bbox/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/preds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bes-dev/pytorch_clip_bbox/HEAD/resources/preds.jpg -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bes-dev/pytorch_clip_bbox/HEAD/setup.py --------------------------------------------------------------------------------