File size: 3,153 Bytes
7c1f9ab
76f138c
7c1f9ab
 
 
 
 
 
 
 
76f138c
7c1f9ab
a4b8555
7c1f9ab
76f138c
7c1f9ab
 
 
 
 
 
 
70cb870
76f138c
 
 
 
7c1f9ab
 
 
 
70cb870
7c1f9ab
 
70cb870
a4b8555
7c1f9ab
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
76f138c
7c1f9ab
 
 
 
 
 
 
76f138c
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
---
license: mit
library_name: transformers
tags:
  - gaze-estimation
  - gaze-target-estimation
  - dinov3
pipeline_tag: image-feature-extraction
---

# PaGE ViT-S Distill

Small / fast distilled student. Part of the [PaGE](https://huggingface.co/Octopus1/PaGE) gaze target estimation family.

- **Backbone:** DINOv3 ViT-S (derivative of DINOv3, full-parameter trained)
- **Params:** ~25M
- **Scene input:** 512×512, **Head input:** 256×256, **Heatmap output:** 64×64
- **Source checkpoint:** `vits_distill.pt`

## Self-contained weights

This checkpoint includes the full DINOv3 backbone weights in its `safetensors` files. **No external
DINOv3 weights are downloaded** — the DINOv3 model *structure* is provided by `transformers==5.6.2`
(built-in `dinov3_vit`), and the backbone weights here are derivative weights from full-parameter
training of DINOv3. The model code (`modeling_page.py`) is loaded automatically from
[`Octopus1/PaGE`](https://huggingface.co/Octopus1/PaGE) via `auto_map` when you pass
`trust_remote_code=True`.

## Installation

```bash
pip install torch torchvision timm "transformers==5.6.2" safetensors pillow
```

Tested with `transformers` 5.6.2.

## Usage

```python
from transformers import AutoModel, AutoImageProcessor
from PIL import Image
import torch

repo = "Octopus1/page-vits"
model = AutoModel.from_pretrained(repo, trust_remote_code=True).eval()
processor = AutoImageProcessor.from_pretrained(repo, trust_remote_code=True)

scene = Image.open("scene.jpg").convert("RGB")
head = Image.open("head.jpg").convert("RGB")

inputs = processor(scene, head_crops=[head], bboxes=[[(0.10, 0.10, 0.30, 0.40)]])

with torch.no_grad():
    out = model(inputs)

heatmap = out["heatmap"][0]   # [Np, 64, 64]
inout   = out["inout"][0]     # [Np]
```

## Inputs / Outputs

See the family [README](https://huggingface.co/Octopus1/PaGE) for the full spec.

- Input dict: `images` (list of `[B,3,512,512]`), `head_images` (list of `[sum(Np),3,256,256]`),
  `bboxes` (per-image list of `(xmin,ymin,xmax,ymax)` in `[0,1]`).
- Output dict: `heatmap` (list of `[Np,64,64]`, sigmoid), `inout` (list of `[Np]`, sigmoid).

## License

- The PaGE decoder and gaze heads are released under the **MIT License** (see `LICENSE`).
- The **DINOv3 backbone is a derivative work of DINOv3** ([facebook/dinov3](https://huggingface.co/facebook/dinov3)).
  The backbone was initialized from the public DINOv3 self-supervised weights and then **trained in
  full (all parameters updated)** as part of PaGE training — i.e. the backbone weights here are
  **derivative weights produced by full-parameter training of DINOv3**, not the original DINOv3
  weights verbatim.
- DINOv3 is released by Meta AI under the **Meta DINO License** (see `DINOv3_LICENSE.md`). Under its
  Section 1.b.i, derivative works of DINOv3 (including these backbone weights) are distributed under
  the DINO License terms, and `DINOv3_LICENSE.md` must accompany any redistribution.
- By using or redistributing this model you agree to the DINO License for the DINOv3-derived portions.

See the family [README](https://huggingface.co/Octopus1/PaGE) for full license details.