Improve model card: Add pipeline tag, paper, and code links for Talking Points

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +26 -3
README.md CHANGED
@@ -1,3 +1,26 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ pipeline_tag: keypoint-detection
4
+ ---
5
+
6
+ # Talking Points: Describing and Localizing Pixels
7
+
8
+ This repository contains the official implementation of the **Talking Points** framework, presented in the paper [Talking Points: Describing and Localizing Pixels](https://huggingface.co/papers/2510.14583).
9
+
10
+ Vision-language models have achieved remarkable success in cross-modal understanding, but often remain limited to object-level or region-level grounding, lacking the capability for pixel-precise keypoint comprehension through natural language. Talking Points introduces a novel framework for pixel-level grounding, consisting of two complementary components:
11
+ - A **Point Descriptor** that generates rich, contextual descriptions of individual keypoints.
12
+ - A **Point Localizer** that regresses precise pixel coordinates from these descriptions.
13
+
14
+ Unlike prior work that relies on templated prompts or keypoint names, our approach produces free-form, coarse-to-fine descriptions that situate keypoints within their visual context.
15
+
16
+ <div align="center">
17
+ <img src="https://github.com/matanr/Talking_Points/raw/master/images/teaser.png" width="100%"/>
18
+ </div>
19
+
20
+ For more detailed information, including installation instructions, dataset creation, training scripts, and evaluation protocols, please refer to the [official GitHub repository](https://github.com/matanr/Talking_Points).
21
+
22
+ ## Acknowledgments
23
+ This repository is built upon and incorporates code from [OMG-Seg and OMG-LLaVA](https://github.com/lxtGH/OMG-Seg/tree/main). In addition, it uses the code from [LLaVA](https://github.com/haotian-liu/LLaVA).
24
+
25
+ ## License
26
+ This project follows the [Apache-2.0 license](https://github.com/haotian-liu/LLaVA?tab=Apache-2.0-1-ov-file), for the respect of both [LLaVA](https://github.com/haotian-liu/LLaVA) and [XTuner](https://github.com/InternLM/xtuner) codebase.