KangLiao commited on
Commit
28e0fd7
·
verified ·
1 Parent(s): f272fcb

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +14 -15
README.md CHANGED
@@ -1,5 +1,5 @@
1
  ---
2
- license: apache-2.0
3
  task_categories:
4
  - image-feature-extraction
5
  tags:
@@ -13,16 +13,22 @@ size_categories:
13
 
14
  # CC12M-Camera
15
 
 
 
16
  Per-image **camera parameter** annotations for the **CC12M** (Conceptual 12M)
17
  dataset (~10.97M images across 2,176 shards; **10,902,847** valid annotations),
18
  predicted by the **Puffin** camera-centric multimodal model
19
  (Qwen2.5-7B + C-RADIOv3-H visual encoder).
20
 
 
 
 
 
21
  ## Format
22
 
23
- The archive mirrors the source CC12M WebDataset layout: one `.tar` per source
24
- shard (`0000.tar` `2175.tar`), each containing one `.json` per image whose
25
- name matches the source image stem. (CC12M has no train/val split.)
26
 
27
  Each JSON holds the predicted monocular camera parameters:
28
 
@@ -43,7 +49,7 @@ Example:
43
  ## Camera-parameter distributions
44
 
45
  Histograms of the predicted roll / pitch / vertical-FoV over the whole dataset
46
- (proportion of valid samples per 10° bin; `parse_ok=False` samples excluded).
47
 
48
  ![cc12m camera stats](analysis/cc12m_camera_stats.png)
49
 
@@ -51,18 +57,11 @@ Histograms of the predicted roll / pitch / vertical-FoV over the whole dataset
51
  |-------|------------------|-------------------|-----------------|
52
  | all (10.90M) | 0.2° / 0.0° / 5.7° | −2.8° / −0.3° / 11.8° | 32.3° / 29.0° / 10.6° |
53
 
54
- **Reading the distributions**
55
-
56
- - **Roll** is sharply peaked at 0° web images are overwhelmingly shot
57
- upright/level (even tighter than ImageNet, σ ≈ 5.7°).
58
- - **Pitch** is centered close to 0° with a slight downward bias (median ≈ −0.3°,
59
- mean ≈ −2.8°) and a moderate spread.
60
- - **FoV** is concentrated in the **20–45°** range (median ≈ 29°), typical of
61
- everyday photography, with a long tail toward wide-angle.
62
 
63
  ## Notes
64
 
65
  - Annotations are model predictions, not ground truth.
66
  - Generated with greedy decoding (deterministic) at 640px input.
67
- - Figure reproduces `scripts/annotation/stat_camera_captions.py` from the Puffin
68
- repo (read directly from the packed tars).
 
1
  ---
2
+ license: mit
3
  task_categories:
4
  - image-feature-extraction
5
  tags:
 
13
 
14
  # CC12M-Camera
15
 
16
+ ![camera map collage](analysis/cc12m_camera_map_collage.png)
17
+
18
  Per-image **camera parameter** annotations for the **CC12M** (Conceptual 12M)
19
  dataset (~10.97M images across 2,176 shards; **10,902,847** valid annotations),
20
  predicted by the **Puffin** camera-centric multimodal model
21
  (Qwen2.5-7B + C-RADIOv3-H visual encoder).
22
 
23
+ The collage above visualizes the predicted camera maps on sample images — each
24
+ pair shows the **up field** (green arrows: the projected gravity-up direction)
25
+ and the **latitude field** (colored contours: angle above/below the horizon).
26
+
27
  ## Format
28
 
29
+ One `.tar` per source shard (`0000.tar` `2175.tar`), each containing one
30
+ `.json` per image whose name matches the source image key (shard-local index).
31
+ Source images: `pixparse/cc12m-wds` (same 2,176-shard layout / keys).
32
 
33
  Each JSON holds the predicted monocular camera parameters:
34
 
 
49
  ## Camera-parameter distributions
50
 
51
  Histograms of the predicted roll / pitch / vertical-FoV over the whole dataset
52
+ (proportion of valid samples per 10° bin; `parse_ok=False` excluded).
53
 
54
  ![cc12m camera stats](analysis/cc12m_camera_stats.png)
55
 
 
57
  |-------|------------------|-------------------|-----------------|
58
  | all (10.90M) | 0.2° / 0.0° / 5.7° | −2.8° / −0.3° / 11.8° | 32.3° / 29.0° / 10.6° |
59
 
60
+ - **Roll** is sharply peaked at 0° (web images shot upright/level).
61
+ - **Pitch** is centered close to 0° with a slight downward bias.
62
+ - **FoV** concentrates in 20–45° (median ≈ 29°), with a long wide-angle tail.
 
 
 
 
 
63
 
64
  ## Notes
65
 
66
  - Annotations are model predictions, not ground truth.
67
  - Generated with greedy decoding (deterministic) at 640px input.