Add model card (citation + usage)
Browse files
README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
| 2 |
license: mit
|
| 3 |
language:
|
| 4 |
- en
|
|
|
|
|
|
|
| 5 |
pipeline_tag: object-detection
|
| 6 |
tags:
|
| 7 |
- girafe
|
|
@@ -10,11 +12,38 @@ tags:
|
|
| 10 |
arxiv: 2603.02087
|
| 11 |
---
|
| 12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
## Citation
|
| 14 |
|
|
|
|
|
|
|
| 15 |
```bibtex
|
| 16 |
@misc{unnikrishnan2026openglottal,
|
| 17 |
-
title = {A Detection-Gated Pipeline for Robust Glottal Area
|
|
|
|
| 18 |
author = {Unnikrishnan, Harikrishnan},
|
| 19 |
year = {2026},
|
| 20 |
eprint = {2603.02087},
|
|
|
|
| 2 |
license: mit
|
| 3 |
language:
|
| 4 |
- en
|
| 5 |
+
base_model:
|
| 6 |
+
- Ultralytics/YOLOv8
|
| 7 |
pipeline_tag: object-detection
|
| 8 |
tags:
|
| 9 |
- girafe
|
|
|
|
| 12 |
arxiv: 2603.02087
|
| 13 |
---
|
| 14 |
|
| 15 |
+
## Model
|
| 16 |
+
Pre-trained OpenGlottal checkpoint: `og_girafe_yolo.pt`.
|
| 17 |
+
|
| 18 |
+
This model is part of the OpenGlottal toolkit:
|
| 19 |
+
https://github.com/hari-krishnan/openglottal
|
| 20 |
+
|
| 21 |
+
## How to use
|
| 22 |
+
|
| 23 |
+
Download the weight and run OpenGlottal YOLO-gated pipelines.
|
| 24 |
+
|
| 25 |
+
```python
|
| 26 |
+
from huggingface_hub import hf_hub_download
|
| 27 |
+
yolo_path = hf_hub_download(repo_id="hari-krishnan-u/og_girafe_yolo", filename="og_girafe_yolo.pt")
|
| 28 |
+
```
|
| 29 |
+
|
| 30 |
+
Run `vft` or `guided-vft`:
|
| 31 |
+
|
| 32 |
+
```bash
|
| 33 |
+
openglottal run /path/to/video.avi \
|
| 34 |
+
--pipeline vft \
|
| 35 |
+
--yolo-weights "$yolo_path" \
|
| 36 |
+
--output results/
|
| 37 |
+
```
|
| 38 |
+
|
| 39 |
## Citation
|
| 40 |
|
| 41 |
+
If you use this model, please cite:
|
| 42 |
+
|
| 43 |
```bibtex
|
| 44 |
@misc{unnikrishnan2026openglottal,
|
| 45 |
+
title = {A Detection-Gated Pipeline for Robust Glottal Area
|
| 46 |
+
Waveform Extraction and Clinical Pathology Assessment},
|
| 47 |
author = {Unnikrishnan, Harikrishnan},
|
| 48 |
year = {2026},
|
| 49 |
eprint = {2603.02087},
|