--- license: apache-2.0 library_name: libreyolo base_model: google/owlv2-large-patch14-ensemble tags: - object-detection - zero-shot-object-detection - open-vocabulary-detection - libreyolo --- # LibreOWLv2l14 OWLv2 large patch-14 ensemble weights mirrored for LibreYOLO's `LibreOpenVocab` tier. ## Source Mirrored from [google/owlv2-large-patch14-ensemble](https://huggingface.co/google/owlv2-large-patch14-ensemble). The model weights are published by Google LLC under the Apache License 2.0. Paper: https://arxiv.org/abs/2306.09683 ## Modifications No learned parameters were changed. This repository preserves the Hugging Face `transformers` snapshot files needed by LibreYOLO's open-vocabulary detector wrapper and replaces the model card with LibreYOLO-specific loading notes. ## Usage ```python from libreyolo import LibreOpenVocab model = LibreOpenVocab("LibreOWLv2l14") model.set_classes(["person", "dog", "car"]) results = model.predict("image.jpg") ``` ## License Apache License 2.0. See [`LICENSE`](./LICENSE) and [`NOTICE`](./NOTICE).