Video-Text-to-Text
Transformers
Safetensors
qwen3_vl
image-text-to-text
camera-movement
video-understanding
qwen3-vl
distillation
Instructions to use ddz16/CamDistill-4B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ddz16/CamDistill-4B with Transformers:
# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("ddz16/CamDistill-4B") model = AutoModelForMultimodalLM.from_pretrained("ddz16/CamDistill-4B", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Add pipeline tag, library name, and links to paper/project/GitHub
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
| 1 |
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
base_model: Qwen/Qwen3-VL-4B-Instruct
|
|
|
|
|
|
|
|
|
|
| 4 |
tags:
|
| 5 |
- camera-movement
|
| 6 |
- video-understanding
|
|
@@ -23,3 +25,9 @@ from transformers import AutoModelForCausalLM, AutoProcessor
|
|
| 23 |
model = AutoModelForCausalLM.from_pretrained("ddz16/CamDistill-4B", torch_dtype="bfloat16", device_map="auto")
|
| 24 |
processor = AutoProcessor.from_pretrained("ddz16/CamDistill-4B")
|
| 25 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
|
|
|
| 2 |
base_model: Qwen/Qwen3-VL-4B-Instruct
|
| 3 |
+
license: apache-2.0
|
| 4 |
+
library_name: transformers
|
| 5 |
+
pipeline_tag: video-text-to-text
|
| 6 |
tags:
|
| 7 |
- camera-movement
|
| 8 |
- video-understanding
|
|
|
|
| 25 |
model = AutoModelForCausalLM.from_pretrained("ddz16/CamDistill-4B", torch_dtype="bfloat16", device_map="auto")
|
| 26 |
processor = AutoProcessor.from_pretrained("ddz16/CamDistill-4B")
|
| 27 |
```
|
| 28 |
+
|
| 29 |
+
## Links
|
| 30 |
+
|
| 31 |
+
- **Paper**: [Temporally Grounded Compositional Camera Motion Understanding via Geometric Knowledge Distillation](https://huggingface.co/papers/2608.10932)
|
| 32 |
+
- **Project page**: [https://ddz16.github.io/cammotion.github.io](https://ddz16.github.io/cammotion.github.io)
|
| 33 |
+
- **GitHub**: [https://github.com/ddz16/CamDistill](https://github.com/ddz16/CamDistill)
|