nielsr HF Staff commited on
Commit
091bec5
·
verified ·
1 Parent(s): 692dea9

Add pipeline tag, library name, and paper/project/code links

Browse files

This PR improves the model card by:

- Adding `pipeline_tag: video-text-to-text` so the model appears in the correct pipeline filter.
- Adding `library_name: transformers` since this is a Transformers-compatible Qwen3-VL model.
- Adding links to the paper, project page, and GitHub repository in the README content.

Files changed (1) hide show
  1. README.md +9 -2
README.md CHANGED
@@ -1,12 +1,14 @@
1
  ---
2
- license: apache-2.0
3
  base_model: Qwen/Qwen3-VL-8B-Instruct
 
4
  tags:
5
  - camera-movement
6
  - video-understanding
7
  - qwen3-vl
8
  - sft
9
  - vggt-injection
 
 
10
  ---
11
 
12
  # CamInject-8B
@@ -16,10 +18,15 @@ Camera-movement VGGT-Direct 注入 SFT 微调模型,基于 `Qwen/Qwen3-VL-8B-I
16
  - Checkpoint: `checkpoint-1326`
17
  - 训练框架: [ms-swift](https://github.com/modelscope/ms-swift)
18
 
 
 
 
 
 
19
  ## 使用
20
 
21
  ```python
22
  from transformers import AutoModelForCausalLM, AutoProcessor
23
  model = AutoModelForCausalLM.from_pretrained("ddz16/CamInject-8B", torch_dtype="bfloat16", device_map="auto")
24
  processor = AutoProcessor.from_pretrained("ddz16/CamInject-8B")
25
- ```
 
1
  ---
 
2
  base_model: Qwen/Qwen3-VL-8B-Instruct
3
+ license: apache-2.0
4
  tags:
5
  - camera-movement
6
  - video-understanding
7
  - qwen3-vl
8
  - sft
9
  - vggt-injection
10
+ library_name: transformers
11
+ pipeline_tag: video-text-to-text
12
  ---
13
 
14
  # CamInject-8B
 
18
  - Checkpoint: `checkpoint-1326`
19
  - 训练框架: [ms-swift](https://github.com/modelscope/ms-swift)
20
 
21
+ This model is described in the paper [Temporally Grounded Compositional Camera Motion Understanding via Geometric Knowledge Distillation](https://huggingface.co/papers/2608.10932).
22
+
23
+ Project page: https://ddz16.github.io/cammotion.github.io
24
+ Code: https://github.com/ddz16/CamDistill
25
+
26
  ## 使用
27
 
28
  ```python
29
  from transformers import AutoModelForCausalLM, AutoProcessor
30
  model = AutoModelForCausalLM.from_pretrained("ddz16/CamInject-8B", torch_dtype="bfloat16", device_map="auto")
31
  processor = AutoProcessor.from_pretrained("ddz16/CamInject-8B")
32
+ ```