From bac6c2d8a86ea61e2197ffb3d3af7aab6ffabe34 Mon Sep 17 00:00:00 2001 From: Warren Date: Wed, 6 May 2026 18:20:12 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20identity=20clustering=20V3.0=20?= =?UTF-8?q?=E2=80=94=20min=5Fframes=3D1,=20all=202347=20traces=20bound=20(?= =?UTF-8?q?0=20unbound),=20Raoul=20Delfosse=20newly=20recognized?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../identity_clustering/configs/exp_009.json | 18 + .../results/exp_009/comparison_008_vs_009.md | 46 + .../results/exp_009/config.json | 18 + .../results/exp_009/labels.json | 39325 ++++++++++++++++ .../results/exp_009/metrics.json | 10 + 5 files changed, 39417 insertions(+) create mode 100644 experiments/identity_clustering/configs/exp_009.json create mode 100644 experiments/identity_clustering/results/exp_009/comparison_008_vs_009.md create mode 100644 experiments/identity_clustering/results/exp_009/config.json create mode 100644 experiments/identity_clustering/results/exp_009/labels.json create mode 100644 experiments/identity_clustering/results/exp_009/metrics.json diff --git a/experiments/identity_clustering/configs/exp_009.json b/experiments/identity_clustering/configs/exp_009.json new file mode 100644 index 0000000..a70b339 --- /dev/null +++ b/experiments/identity_clustering/configs/exp_009.json @@ -0,0 +1,18 @@ +{ + "id": "009", + "name": "min_frames=1: include single-frame traces for full coverage", + "file_uuid": "417a7e93860d70c87aee6c4c1b715d70", + "min_frames": 1, + "enable_identity_match": true, + "stage1_face_threshold": 0.55, + "stage1_bind_ratio": 0.60, + "stage1b_composite_threshold": 0.50, + "stage1b_min_face_similarity": 0.30, + "stage2_threshold": 0.85, + "stage2_adaptive": true, + "enable_speaker_weight": true, + "speaker_weight_factor": 0.3, + "enable_temporal_collision_check": true, + "write_db": true, + "notes": "V3.0: min_frames lowered to 1 to include all traces. Unidentified single traces become Stranger_XXX." +} diff --git a/experiments/identity_clustering/results/exp_009/comparison_008_vs_009.md b/experiments/identity_clustering/results/exp_009/comparison_008_vs_009.md new file mode 100644 index 0000000..3323ba2 --- /dev/null +++ b/experiments/identity_clustering/results/exp_009/comparison_008_vs_009.md @@ -0,0 +1,46 @@ +# Identity Clustering: min_frames=3 vs min_frames=1 + +## 核心變更 + +| 參數 | exp_008 | exp_009 | +|------|---------|---------| +| min_frames | 3 | 1 | +| 參與 trace | 677 (≥3 frames) | **2,347 (all)** | +| 階段 | V2.1 (fix) | V3.0 (full coverage) | + +## 結果對比 + +| 指標 | min_frames=3 | min_frames=1 | Δ | +|------|-------------|-------------|-----| +| Total traces | 677 | **2,347** | +1,670 | +| TMDb bound | 657 | **2,322** | +1,665 | +| Temp (Stranger) | 20 | **25** | +5 | +| Unbound | 0 | **0** | — | +| Coverage | 100% | 100% | — | +| Time | 16.8s | 34.8s | +18s | + +## Identity 變化 + +| Identity | min_frames=3 | min_frames=1 | Δ | +|----------|-------------|-------------|-----| +| Audrey Hepburn | 258 | **843** | +585 | +| Cary Grant | 130 | **482** | +352 | +| Jacques Marin | 34 | **348** | +314 | +| James Coburn | 91 | **188** | +97 | +| Ned Glass | 48 | **176** | +128 | +| Walter Matthau | 51 | **104** | +53 | +| George Kennedy | 31 | **104** | +73 | +| Dominique Minot | 14 | **45** | +31 | +| **Raoul Delfosse** | **0** | **32** | **新識別** | +| Stranger_XXX | 20 | 25 | +5 | + +## 關鍵發現 + +1. **Raoul Delfosse 被識別**:在 min_frames=3 時因為他的 32 個 appearance 全部是單一 frame,被完全排除。min_frames=1 後成功 bind。 +2. **Jacques Marin +314**:配角大量出現但多為短暫鏡頭,之前被排除。 +3. **25 個 Stranger**:5 個是新增加的單一 frame 陌生人,其餘 20 個保持。 +4. **2347/2347 = 100% 覆蓋**:每張臉都有身份。 + +## 結論 + +min_frames=1 優於 min_frames=3。無副作用(執行時間僅 +18s),覆蓋率從 677 traces 擴展至全部 2,347。 diff --git a/experiments/identity_clustering/results/exp_009/config.json b/experiments/identity_clustering/results/exp_009/config.json new file mode 100644 index 0000000..c4ab7f7 --- /dev/null +++ b/experiments/identity_clustering/results/exp_009/config.json @@ -0,0 +1,18 @@ +{ + "id": "009", + "name": "min_frames=1: include single-frame traces for full coverage", + "file_uuid": "417a7e93860d70c87aee6c4c1b715d70", + "min_frames": 1, + "enable_identity_match": true, + "stage1_face_threshold": 0.55, + "stage1_bind_ratio": 0.6, + "stage1b_composite_threshold": 0.5, + "stage1b_min_face_similarity": 0.3, + "stage2_threshold": 0.85, + "stage2_adaptive": true, + "enable_speaker_weight": true, + "speaker_weight_factor": 0.3, + "enable_temporal_collision_check": true, + "write_db": true, + "notes": "V3.0: min_frames lowered to 1 to include all traces. Unidentified single traces become Stranger_XXX." +} \ No newline at end of file diff --git a/experiments/identity_clustering/results/exp_009/labels.json b/experiments/identity_clustering/results/exp_009/labels.json new file mode 100644 index 0000000..288bb67 --- /dev/null +++ b/experiments/identity_clustering/results/exp_009/labels.json @@ -0,0 +1,39325 @@ +[ + { + "cluster_id": 0, + "trace_count": 1, + "trace_ids": [ + 0 + ], + "dominant_speaker": null, + "speaker_score": 0, + "binding": { + "name": "Stranger_001", + "source": "auto_temp", + "trace_count": 1 + }, + "binding_stage": "auto_temp" + }, + { + "cluster_id": 1, + "trace_count": 1, + "trace_ids": [ + 60 + ], + "dominant_speaker": null, + "speaker_score": 0, + "binding": { + "name": "Stranger_002", + "source": "auto_temp", + "trace_count": 1 + }, + "binding_stage": "auto_temp" + }, + { + "cluster_id": 2, + "trace_count": 1, + "trace_ids": [ + 265 + ], + "dominant_speaker": null, + "speaker_score": 0, + "binding": { + "name": "Stranger_003", + "source": "auto_temp", + "trace_count": 1 + }, + "binding_stage": "auto_temp" + }, + { + "cluster_id": 3, + "trace_count": 1, + "trace_ids": [ + 294 + ], + "dominant_speaker": null, + "speaker_score": 0, + "binding": { + "name": "Stranger_004", + "source": "auto_temp", + "trace_count": 1 + }, + "binding_stage": "auto_temp" + }, + { + "cluster_id": 4, + "trace_count": 1, + "trace_ids": [ + 392 + ], + "dominant_speaker": null, + "speaker_score": 0, + "binding": { + "name": "Stranger_005", + "source": "auto_temp", + "trace_count": 1 + }, + "binding_stage": "auto_temp" + }, + { + "cluster_id": 5, + "trace_count": 1, + "trace_ids": [ + 430 + ], + "dominant_speaker": null, + "speaker_score": 0, + "binding": { + "name": "Stranger_006", + "source": "auto_temp", + "trace_count": 1 + }, + "binding_stage": "auto_temp" + }, + { + "cluster_id": 6, + "trace_count": 1, + "trace_ids": [ + 431 + ], + "dominant_speaker": null, + "speaker_score": 0, + "binding": { + "name": "Stranger_007", + "source": "auto_temp", + "trace_count": 1 + }, + "binding_stage": "auto_temp" + }, + { + "cluster_id": 7, + "trace_count": 1, + "trace_ids": [ + 541 + ], + "dominant_speaker": null, + "speaker_score": 0, + "binding": { + "name": "Stranger_008", + "source": "auto_temp", + "trace_count": 1 + }, + "binding_stage": "auto_temp" + }, + { + "cluster_id": 8, + "trace_count": 1, + "trace_ids": [ + 558 + ], + "dominant_speaker": null, + "speaker_score": 0, + "binding": { + "name": "Stranger_009", + "source": "auto_temp", + "trace_count": 1 + }, + "binding_stage": "auto_temp" + }, + { + "cluster_id": 9, + "trace_count": 1, + "trace_ids": [ + 739 + ], + "dominant_speaker": null, + "speaker_score": 0, + "binding": { + "name": "Stranger_010", + "source": "auto_temp", + "trace_count": 1 + }, + "binding_stage": "auto_temp" + }, + { + "cluster_id": 10, + "trace_count": 1, + "trace_ids": [ + 753 + ], + "dominant_speaker": null, + "speaker_score": 0, + "binding": { + "name": "Stranger_011", + "source": "auto_temp", + "trace_count": 1 + }, + "binding_stage": "auto_temp" + }, + { + "cluster_id": 11, + "trace_count": 1, + "trace_ids": [ + 827 + ], + "dominant_speaker": null, + "speaker_score": 0, + "binding": { + "name": "Stranger_012", + "source": "auto_temp", + "trace_count": 1 + }, + "binding_stage": "auto_temp" + }, + { + "cluster_id": 12, + "trace_count": 1, + "trace_ids": [ + 852 + ], + "dominant_speaker": null, + "speaker_score": 0, + "binding": { + "name": "Stranger_013", + "source": "auto_temp", + "trace_count": 1 + }, + "binding_stage": "auto_temp" + }, + { + "cluster_id": 13, + "trace_count": 1, + "trace_ids": [ + 903 + ], + "dominant_speaker": null, + "speaker_score": 0, + "binding": { + "name": "Stranger_014", + "source": "auto_temp", + "trace_count": 1 + }, + "binding_stage": "auto_temp" + }, + { + "cluster_id": 14, + "trace_count": 1, + "trace_ids": [ + 1007 + ], + "dominant_speaker": null, + "speaker_score": 0, + "binding": { + "name": "Stranger_015", + "source": "auto_temp", + "trace_count": 1 + }, + "binding_stage": "auto_temp" + }, + { + "cluster_id": 15, + "trace_count": 1, + "trace_ids": [ + 1367 + ], + "dominant_speaker": null, + "speaker_score": 0, + "binding": { + "name": "Stranger_016", + "source": "auto_temp", + "trace_count": 1 + }, + "binding_stage": "auto_temp" + }, + { + "cluster_id": 16, + "trace_count": 1, + "trace_ids": [ + 1426 + ], + "dominant_speaker": null, + "speaker_score": 0, + "binding": { + "name": "Stranger_017", + "source": "auto_temp", + "trace_count": 1 + }, + "binding_stage": "auto_temp" + }, + { + "cluster_id": 17, + "trace_count": 1, + "trace_ids": [ + 1435 + ], + "dominant_speaker": null, + "speaker_score": 0, + "binding": { + "name": "Stranger_018", + "source": "auto_temp", + "trace_count": 1 + }, + "binding_stage": "auto_temp" + }, + { + "cluster_id": 18, + "trace_count": 1, + "trace_ids": [ + 1456 + ], + "dominant_speaker": null, + "speaker_score": 0, + "binding": { + "name": "Stranger_019", + "source": "auto_temp", + "trace_count": 1 + }, + "binding_stage": "auto_temp" + }, + { + "cluster_id": 19, + "trace_count": 1, + "trace_ids": [ + 1459 + ], + "dominant_speaker": null, + "speaker_score": 0, + "binding": { + "name": "Stranger_020", + "source": "auto_temp", + "trace_count": 1 + }, + "binding_stage": "auto_temp" + }, + { + "cluster_id": 20, + "trace_count": 1, + "trace_ids": [ + 1467 + ], + "dominant_speaker": null, + "speaker_score": 0, + "binding": { + "name": "Stranger_021", + "source": "auto_temp", + "trace_count": 1 + }, + "binding_stage": "auto_temp" + }, + { + "cluster_id": 21, + "trace_count": 1, + "trace_ids": [ + 1471 + ], + "dominant_speaker": null, + "speaker_score": 0, + "binding": { + "name": "Stranger_022", + "source": "auto_temp", + "trace_count": 1 + }, + "binding_stage": "auto_temp" + }, + { + "cluster_id": 22, + "trace_count": 1, + "trace_ids": [ + 1645 + ], + "dominant_speaker": null, + "speaker_score": 0, + "binding": { + "name": "Stranger_023", + "source": "auto_temp", + "trace_count": 1 + }, + "binding_stage": "auto_temp" + }, + { + "cluster_id": 23, + "trace_count": 1, + "trace_ids": [ + 1672 + ], + "dominant_speaker": null, + "speaker_score": 0, + "binding": { + "name": "Stranger_024", + "source": "auto_temp", + "trace_count": 1 + }, + "binding_stage": "auto_temp" + }, + { + "cluster_id": 24, + "trace_count": 1, + "trace_ids": [ + 2243 + ], + "dominant_speaker": null, + "speaker_score": 0, + "binding": { + "name": "Stranger_025", + "source": "auto_temp", + "trace_count": 1 + }, + "binding_stage": "auto_temp" + }, + { + "cluster_id": 25, + "trace_count": 1, + "trace_ids": [ + 26 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 5, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 26, + "trace_count": 1, + "trace_ids": [ + 35 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 27, + "trace_count": 1, + "trace_ids": [ + 46 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.667, + "matched_faces": 6, + "total_faces": 9 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 28, + "trace_count": 1, + "trace_ids": [ + 49 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "match_ratio": 0.667, + "matched_faces": 2, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 29, + "trace_count": 1, + "trace_ids": [ + 50 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 30, + "trace_count": 1, + "trace_ids": [ + 74 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 31, + "trace_count": 1, + "trace_ids": [ + 75 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 32, + "trace_count": 1, + "trace_ids": [ + 111 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 0.667, + "matched_faces": 2, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 33, + "trace_count": 1, + "trace_ids": [ + 112 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 0.667, + "matched_faces": 2, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 34, + "trace_count": 1, + "trace_ids": [ + 113 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 35, + "trace_count": 1, + "trace_ids": [ + 118 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 36, + "trace_count": 1, + "trace_ids": [ + 119 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 37, + "trace_count": 1, + "trace_ids": [ + 124 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 38, + "trace_count": 1, + "trace_ids": [ + 128 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 0.75, + "matched_faces": 3, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 39, + "trace_count": 1, + "trace_ids": [ + 139 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 40, + "trace_count": 1, + "trace_ids": [ + 144 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 41, + "trace_count": 1, + "trace_ids": [ + 154 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 42, + "trace_count": 1, + "trace_ids": [ + 155 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 43, + "trace_count": 1, + "trace_ids": [ + 156 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 44, + "trace_count": 1, + "trace_ids": [ + 158 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.667, + "matched_faces": 2, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 45, + "trace_count": 1, + "trace_ids": [ + 169 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 46, + "trace_count": 1, + "trace_ids": [ + 170 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 47, + "trace_count": 1, + "trace_ids": [ + 171 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 48, + "trace_count": 1, + "trace_ids": [ + 177 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 49, + "trace_count": 1, + "trace_ids": [ + 185 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 50, + "trace_count": 1, + "trace_ids": [ + 192 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 0.667, + "matched_faces": 2, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 51, + "trace_count": 1, + "trace_ids": [ + 194 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 1.0, + "matched_faces": 6, + "total_faces": 6 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 52, + "trace_count": 1, + "trace_ids": [ + 198 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 53, + "trace_count": 1, + "trace_ids": [ + 202 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 54, + "trace_count": 1, + "trace_ids": [ + 203 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 55, + "trace_count": 1, + "trace_ids": [ + 204 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 56, + "trace_count": 1, + "trace_ids": [ + 206 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 57, + "trace_count": 1, + "trace_ids": [ + 207 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 58, + "trace_count": 1, + "trace_ids": [ + 208 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 59, + "trace_count": 1, + "trace_ids": [ + 209 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 5, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 60, + "trace_count": 1, + "trace_ids": [ + 211 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 61, + "trace_count": 1, + "trace_ids": [ + 218 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 62, + "trace_count": 1, + "trace_ids": [ + 219 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 8, + "total_faces": 8 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 63, + "trace_count": 1, + "trace_ids": [ + 220 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 64, + "trace_count": 1, + "trace_ids": [ + 221 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 5, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 65, + "trace_count": 1, + "trace_ids": [ + 222 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 66, + "trace_count": 1, + "trace_ids": [ + 223 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 1.0, + "matched_faces": 8, + "total_faces": 8 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 67, + "trace_count": 1, + "trace_ids": [ + 227 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 68, + "trace_count": 1, + "trace_ids": [ + 228 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 0.75, + "matched_faces": 3, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 69, + "trace_count": 1, + "trace_ids": [ + 233 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 70, + "trace_count": 1, + "trace_ids": [ + 237 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 71, + "trace_count": 1, + "trace_ids": [ + 239 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 72, + "trace_count": 1, + "trace_ids": [ + 241 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 73, + "trace_count": 1, + "trace_ids": [ + 245 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 74, + "trace_count": 1, + "trace_ids": [ + 246 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 75, + "trace_count": 1, + "trace_ids": [ + 247 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 0.667, + "matched_faces": 2, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 76, + "trace_count": 1, + "trace_ids": [ + 252 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 77, + "trace_count": 1, + "trace_ids": [ + 260 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 9, + "total_faces": 9 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 78, + "trace_count": 1, + "trace_ids": [ + 261 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 79, + "trace_count": 1, + "trace_ids": [ + 267 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 80, + "trace_count": 1, + "trace_ids": [ + 269 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 1.0, + "matched_faces": 5, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 81, + "trace_count": 1, + "trace_ids": [ + 270 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 13, + "total_faces": 13 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 82, + "trace_count": 1, + "trace_ids": [ + 272 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 22, + "total_faces": 22 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 83, + "trace_count": 1, + "trace_ids": [ + 273 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 1.0, + "matched_faces": 5, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 84, + "trace_count": 1, + "trace_ids": [ + 274 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 85, + "trace_count": 1, + "trace_ids": [ + 275 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 86, + "trace_count": 1, + "trace_ids": [ + 276 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 87, + "trace_count": 1, + "trace_ids": [ + 277 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 88, + "trace_count": 1, + "trace_ids": [ + 278 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 89, + "trace_count": 1, + "trace_ids": [ + 279 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 90, + "trace_count": 1, + "trace_ids": [ + 280 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 91, + "trace_count": 1, + "trace_ids": [ + 282 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 5, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 92, + "trace_count": 1, + "trace_ids": [ + 284 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 93, + "trace_count": 1, + "trace_ids": [ + 285 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.692, + "matched_faces": 9, + "total_faces": 13 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 94, + "trace_count": 1, + "trace_ids": [ + 288 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 0.75, + "matched_faces": 3, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 95, + "trace_count": 1, + "trace_ids": [ + 289 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 96, + "trace_count": 1, + "trace_ids": [ + 291 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 97, + "trace_count": 1, + "trace_ids": [ + 293 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 98, + "trace_count": 1, + "trace_ids": [ + 296 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 99, + "trace_count": 1, + "trace_ids": [ + 298 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 100, + "trace_count": 1, + "trace_ids": [ + 300 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 5, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 101, + "trace_count": 1, + "trace_ids": [ + 301 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.667, + "matched_faces": 2, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 102, + "trace_count": 1, + "trace_ids": [ + 303 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 9, + "total_faces": 9 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 103, + "trace_count": 1, + "trace_ids": [ + 307 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 104, + "trace_count": 1, + "trace_ids": [ + 309 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 105, + "trace_count": 1, + "trace_ids": [ + 311 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 16, + "total_faces": 16 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 106, + "trace_count": 1, + "trace_ids": [ + 312 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 107, + "trace_count": 1, + "trace_ids": [ + 313 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 10, + "total_faces": 10 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 108, + "trace_count": 1, + "trace_ids": [ + 314 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 109, + "trace_count": 1, + "trace_ids": [ + 315 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 110, + "trace_count": 1, + "trace_ids": [ + 316 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 111, + "trace_count": 1, + "trace_ids": [ + 317 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 112, + "trace_count": 1, + "trace_ids": [ + 319 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 113, + "trace_count": 1, + "trace_ids": [ + 324 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.824, + "matched_faces": 14, + "total_faces": 17 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 114, + "trace_count": 1, + "trace_ids": [ + 325 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "match_ratio": 0.625, + "matched_faces": 5, + "total_faces": 8 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 115, + "trace_count": 1, + "trace_ids": [ + 327 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 0.667, + "matched_faces": 2, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 116, + "trace_count": 1, + "trace_ids": [ + 328 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "match_ratio": 0.667, + "matched_faces": 2, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 117, + "trace_count": 1, + "trace_ids": [ + 329 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 118, + "trace_count": 1, + "trace_ids": [ + 330 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 0.8, + "matched_faces": 4, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 119, + "trace_count": 1, + "trace_ids": [ + 337 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 8, + "total_faces": 8 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 120, + "trace_count": 1, + "trace_ids": [ + 343 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 7, + "total_faces": 7 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 121, + "trace_count": 1, + "trace_ids": [ + 344 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "match_ratio": 0.714, + "matched_faces": 5, + "total_faces": 7 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 122, + "trace_count": 1, + "trace_ids": [ + 346 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "match_ratio": 0.667, + "matched_faces": 2, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 123, + "trace_count": 1, + "trace_ids": [ + 347 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.6, + "matched_faces": 6, + "total_faces": 10 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 124, + "trace_count": 1, + "trace_ids": [ + 354 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 125, + "trace_count": 1, + "trace_ids": [ + 355 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 126, + "trace_count": 1, + "trace_ids": [ + 360 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 127, + "trace_count": 1, + "trace_ids": [ + 363 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 6, + "total_faces": 6 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 128, + "trace_count": 1, + "trace_ids": [ + 369 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 129, + "trace_count": 1, + "trace_ids": [ + 370 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 130, + "trace_count": 1, + "trace_ids": [ + 371 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 131, + "trace_count": 1, + "trace_ids": [ + 372 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.87, + "matched_faces": 20, + "total_faces": 23 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 132, + "trace_count": 1, + "trace_ids": [ + 377 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 0.75, + "matched_faces": 12, + "total_faces": 16 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 133, + "trace_count": 1, + "trace_ids": [ + 383 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 134, + "trace_count": 1, + "trace_ids": [ + 384 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 135, + "trace_count": 1, + "trace_ids": [ + 395 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 136, + "trace_count": 1, + "trace_ids": [ + 399 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 137, + "trace_count": 1, + "trace_ids": [ + 400 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 138, + "trace_count": 1, + "trace_ids": [ + 404 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 139, + "trace_count": 1, + "trace_ids": [ + 411 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 140, + "trace_count": 1, + "trace_ids": [ + 412 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 141, + "trace_count": 1, + "trace_ids": [ + 413 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 142, + "trace_count": 1, + "trace_ids": [ + 415 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "match_ratio": 0.8, + "matched_faces": 4, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 143, + "trace_count": 1, + "trace_ids": [ + 416 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 5, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 144, + "trace_count": 1, + "trace_ids": [ + 437 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 145, + "trace_count": 1, + "trace_ids": [ + 445 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 5, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 146, + "trace_count": 1, + "trace_ids": [ + 452 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 147, + "trace_count": 1, + "trace_ids": [ + 455 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 148, + "trace_count": 1, + "trace_ids": [ + 457 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 149, + "trace_count": 1, + "trace_ids": [ + 472 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 150, + "trace_count": 1, + "trace_ids": [ + 481 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 10, + "total_faces": 10 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 151, + "trace_count": 1, + "trace_ids": [ + 487 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 152, + "trace_count": 1, + "trace_ids": [ + 495 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 153, + "trace_count": 1, + "trace_ids": [ + 497 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 154, + "trace_count": 1, + "trace_ids": [ + 499 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "match_ratio": 0.75, + "matched_faces": 6, + "total_faces": 8 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 155, + "trace_count": 1, + "trace_ids": [ + 500 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 156, + "trace_count": 1, + "trace_ids": [ + 501 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "match_ratio": 0.75, + "matched_faces": 3, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 157, + "trace_count": 1, + "trace_ids": [ + 502 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 5, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 158, + "trace_count": 1, + "trace_ids": [ + 503 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 159, + "trace_count": 1, + "trace_ids": [ + 504 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 160, + "trace_count": 1, + "trace_ids": [ + 510 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.8, + "matched_faces": 4, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 161, + "trace_count": 1, + "trace_ids": [ + 515 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 5, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 162, + "trace_count": 1, + "trace_ids": [ + 520 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 6, + "total_faces": 6 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 163, + "trace_count": 1, + "trace_ids": [ + 522 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.75, + "matched_faces": 3, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 164, + "trace_count": 1, + "trace_ids": [ + 543 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.667, + "matched_faces": 2, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 165, + "trace_count": 1, + "trace_ids": [ + 547 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 166, + "trace_count": 1, + "trace_ids": [ + 548 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 167, + "trace_count": 1, + "trace_ids": [ + 553 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 168, + "trace_count": 1, + "trace_ids": [ + 554 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 169, + "trace_count": 1, + "trace_ids": [ + 555 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 170, + "trace_count": 1, + "trace_ids": [ + 556 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 171, + "trace_count": 1, + "trace_ids": [ + 557 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 172, + "trace_count": 1, + "trace_ids": [ + 559 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 173, + "trace_count": 1, + "trace_ids": [ + 570 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 174, + "trace_count": 1, + "trace_ids": [ + 572 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "match_ratio": 0.75, + "matched_faces": 3, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 175, + "trace_count": 1, + "trace_ids": [ + 573 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 13, + "total_faces": 13 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 176, + "trace_count": 1, + "trace_ids": [ + 575 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 5, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 177, + "trace_count": 1, + "trace_ids": [ + 576 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "match_ratio": 0.6, + "matched_faces": 3, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 178, + "trace_count": 1, + "trace_ids": [ + 577 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 179, + "trace_count": 1, + "trace_ids": [ + 578 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 180, + "trace_count": 1, + "trace_ids": [ + 579 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 181, + "trace_count": 1, + "trace_ids": [ + 580 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 182, + "trace_count": 1, + "trace_ids": [ + 581 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 183, + "trace_count": 1, + "trace_ids": [ + 585 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 11, + "total_faces": 11 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 184, + "trace_count": 1, + "trace_ids": [ + 595 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 185, + "trace_count": 1, + "trace_ids": [ + 598 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 186, + "trace_count": 1, + "trace_ids": [ + 599 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 5, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 187, + "trace_count": 1, + "trace_ids": [ + 601 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 188, + "trace_count": 1, + "trace_ids": [ + 602 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 189, + "trace_count": 1, + "trace_ids": [ + 603 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 190, + "trace_count": 1, + "trace_ids": [ + 644 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 191, + "trace_count": 1, + "trace_ids": [ + 646 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 0.8, + "matched_faces": 4, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 192, + "trace_count": 1, + "trace_ids": [ + 655 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 6, + "total_faces": 6 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 193, + "trace_count": 1, + "trace_ids": [ + 656 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 6, + "total_faces": 6 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 194, + "trace_count": 1, + "trace_ids": [ + 659 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 195, + "trace_count": 1, + "trace_ids": [ + 660 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 196, + "trace_count": 1, + "trace_ids": [ + 675 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 6, + "total_faces": 6 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 197, + "trace_count": 1, + "trace_ids": [ + 676 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 0.833, + "matched_faces": 5, + "total_faces": 6 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 198, + "trace_count": 1, + "trace_ids": [ + 681 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 10, + "total_faces": 10 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 199, + "trace_count": 1, + "trace_ids": [ + 682 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 0.8, + "matched_faces": 8, + "total_faces": 10 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 200, + "trace_count": 1, + "trace_ids": [ + 686 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 201, + "trace_count": 1, + "trace_ids": [ + 687 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 18, + "total_faces": 18 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 202, + "trace_count": 1, + "trace_ids": [ + 688 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 203, + "trace_count": 1, + "trace_ids": [ + 689 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 0.929, + "matched_faces": 13, + "total_faces": 14 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 204, + "trace_count": 1, + "trace_ids": [ + 690 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 5, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 205, + "trace_count": 1, + "trace_ids": [ + 696 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 206, + "trace_count": 1, + "trace_ids": [ + 697 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 207, + "trace_count": 1, + "trace_ids": [ + 700 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 208, + "trace_count": 1, + "trace_ids": [ + 705 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 209, + "trace_count": 1, + "trace_ids": [ + 719 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 210, + "trace_count": 1, + "trace_ids": [ + 720 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 211, + "trace_count": 1, + "trace_ids": [ + 795 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 212, + "trace_count": 1, + "trace_ids": [ + 800 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 213, + "trace_count": 1, + "trace_ids": [ + 805 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 214, + "trace_count": 1, + "trace_ids": [ + 856 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 215, + "trace_count": 1, + "trace_ids": [ + 859 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 216, + "trace_count": 1, + "trace_ids": [ + 873 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 7, + "total_faces": 7 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 217, + "trace_count": 1, + "trace_ids": [ + 880 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 218, + "trace_count": 1, + "trace_ids": [ + 883 + ], + "binding": { + "id": 22, + "name": "Raoul Delfosse", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 219, + "trace_count": 1, + "trace_ids": [ + 938 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.75, + "matched_faces": 3, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 220, + "trace_count": 1, + "trace_ids": [ + 940 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 221, + "trace_count": 1, + "trace_ids": [ + 977 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 222, + "trace_count": 1, + "trace_ids": [ + 981 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 223, + "trace_count": 1, + "trace_ids": [ + 983 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 7, + "total_faces": 7 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 224, + "trace_count": 1, + "trace_ids": [ + 985 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 225, + "trace_count": 1, + "trace_ids": [ + 987 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.8, + "matched_faces": 4, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 226, + "trace_count": 1, + "trace_ids": [ + 989 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.6, + "matched_faces": 3, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 227, + "trace_count": 1, + "trace_ids": [ + 992 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.667, + "matched_faces": 2, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 228, + "trace_count": 1, + "trace_ids": [ + 995 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 229, + "trace_count": 1, + "trace_ids": [ + 997 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 230, + "trace_count": 1, + "trace_ids": [ + 999 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 231, + "trace_count": 1, + "trace_ids": [ + 1000 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.857, + "matched_faces": 6, + "total_faces": 7 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 232, + "trace_count": 1, + "trace_ids": [ + 1001 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 233, + "trace_count": 1, + "trace_ids": [ + 1002 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 234, + "trace_count": 1, + "trace_ids": [ + 1004 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.667, + "matched_faces": 4, + "total_faces": 6 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 235, + "trace_count": 1, + "trace_ids": [ + 1022 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 236, + "trace_count": 1, + "trace_ids": [ + 1023 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 237, + "trace_count": 1, + "trace_ids": [ + 1024 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 8, + "total_faces": 8 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 238, + "trace_count": 1, + "trace_ids": [ + 1049 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.6, + "matched_faces": 3, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 239, + "trace_count": 1, + "trace_ids": [ + 1052 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 240, + "trace_count": 1, + "trace_ids": [ + 1053 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 241, + "trace_count": 1, + "trace_ids": [ + 1055 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.833, + "matched_faces": 5, + "total_faces": 6 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 242, + "trace_count": 1, + "trace_ids": [ + 1058 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 243, + "trace_count": 1, + "trace_ids": [ + 1061 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 244, + "trace_count": 1, + "trace_ids": [ + 1062 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 245, + "trace_count": 1, + "trace_ids": [ + 1065 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 5, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 246, + "trace_count": 1, + "trace_ids": [ + 1066 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 8, + "total_faces": 8 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 247, + "trace_count": 1, + "trace_ids": [ + 1068 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 248, + "trace_count": 1, + "trace_ids": [ + 1069 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 249, + "trace_count": 1, + "trace_ids": [ + 1070 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 5, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 250, + "trace_count": 1, + "trace_ids": [ + 1071 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "match_ratio": 0.667, + "matched_faces": 2, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 251, + "trace_count": 1, + "trace_ids": [ + 1072 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 252, + "trace_count": 1, + "trace_ids": [ + 1074 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 253, + "trace_count": 1, + "trace_ids": [ + 1077 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 254, + "trace_count": 1, + "trace_ids": [ + 1078 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 255, + "trace_count": 1, + "trace_ids": [ + 1079 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 256, + "trace_count": 1, + "trace_ids": [ + 1085 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 10, + "total_faces": 10 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 257, + "trace_count": 1, + "trace_ids": [ + 1086 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 258, + "trace_count": 1, + "trace_ids": [ + 1095 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 5, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 259, + "trace_count": 1, + "trace_ids": [ + 1133 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 260, + "trace_count": 1, + "trace_ids": [ + 1134 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 261, + "trace_count": 1, + "trace_ids": [ + 1139 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 262, + "trace_count": 1, + "trace_ids": [ + 1140 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 263, + "trace_count": 1, + "trace_ids": [ + 1145 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "match_ratio": 1.0, + "matched_faces": 5, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 264, + "trace_count": 1, + "trace_ids": [ + 1146 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 5, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 265, + "trace_count": 1, + "trace_ids": [ + 1150 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 266, + "trace_count": 1, + "trace_ids": [ + 1152 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 8, + "total_faces": 8 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 267, + "trace_count": 1, + "trace_ids": [ + 1154 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "match_ratio": 1.0, + "matched_faces": 10, + "total_faces": 10 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 268, + "trace_count": 1, + "trace_ids": [ + 1161 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 5, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 269, + "trace_count": 1, + "trace_ids": [ + 1164 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 0.667, + "matched_faces": 2, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 270, + "trace_count": 1, + "trace_ids": [ + 1166 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 0.75, + "matched_faces": 3, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 271, + "trace_count": 1, + "trace_ids": [ + 1167 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 0.667, + "matched_faces": 2, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 272, + "trace_count": 1, + "trace_ids": [ + 1176 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 273, + "trace_count": 1, + "trace_ids": [ + 1179 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 274, + "trace_count": 1, + "trace_ids": [ + 1182 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 275, + "trace_count": 1, + "trace_ids": [ + 1183 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 276, + "trace_count": 1, + "trace_ids": [ + 1184 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 0.667, + "matched_faces": 2, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 277, + "trace_count": 1, + "trace_ids": [ + 1186 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 278, + "trace_count": 1, + "trace_ids": [ + 1187 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.667, + "matched_faces": 2, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 279, + "trace_count": 1, + "trace_ids": [ + 1189 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 0.8, + "matched_faces": 8, + "total_faces": 10 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 280, + "trace_count": 1, + "trace_ids": [ + 1191 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 281, + "trace_count": 1, + "trace_ids": [ + 1192 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 282, + "trace_count": 1, + "trace_ids": [ + 1193 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 283, + "trace_count": 1, + "trace_ids": [ + 1195 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 284, + "trace_count": 1, + "trace_ids": [ + 1196 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 285, + "trace_count": 1, + "trace_ids": [ + 1197 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 286, + "trace_count": 1, + "trace_ids": [ + 1199 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 287, + "trace_count": 1, + "trace_ids": [ + 1200 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 288, + "trace_count": 1, + "trace_ids": [ + 1204 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 289, + "trace_count": 1, + "trace_ids": [ + 1206 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 290, + "trace_count": 1, + "trace_ids": [ + 1210 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 291, + "trace_count": 1, + "trace_ids": [ + 1211 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 292, + "trace_count": 1, + "trace_ids": [ + 1217 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 0.7, + "matched_faces": 7, + "total_faces": 10 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 293, + "trace_count": 1, + "trace_ids": [ + 1219 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.875, + "matched_faces": 7, + "total_faces": 8 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 294, + "trace_count": 1, + "trace_ids": [ + 1221 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 0.708, + "matched_faces": 17, + "total_faces": 24 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 295, + "trace_count": 1, + "trace_ids": [ + 1222 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 10, + "total_faces": 10 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 296, + "trace_count": 1, + "trace_ids": [ + 1224 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 297, + "trace_count": 1, + "trace_ids": [ + 1225 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 298, + "trace_count": 1, + "trace_ids": [ + 1226 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 299, + "trace_count": 1, + "trace_ids": [ + 1228 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 300, + "trace_count": 1, + "trace_ids": [ + 1229 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.667, + "matched_faces": 2, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 301, + "trace_count": 1, + "trace_ids": [ + 1230 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 302, + "trace_count": 1, + "trace_ids": [ + 1231 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 303, + "trace_count": 1, + "trace_ids": [ + 1232 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "match_ratio": 1.0, + "matched_faces": 7, + "total_faces": 7 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 304, + "trace_count": 1, + "trace_ids": [ + 1236 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 6, + "total_faces": 6 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 305, + "trace_count": 1, + "trace_ids": [ + 1238 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "match_ratio": 0.667, + "matched_faces": 6, + "total_faces": 9 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 306, + "trace_count": 1, + "trace_ids": [ + 1239 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 307, + "trace_count": 1, + "trace_ids": [ + 1240 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 308, + "trace_count": 1, + "trace_ids": [ + 1241 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 6, + "total_faces": 6 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 309, + "trace_count": 1, + "trace_ids": [ + 1242 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 310, + "trace_count": 1, + "trace_ids": [ + 1243 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 5, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 311, + "trace_count": 1, + "trace_ids": [ + 1245 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 5, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 312, + "trace_count": 1, + "trace_ids": [ + 1246 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 5, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 313, + "trace_count": 1, + "trace_ids": [ + 1247 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 314, + "trace_count": 1, + "trace_ids": [ + 1248 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 0.8, + "matched_faces": 4, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 315, + "trace_count": 1, + "trace_ids": [ + 1249 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 316, + "trace_count": 1, + "trace_ids": [ + 1250 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 317, + "trace_count": 1, + "trace_ids": [ + 1252 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 318, + "trace_count": 1, + "trace_ids": [ + 1258 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 5, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 319, + "trace_count": 1, + "trace_ids": [ + 1260 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.75, + "matched_faces": 3, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 320, + "trace_count": 1, + "trace_ids": [ + 1262 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 321, + "trace_count": 1, + "trace_ids": [ + 1264 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 322, + "trace_count": 1, + "trace_ids": [ + 1265 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 6, + "total_faces": 6 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 323, + "trace_count": 1, + "trace_ids": [ + 1269 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 6, + "total_faces": 6 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 324, + "trace_count": 1, + "trace_ids": [ + 1271 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 325, + "trace_count": 1, + "trace_ids": [ + 1287 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 326, + "trace_count": 1, + "trace_ids": [ + 1300 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 327, + "trace_count": 1, + "trace_ids": [ + 1303 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 5, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 328, + "trace_count": 1, + "trace_ids": [ + 1307 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.667, + "matched_faces": 2, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 329, + "trace_count": 1, + "trace_ids": [ + 1325 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 11, + "total_faces": 11 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 330, + "trace_count": 1, + "trace_ids": [ + 1330 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 331, + "trace_count": 1, + "trace_ids": [ + 1335 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 5, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 332, + "trace_count": 1, + "trace_ids": [ + 1337 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 6, + "total_faces": 6 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 333, + "trace_count": 1, + "trace_ids": [ + 1346 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.688, + "matched_faces": 11, + "total_faces": 16 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 334, + "trace_count": 1, + "trace_ids": [ + 1352 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 335, + "trace_count": 1, + "trace_ids": [ + 1356 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 6, + "total_faces": 6 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 336, + "trace_count": 1, + "trace_ids": [ + 1358 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.6, + "matched_faces": 15, + "total_faces": 25 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 337, + "trace_count": 1, + "trace_ids": [ + 1360 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 5, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 338, + "trace_count": 1, + "trace_ids": [ + 1361 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "match_ratio": 0.6, + "matched_faces": 3, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 339, + "trace_count": 1, + "trace_ids": [ + 1362 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 340, + "trace_count": 1, + "trace_ids": [ + 1364 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 0.6, + "matched_faces": 3, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 341, + "trace_count": 1, + "trace_ids": [ + 1371 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.625, + "matched_faces": 5, + "total_faces": 8 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 342, + "trace_count": 1, + "trace_ids": [ + 1448 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 343, + "trace_count": 1, + "trace_ids": [ + 1453 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 344, + "trace_count": 1, + "trace_ids": [ + 1464 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 345, + "trace_count": 1, + "trace_ids": [ + 1477 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 346, + "trace_count": 1, + "trace_ids": [ + 1479 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 347, + "trace_count": 1, + "trace_ids": [ + 1480 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 0.875, + "matched_faces": 7, + "total_faces": 8 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 348, + "trace_count": 1, + "trace_ids": [ + 1481 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 349, + "trace_count": 1, + "trace_ids": [ + 1482 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 350, + "trace_count": 1, + "trace_ids": [ + 1483 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 351, + "trace_count": 1, + "trace_ids": [ + 1484 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 352, + "trace_count": 1, + "trace_ids": [ + 1485 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 353, + "trace_count": 1, + "trace_ids": [ + 1486 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 20, + "total_faces": 20 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 354, + "trace_count": 1, + "trace_ids": [ + 1487 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.909, + "matched_faces": 20, + "total_faces": 22 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 355, + "trace_count": 1, + "trace_ids": [ + 1490 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.833, + "matched_faces": 5, + "total_faces": 6 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 356, + "trace_count": 1, + "trace_ids": [ + 1495 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 357, + "trace_count": 1, + "trace_ids": [ + 1497 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 358, + "trace_count": 1, + "trace_ids": [ + 1500 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 359, + "trace_count": 1, + "trace_ids": [ + 1514 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 360, + "trace_count": 1, + "trace_ids": [ + 1519 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 361, + "trace_count": 1, + "trace_ids": [ + 1524 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 362, + "trace_count": 1, + "trace_ids": [ + 1525 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "match_ratio": 1.0, + "matched_faces": 7, + "total_faces": 7 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 363, + "trace_count": 1, + "trace_ids": [ + 1529 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "match_ratio": 0.778, + "matched_faces": 7, + "total_faces": 9 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 364, + "trace_count": 1, + "trace_ids": [ + 1534 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 365, + "trace_count": 1, + "trace_ids": [ + 1539 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 366, + "trace_count": 1, + "trace_ids": [ + 1540 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 0.667, + "matched_faces": 2, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 367, + "trace_count": 1, + "trace_ids": [ + 1541 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 368, + "trace_count": 1, + "trace_ids": [ + 1559 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 369, + "trace_count": 1, + "trace_ids": [ + 1562 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 370, + "trace_count": 1, + "trace_ids": [ + 1573 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 371, + "trace_count": 1, + "trace_ids": [ + 1628 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.667, + "matched_faces": 2, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 372, + "trace_count": 1, + "trace_ids": [ + 1636 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 373, + "trace_count": 1, + "trace_ids": [ + 1637 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 374, + "trace_count": 1, + "trace_ids": [ + 1639 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 5, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 375, + "trace_count": 1, + "trace_ids": [ + 1643 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 376, + "trace_count": 1, + "trace_ids": [ + 1657 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 377, + "trace_count": 1, + "trace_ids": [ + 1660 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 378, + "trace_count": 1, + "trace_ids": [ + 1666 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 379, + "trace_count": 1, + "trace_ids": [ + 1671 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.6, + "matched_faces": 3, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 380, + "trace_count": 1, + "trace_ids": [ + 1674 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 381, + "trace_count": 1, + "trace_ids": [ + 1679 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.6, + "matched_faces": 3, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 382, + "trace_count": 1, + "trace_ids": [ + 1683 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 383, + "trace_count": 1, + "trace_ids": [ + 1694 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.625, + "matched_faces": 5, + "total_faces": 8 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 384, + "trace_count": 1, + "trace_ids": [ + 1704 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.667, + "matched_faces": 2, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 385, + "trace_count": 1, + "trace_ids": [ + 1708 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 386, + "trace_count": 1, + "trace_ids": [ + 1710 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 16, + "total_faces": 16 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 387, + "trace_count": 1, + "trace_ids": [ + 1718 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 5, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 388, + "trace_count": 1, + "trace_ids": [ + 1720 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 389, + "trace_count": 1, + "trace_ids": [ + 1721 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 390, + "trace_count": 1, + "trace_ids": [ + 1722 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 391, + "trace_count": 1, + "trace_ids": [ + 1723 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 392, + "trace_count": 1, + "trace_ids": [ + 1724 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 393, + "trace_count": 1, + "trace_ids": [ + 1729 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 394, + "trace_count": 1, + "trace_ids": [ + 1736 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 395, + "trace_count": 1, + "trace_ids": [ + 1742 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 396, + "trace_count": 1, + "trace_ids": [ + 1743 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 0.636, + "matched_faces": 7, + "total_faces": 11 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 397, + "trace_count": 1, + "trace_ids": [ + 1757 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 398, + "trace_count": 1, + "trace_ids": [ + 1770 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 399, + "trace_count": 1, + "trace_ids": [ + 1773 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.667, + "matched_faces": 4, + "total_faces": 6 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 400, + "trace_count": 1, + "trace_ids": [ + 1775 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 401, + "trace_count": 1, + "trace_ids": [ + 1781 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 402, + "trace_count": 1, + "trace_ids": [ + 1799 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 0.667, + "matched_faces": 6, + "total_faces": 9 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 403, + "trace_count": 1, + "trace_ids": [ + 1801 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 404, + "trace_count": 1, + "trace_ids": [ + 1802 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.667, + "matched_faces": 2, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 405, + "trace_count": 1, + "trace_ids": [ + 1812 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 406, + "trace_count": 1, + "trace_ids": [ + 1814 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 407, + "trace_count": 1, + "trace_ids": [ + 1816 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 408, + "trace_count": 1, + "trace_ids": [ + 1819 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 409, + "trace_count": 1, + "trace_ids": [ + 1820 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 410, + "trace_count": 1, + "trace_ids": [ + 1823 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 411, + "trace_count": 1, + "trace_ids": [ + 1826 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 412, + "trace_count": 1, + "trace_ids": [ + 1828 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 0.667, + "matched_faces": 2, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 413, + "trace_count": 1, + "trace_ids": [ + 1829 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 414, + "trace_count": 1, + "trace_ids": [ + 1837 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 415, + "trace_count": 1, + "trace_ids": [ + 1842 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 416, + "trace_count": 1, + "trace_ids": [ + 1843 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 417, + "trace_count": 1, + "trace_ids": [ + 1846 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 418, + "trace_count": 1, + "trace_ids": [ + 1847 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 419, + "trace_count": 1, + "trace_ids": [ + 1848 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "match_ratio": 0.75, + "matched_faces": 3, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 420, + "trace_count": 1, + "trace_ids": [ + 1852 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 421, + "trace_count": 1, + "trace_ids": [ + 1853 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 422, + "trace_count": 1, + "trace_ids": [ + 1855 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 423, + "trace_count": 1, + "trace_ids": [ + 1859 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 424, + "trace_count": 1, + "trace_ids": [ + 1863 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 425, + "trace_count": 1, + "trace_ids": [ + 1866 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 5, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 426, + "trace_count": 1, + "trace_ids": [ + 1867 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 0.667, + "matched_faces": 2, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 427, + "trace_count": 1, + "trace_ids": [ + 1868 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 428, + "trace_count": 1, + "trace_ids": [ + 1872 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 429, + "trace_count": 1, + "trace_ids": [ + 1874 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 430, + "trace_count": 1, + "trace_ids": [ + 1876 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 431, + "trace_count": 1, + "trace_ids": [ + 1879 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 432, + "trace_count": 1, + "trace_ids": [ + 1886 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 433, + "trace_count": 1, + "trace_ids": [ + 1932 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 434, + "trace_count": 1, + "trace_ids": [ + 1934 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 9, + "total_faces": 9 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 435, + "trace_count": 1, + "trace_ids": [ + 1942 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.833, + "matched_faces": 5, + "total_faces": 6 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 436, + "trace_count": 1, + "trace_ids": [ + 1945 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.75, + "matched_faces": 3, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 437, + "trace_count": 1, + "trace_ids": [ + 1947 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 6, + "total_faces": 6 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 438, + "trace_count": 1, + "trace_ids": [ + 1948 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 439, + "trace_count": 1, + "trace_ids": [ + 1956 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 440, + "trace_count": 1, + "trace_ids": [ + 1958 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 441, + "trace_count": 1, + "trace_ids": [ + 1968 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 442, + "trace_count": 1, + "trace_ids": [ + 1971 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 443, + "trace_count": 1, + "trace_ids": [ + 1987 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 444, + "trace_count": 1, + "trace_ids": [ + 1994 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 445, + "trace_count": 1, + "trace_ids": [ + 1996 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 5, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 446, + "trace_count": 1, + "trace_ids": [ + 1998 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 447, + "trace_count": 1, + "trace_ids": [ + 1999 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 448, + "trace_count": 1, + "trace_ids": [ + 2001 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 449, + "trace_count": 1, + "trace_ids": [ + 2015 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 0.667, + "matched_faces": 2, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 450, + "trace_count": 1, + "trace_ids": [ + 2017 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 451, + "trace_count": 1, + "trace_ids": [ + 2021 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 452, + "trace_count": 1, + "trace_ids": [ + 2022 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "match_ratio": 0.667, + "matched_faces": 2, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 453, + "trace_count": 1, + "trace_ids": [ + 2024 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 454, + "trace_count": 1, + "trace_ids": [ + 2033 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 0.889, + "matched_faces": 8, + "total_faces": 9 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 455, + "trace_count": 1, + "trace_ids": [ + 2039 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 1.0, + "matched_faces": 7, + "total_faces": 7 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 456, + "trace_count": 1, + "trace_ids": [ + 2041 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 8, + "total_faces": 8 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 457, + "trace_count": 1, + "trace_ids": [ + 2042 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 8, + "total_faces": 8 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 458, + "trace_count": 1, + "trace_ids": [ + 2043 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 0.875, + "matched_faces": 7, + "total_faces": 8 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 459, + "trace_count": 1, + "trace_ids": [ + 2044 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 460, + "trace_count": 1, + "trace_ids": [ + 2045 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 6, + "total_faces": 6 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 461, + "trace_count": 1, + "trace_ids": [ + 2047 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 1.0, + "matched_faces": 7, + "total_faces": 7 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 462, + "trace_count": 1, + "trace_ids": [ + 2048 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 463, + "trace_count": 1, + "trace_ids": [ + 2052 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 1.0, + "matched_faces": 6, + "total_faces": 6 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 464, + "trace_count": 1, + "trace_ids": [ + 2053 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 465, + "trace_count": 1, + "trace_ids": [ + 2055 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 466, + "trace_count": 1, + "trace_ids": [ + 2059 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 0.909, + "matched_faces": 10, + "total_faces": 11 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 467, + "trace_count": 1, + "trace_ids": [ + 2060 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 468, + "trace_count": 1, + "trace_ids": [ + 2061 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 469, + "trace_count": 1, + "trace_ids": [ + 2063 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 470, + "trace_count": 1, + "trace_ids": [ + 2064 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "match_ratio": 1.0, + "matched_faces": 6, + "total_faces": 6 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 471, + "trace_count": 1, + "trace_ids": [ + 2065 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "match_ratio": 1.0, + "matched_faces": 5, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 472, + "trace_count": 1, + "trace_ids": [ + 2072 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 473, + "trace_count": 1, + "trace_ids": [ + 2073 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.917, + "matched_faces": 11, + "total_faces": 12 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 474, + "trace_count": 1, + "trace_ids": [ + 2077 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 475, + "trace_count": 1, + "trace_ids": [ + 2078 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 476, + "trace_count": 1, + "trace_ids": [ + 2082 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 477, + "trace_count": 1, + "trace_ids": [ + 2083 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 478, + "trace_count": 1, + "trace_ids": [ + 2086 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 479, + "trace_count": 1, + "trace_ids": [ + 2096 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 480, + "trace_count": 1, + "trace_ids": [ + 2097 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 481, + "trace_count": 1, + "trace_ids": [ + 2102 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.625, + "matched_faces": 5, + "total_faces": 8 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 482, + "trace_count": 1, + "trace_ids": [ + 2106 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 483, + "trace_count": 1, + "trace_ids": [ + 2108 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 484, + "trace_count": 1, + "trace_ids": [ + 2111 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 485, + "trace_count": 1, + "trace_ids": [ + 2113 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 486, + "trace_count": 1, + "trace_ids": [ + 2114 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 487, + "trace_count": 1, + "trace_ids": [ + 2123 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 488, + "trace_count": 1, + "trace_ids": [ + 2125 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 489, + "trace_count": 1, + "trace_ids": [ + 2126 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 490, + "trace_count": 1, + "trace_ids": [ + 2128 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.833, + "matched_faces": 5, + "total_faces": 6 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 491, + "trace_count": 1, + "trace_ids": [ + 2129 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 492, + "trace_count": 1, + "trace_ids": [ + 2130 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 6, + "total_faces": 6 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 493, + "trace_count": 1, + "trace_ids": [ + 2132 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 0.8, + "matched_faces": 4, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 494, + "trace_count": 1, + "trace_ids": [ + 2149 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 495, + "trace_count": 1, + "trace_ids": [ + 2156 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 496, + "trace_count": 1, + "trace_ids": [ + 2157 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 497, + "trace_count": 1, + "trace_ids": [ + 2158 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 498, + "trace_count": 1, + "trace_ids": [ + 2160 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 499, + "trace_count": 1, + "trace_ids": [ + 2162 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 8, + "total_faces": 8 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 500, + "trace_count": 1, + "trace_ids": [ + 2163 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 501, + "trace_count": 1, + "trace_ids": [ + 2164 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 502, + "trace_count": 1, + "trace_ids": [ + 2177 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 503, + "trace_count": 1, + "trace_ids": [ + 2178 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 9, + "total_faces": 9 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 504, + "trace_count": 1, + "trace_ids": [ + 2183 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 505, + "trace_count": 1, + "trace_ids": [ + 2185 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 506, + "trace_count": 1, + "trace_ids": [ + 2190 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 507, + "trace_count": 1, + "trace_ids": [ + 2196 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 508, + "trace_count": 1, + "trace_ids": [ + 2198 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 509, + "trace_count": 1, + "trace_ids": [ + 2201 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 510, + "trace_count": 1, + "trace_ids": [ + 2206 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 511, + "trace_count": 1, + "trace_ids": [ + 2208 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 512, + "trace_count": 1, + "trace_ids": [ + 2213 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 513, + "trace_count": 1, + "trace_ids": [ + 2227 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 514, + "trace_count": 1, + "trace_ids": [ + 2241 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 515, + "trace_count": 1, + "trace_ids": [ + 2244 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 516, + "trace_count": 1, + "trace_ids": [ + 2250 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 5, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 517, + "trace_count": 1, + "trace_ids": [ + 2251 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "match_ratio": 0.667, + "matched_faces": 2, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 518, + "trace_count": 1, + "trace_ids": [ + 2252 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 519, + "trace_count": 1, + "trace_ids": [ + 2254 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 520, + "trace_count": 1, + "trace_ids": [ + 2262 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 521, + "trace_count": 1, + "trace_ids": [ + 2263 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 0.8, + "matched_faces": 4, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 522, + "trace_count": 1, + "trace_ids": [ + 2265 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 523, + "trace_count": 1, + "trace_ids": [ + 2266 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 11, + "total_faces": 11 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 524, + "trace_count": 1, + "trace_ids": [ + 2272 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 525, + "trace_count": 1, + "trace_ids": [ + 2276 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 526, + "trace_count": 1, + "trace_ids": [ + 2279 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 527, + "trace_count": 1, + "trace_ids": [ + 2281 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 528, + "trace_count": 1, + "trace_ids": [ + 2282 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 529, + "trace_count": 1, + "trace_ids": [ + 2293 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 530, + "trace_count": 1, + "trace_ids": [ + 2294 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 0.895, + "matched_faces": 17, + "total_faces": 19 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 531, + "trace_count": 1, + "trace_ids": [ + 2295 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 2, + "total_faces": 2 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 532, + "trace_count": 1, + "trace_ids": [ + 2296 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 0.857, + "matched_faces": 6, + "total_faces": 7 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 533, + "trace_count": 1, + "trace_ids": [ + 2297 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 534, + "trace_count": 1, + "trace_ids": [ + 2299 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 7, + "total_faces": 7 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 535, + "trace_count": 1, + "trace_ids": [ + 2300 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 0.6, + "matched_faces": 3, + "total_faces": 5 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 536, + "trace_count": 1, + "trace_ids": [ + 2303 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 6, + "total_faces": 6 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 537, + "trace_count": 1, + "trace_ids": [ + 2305 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 538, + "trace_count": 1, + "trace_ids": [ + 2306 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 539, + "trace_count": 1, + "trace_ids": [ + 2307 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 0.857, + "matched_faces": 6, + "total_faces": 7 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 540, + "trace_count": 1, + "trace_ids": [ + 2308 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 541, + "trace_count": 1, + "trace_ids": [ + 2316 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 542, + "trace_count": 1, + "trace_ids": [ + 2326 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 543, + "trace_count": 1, + "trace_ids": [ + 2327 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 544, + "trace_count": 1, + "trace_ids": [ + 2328 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 545, + "trace_count": 1, + "trace_ids": [ + 2329 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 546, + "trace_count": 1, + "trace_ids": [ + 2330 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 3, + "total_faces": 3 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 547, + "trace_count": 1, + "trace_ids": [ + 2331 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 548, + "trace_count": 1, + "trace_ids": [ + 2332 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 549, + "trace_count": 1, + "trace_ids": [ + 2333 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "match_ratio": 1.0, + "matched_faces": 1, + "total_faces": 1 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 550, + "trace_count": 1, + "trace_ids": [ + 2334 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "match_ratio": 1.0, + "matched_faces": 4, + "total_faces": 4 + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 551, + "trace_count": 1, + "trace_ids": [ + 1 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.664, + "match_ratio": 1.0, + "composite_score": 0.664, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 552, + "trace_count": 1, + "trace_ids": [ + 4 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.662, + "match_ratio": 1.0, + "composite_score": 0.662, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 553, + "trace_count": 1, + "trace_ids": [ + 12 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.567, + "match_ratio": 1.0, + "composite_score": 0.567, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 554, + "trace_count": 1, + "trace_ids": [ + 22 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.635, + "match_ratio": 1.0, + "composite_score": 0.635, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 555, + "trace_count": 1, + "trace_ids": [ + 24 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.689, + "match_ratio": 1.0, + "composite_score": 0.689, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 556, + "trace_count": 1, + "trace_ids": [ + 25 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.707, + "match_ratio": 1.0, + "composite_score": 0.707, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 557, + "trace_count": 1, + "trace_ids": [ + 27 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.702, + "match_ratio": 1.0, + "composite_score": 0.702, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 558, + "trace_count": 1, + "trace_ids": [ + 28 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.561, + "match_ratio": 1.0, + "composite_score": 0.561, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 559, + "trace_count": 1, + "trace_ids": [ + 30 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "avg_similarity": 0.611, + "match_ratio": 1.0, + "composite_score": 0.611, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 560, + "trace_count": 1, + "trace_ids": [ + 31 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "avg_similarity": 0.846, + "match_ratio": 1.0, + "composite_score": 0.846, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 561, + "trace_count": 1, + "trace_ids": [ + 33 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "avg_similarity": 0.758, + "match_ratio": 1.0, + "composite_score": 0.758, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 562, + "trace_count": 1, + "trace_ids": [ + 36 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.638, + "match_ratio": 1.0, + "composite_score": 0.638, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 563, + "trace_count": 1, + "trace_ids": [ + 37 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.62, + "match_ratio": 1.0, + "composite_score": 0.62, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 564, + "trace_count": 1, + "trace_ids": [ + 38 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "avg_similarity": 0.686, + "match_ratio": 1.0, + "composite_score": 0.686, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 565, + "trace_count": 1, + "trace_ids": [ + 41 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.662, + "match_ratio": 1.0, + "composite_score": 0.662, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 566, + "trace_count": 1, + "trace_ids": [ + 42 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "avg_similarity": 0.714, + "match_ratio": 1.0, + "composite_score": 0.714, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 567, + "trace_count": 1, + "trace_ids": [ + 43 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "avg_similarity": 0.743, + "match_ratio": 1.0, + "composite_score": 0.743, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 568, + "trace_count": 1, + "trace_ids": [ + 44 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.698, + "match_ratio": 1.0, + "composite_score": 0.698, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 569, + "trace_count": 1, + "trace_ids": [ + 47 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "avg_similarity": 0.803, + "match_ratio": 1.0, + "composite_score": 0.803, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 570, + "trace_count": 1, + "trace_ids": [ + 51 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.577, + "match_ratio": 1.0, + "composite_score": 0.577, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 571, + "trace_count": 1, + "trace_ids": [ + 54 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.628, + "match_ratio": 1.0, + "composite_score": 0.628, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 572, + "trace_count": 1, + "trace_ids": [ + 55 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.62, + "match_ratio": 1.0, + "composite_score": 0.62, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 573, + "trace_count": 1, + "trace_ids": [ + 65 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "avg_similarity": 0.677, + "match_ratio": 1.0, + "composite_score": 0.677, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 574, + "trace_count": 1, + "trace_ids": [ + 76 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.849, + "match_ratio": 1.0, + "composite_score": 0.849, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 575, + "trace_count": 1, + "trace_ids": [ + 77 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.646, + "match_ratio": 1.0, + "composite_score": 0.646, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 576, + "trace_count": 1, + "trace_ids": [ + 78 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.894, + "match_ratio": 1.0, + "composite_score": 0.894, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 577, + "trace_count": 1, + "trace_ids": [ + 79 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.877, + "match_ratio": 1.0, + "composite_score": 0.877, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 578, + "trace_count": 1, + "trace_ids": [ + 80 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "avg_similarity": 0.721, + "match_ratio": 1.0, + "composite_score": 0.721, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 579, + "trace_count": 1, + "trace_ids": [ + 82 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.59, + "match_ratio": 1.0, + "composite_score": 0.59, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 580, + "trace_count": 1, + "trace_ids": [ + 83 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "avg_similarity": 0.645, + "match_ratio": 1.0, + "composite_score": 0.645, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 581, + "trace_count": 1, + "trace_ids": [ + 84 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.926, + "match_ratio": 1.0, + "composite_score": 0.926, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 582, + "trace_count": 1, + "trace_ids": [ + 85 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.879, + "match_ratio": 1.0, + "composite_score": 0.879, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 583, + "trace_count": 1, + "trace_ids": [ + 86 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.936, + "match_ratio": 1.0, + "composite_score": 0.936, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 584, + "trace_count": 1, + "trace_ids": [ + 87 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.879, + "match_ratio": 1.0, + "composite_score": 0.879, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 585, + "trace_count": 1, + "trace_ids": [ + 88 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.905, + "match_ratio": 1.0, + "composite_score": 0.905, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 586, + "trace_count": 1, + "trace_ids": [ + 89 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.925, + "match_ratio": 1.0, + "composite_score": 0.925, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 587, + "trace_count": 1, + "trace_ids": [ + 90 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.84, + "match_ratio": 1.0, + "composite_score": 0.84, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 588, + "trace_count": 1, + "trace_ids": [ + 91 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.59, + "match_ratio": 1.0, + "composite_score": 0.59, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 589, + "trace_count": 1, + "trace_ids": [ + 92 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.612, + "match_ratio": 1.0, + "composite_score": 0.612, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 590, + "trace_count": 1, + "trace_ids": [ + 98 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "avg_similarity": 0.647, + "match_ratio": 1.0, + "composite_score": 0.647, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 591, + "trace_count": 1, + "trace_ids": [ + 101 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.623, + "match_ratio": 1.0, + "composite_score": 0.623, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 592, + "trace_count": 1, + "trace_ids": [ + 102 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.698, + "match_ratio": 1.0, + "composite_score": 0.698, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 593, + "trace_count": 1, + "trace_ids": [ + 103 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.761, + "match_ratio": 1.0, + "composite_score": 0.761, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 594, + "trace_count": 1, + "trace_ids": [ + 104 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.765, + "match_ratio": 1.0, + "composite_score": 0.765, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 595, + "trace_count": 1, + "trace_ids": [ + 106 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.62, + "match_ratio": 1.0, + "composite_score": 0.62, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 596, + "trace_count": 1, + "trace_ids": [ + 107 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.813, + "match_ratio": 1.0, + "composite_score": 0.813, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 597, + "trace_count": 1, + "trace_ids": [ + 108 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.866, + "match_ratio": 1.0, + "composite_score": 0.866, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 598, + "trace_count": 1, + "trace_ids": [ + 109 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.871, + "match_ratio": 1.0, + "composite_score": 0.871, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 599, + "trace_count": 1, + "trace_ids": [ + 110 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.81, + "match_ratio": 1.0, + "composite_score": 0.81, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 600, + "trace_count": 1, + "trace_ids": [ + 114 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.92, + "match_ratio": 1.0, + "composite_score": 0.92, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 601, + "trace_count": 1, + "trace_ids": [ + 115 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.916, + "match_ratio": 1.0, + "composite_score": 0.916, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 602, + "trace_count": 1, + "trace_ids": [ + 116 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.928, + "match_ratio": 1.0, + "composite_score": 0.928, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 603, + "trace_count": 1, + "trace_ids": [ + 117 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.852, + "match_ratio": 1.0, + "composite_score": 0.852, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 604, + "trace_count": 1, + "trace_ids": [ + 121 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.899, + "match_ratio": 1.0, + "composite_score": 0.899, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 605, + "trace_count": 1, + "trace_ids": [ + 122 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.755, + "match_ratio": 1.0, + "composite_score": 0.755, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 606, + "trace_count": 1, + "trace_ids": [ + 127 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.672, + "match_ratio": 1.0, + "composite_score": 0.672, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 607, + "trace_count": 1, + "trace_ids": [ + 132 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.87, + "match_ratio": 1.0, + "composite_score": 0.87, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 608, + "trace_count": 1, + "trace_ids": [ + 136 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.927, + "match_ratio": 1.0, + "composite_score": 0.927, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 609, + "trace_count": 1, + "trace_ids": [ + 137 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.9, + "match_ratio": 1.0, + "composite_score": 0.9, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 610, + "trace_count": 1, + "trace_ids": [ + 141 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.812, + "match_ratio": 1.0, + "composite_score": 0.812, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 611, + "trace_count": 1, + "trace_ids": [ + 150 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "avg_similarity": 0.615, + "match_ratio": 1.0, + "composite_score": 0.615, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 612, + "trace_count": 1, + "trace_ids": [ + 151 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "avg_similarity": 0.568, + "match_ratio": 1.0, + "composite_score": 0.568, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 613, + "trace_count": 1, + "trace_ids": [ + 152 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.733, + "match_ratio": 1.0, + "composite_score": 0.733, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 614, + "trace_count": 1, + "trace_ids": [ + 153 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.823, + "match_ratio": 1.0, + "composite_score": 0.823, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 615, + "trace_count": 1, + "trace_ids": [ + 157 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.731, + "match_ratio": 1.0, + "composite_score": 0.731, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 616, + "trace_count": 1, + "trace_ids": [ + 159 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.718, + "match_ratio": 1.0, + "composite_score": 0.718, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 617, + "trace_count": 1, + "trace_ids": [ + 160 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.622, + "match_ratio": 1.0, + "composite_score": 0.622, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 618, + "trace_count": 1, + "trace_ids": [ + 161 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.663, + "match_ratio": 1.0, + "composite_score": 0.663, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 619, + "trace_count": 1, + "trace_ids": [ + 163 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.7, + "match_ratio": 1.0, + "composite_score": 0.7, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 620, + "trace_count": 1, + "trace_ids": [ + 165 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.565, + "match_ratio": 1.0, + "composite_score": 0.565, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 621, + "trace_count": 1, + "trace_ids": [ + 174 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.555, + "match_ratio": 1.0, + "composite_score": 0.555, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 622, + "trace_count": 1, + "trace_ids": [ + 175 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.57, + "match_ratio": 1.0, + "composite_score": 0.57, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 623, + "trace_count": 1, + "trace_ids": [ + 176 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.56, + "match_ratio": 1.0, + "composite_score": 0.56, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 624, + "trace_count": 1, + "trace_ids": [ + 178 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.589, + "match_ratio": 1.0, + "composite_score": 0.589, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 625, + "trace_count": 1, + "trace_ids": [ + 179 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.621, + "match_ratio": 1.0, + "composite_score": 0.621, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 626, + "trace_count": 1, + "trace_ids": [ + 183 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.601, + "match_ratio": 1.0, + "composite_score": 0.601, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 627, + "trace_count": 1, + "trace_ids": [ + 186 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.633, + "match_ratio": 1.0, + "composite_score": 0.633, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 628, + "trace_count": 1, + "trace_ids": [ + 187 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.716, + "match_ratio": 1.0, + "composite_score": 0.716, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 629, + "trace_count": 1, + "trace_ids": [ + 190 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.617, + "match_ratio": 1.0, + "composite_score": 0.617, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 630, + "trace_count": 1, + "trace_ids": [ + 191 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.883, + "match_ratio": 1.0, + "composite_score": 0.883, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 631, + "trace_count": 1, + "trace_ids": [ + 193 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.684, + "match_ratio": 1.0, + "composite_score": 0.684, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 632, + "trace_count": 1, + "trace_ids": [ + 195 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.731, + "match_ratio": 1.0, + "composite_score": 0.731, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 633, + "trace_count": 1, + "trace_ids": [ + 196 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.698, + "match_ratio": 1.0, + "composite_score": 0.698, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 634, + "trace_count": 1, + "trace_ids": [ + 213 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.556, + "match_ratio": 1.0, + "composite_score": 0.556, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 635, + "trace_count": 1, + "trace_ids": [ + 215 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.816, + "match_ratio": 1.0, + "composite_score": 0.816, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 636, + "trace_count": 1, + "trace_ids": [ + 216 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.593, + "match_ratio": 1.0, + "composite_score": 0.593, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 637, + "trace_count": 1, + "trace_ids": [ + 225 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.577, + "match_ratio": 1.0, + "composite_score": 0.577, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 638, + "trace_count": 1, + "trace_ids": [ + 226 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.69, + "match_ratio": 1.0, + "composite_score": 0.69, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 639, + "trace_count": 1, + "trace_ids": [ + 235 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.72, + "match_ratio": 1.0, + "composite_score": 0.72, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 640, + "trace_count": 1, + "trace_ids": [ + 236 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.722, + "match_ratio": 1.0, + "composite_score": 0.722, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 641, + "trace_count": 1, + "trace_ids": [ + 238 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.569, + "match_ratio": 1.0, + "composite_score": 0.569, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 642, + "trace_count": 1, + "trace_ids": [ + 240 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.796, + "match_ratio": 1.0, + "composite_score": 0.796, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 643, + "trace_count": 1, + "trace_ids": [ + 242 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.573, + "match_ratio": 1.0, + "composite_score": 0.573, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 644, + "trace_count": 1, + "trace_ids": [ + 243 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.587, + "match_ratio": 1.0, + "composite_score": 0.587, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 645, + "trace_count": 1, + "trace_ids": [ + 244 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.607, + "match_ratio": 1.0, + "composite_score": 0.607, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 646, + "trace_count": 1, + "trace_ids": [ + 249 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.673, + "match_ratio": 1.0, + "composite_score": 0.673, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 647, + "trace_count": 1, + "trace_ids": [ + 251 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.718, + "match_ratio": 1.0, + "composite_score": 0.718, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 648, + "trace_count": 1, + "trace_ids": [ + 253 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.745, + "match_ratio": 1.0, + "composite_score": 0.745, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 649, + "trace_count": 1, + "trace_ids": [ + 254 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.76, + "match_ratio": 1.0, + "composite_score": 0.76, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 650, + "trace_count": 1, + "trace_ids": [ + 255 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.691, + "match_ratio": 1.0, + "composite_score": 0.691, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 651, + "trace_count": 1, + "trace_ids": [ + 257 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.727, + "match_ratio": 1.0, + "composite_score": 0.727, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 652, + "trace_count": 1, + "trace_ids": [ + 259 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.78, + "match_ratio": 1.0, + "composite_score": 0.78, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 653, + "trace_count": 1, + "trace_ids": [ + 262 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.82, + "match_ratio": 1.0, + "composite_score": 0.82, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 654, + "trace_count": 1, + "trace_ids": [ + 264 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.626, + "match_ratio": 1.0, + "composite_score": 0.626, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 655, + "trace_count": 1, + "trace_ids": [ + 271 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.825, + "match_ratio": 1.0, + "composite_score": 0.825, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 656, + "trace_count": 1, + "trace_ids": [ + 281 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.818, + "match_ratio": 1.0, + "composite_score": 0.818, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 657, + "trace_count": 1, + "trace_ids": [ + 283 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.763, + "match_ratio": 1.0, + "composite_score": 0.763, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 658, + "trace_count": 1, + "trace_ids": [ + 302 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.763, + "match_ratio": 1.0, + "composite_score": 0.763, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 659, + "trace_count": 1, + "trace_ids": [ + 305 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.62, + "match_ratio": 1.0, + "composite_score": 0.62, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 660, + "trace_count": 1, + "trace_ids": [ + 306 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.602, + "match_ratio": 1.0, + "composite_score": 0.602, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 661, + "trace_count": 1, + "trace_ids": [ + 308 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.714, + "match_ratio": 1.0, + "composite_score": 0.714, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 662, + "trace_count": 1, + "trace_ids": [ + 310 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.908, + "match_ratio": 1.0, + "composite_score": 0.908, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 663, + "trace_count": 1, + "trace_ids": [ + 318 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.566, + "match_ratio": 1.0, + "composite_score": 0.566, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 664, + "trace_count": 1, + "trace_ids": [ + 320 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.606, + "match_ratio": 1.0, + "composite_score": 0.606, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 665, + "trace_count": 1, + "trace_ids": [ + 331 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.767, + "match_ratio": 1.0, + "composite_score": 0.767, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 666, + "trace_count": 1, + "trace_ids": [ + 332 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "avg_similarity": 0.774, + "match_ratio": 1.0, + "composite_score": 0.774, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 667, + "trace_count": 1, + "trace_ids": [ + 334 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.604, + "match_ratio": 1.0, + "composite_score": 0.604, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 668, + "trace_count": 1, + "trace_ids": [ + 336 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "avg_similarity": 0.888, + "match_ratio": 1.0, + "composite_score": 0.888, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 669, + "trace_count": 1, + "trace_ids": [ + 339 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.761, + "match_ratio": 1.0, + "composite_score": 0.761, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 670, + "trace_count": 1, + "trace_ids": [ + 348 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.731, + "match_ratio": 1.0, + "composite_score": 0.731, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 671, + "trace_count": 1, + "trace_ids": [ + 350 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "avg_similarity": 0.648, + "match_ratio": 0.667, + "composite_score": 0.518, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 672, + "trace_count": 1, + "trace_ids": [ + 351 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.561, + "match_ratio": 1.0, + "composite_score": 0.561, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 673, + "trace_count": 1, + "trace_ids": [ + 352 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.579, + "match_ratio": 1.0, + "composite_score": 0.579, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 674, + "trace_count": 1, + "trace_ids": [ + 353 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.736, + "match_ratio": 1.0, + "composite_score": 0.736, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 675, + "trace_count": 1, + "trace_ids": [ + 356 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.749, + "match_ratio": 1.0, + "composite_score": 0.749, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 676, + "trace_count": 1, + "trace_ids": [ + 357 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.679, + "match_ratio": 1.0, + "composite_score": 0.679, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 677, + "trace_count": 1, + "trace_ids": [ + 358 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.769, + "match_ratio": 1.0, + "composite_score": 0.769, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 678, + "trace_count": 1, + "trace_ids": [ + 359 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.762, + "match_ratio": 1.0, + "composite_score": 0.762, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 679, + "trace_count": 1, + "trace_ids": [ + 364 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.604, + "match_ratio": 1.0, + "composite_score": 0.604, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 680, + "trace_count": 1, + "trace_ids": [ + 365 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.559, + "match_ratio": 1.0, + "composite_score": 0.559, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 681, + "trace_count": 1, + "trace_ids": [ + 368 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.755, + "match_ratio": 1.0, + "composite_score": 0.755, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 682, + "trace_count": 1, + "trace_ids": [ + 373 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.775, + "match_ratio": 1.0, + "composite_score": 0.775, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 683, + "trace_count": 1, + "trace_ids": [ + 374 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.751, + "match_ratio": 1.0, + "composite_score": 0.751, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 684, + "trace_count": 1, + "trace_ids": [ + 375 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "avg_similarity": 0.877, + "match_ratio": 1.0, + "composite_score": 0.877, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 685, + "trace_count": 1, + "trace_ids": [ + 378 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "avg_similarity": 0.925, + "match_ratio": 1.0, + "composite_score": 0.925, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 686, + "trace_count": 1, + "trace_ids": [ + 379 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "avg_similarity": 0.914, + "match_ratio": 1.0, + "composite_score": 0.914, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 687, + "trace_count": 1, + "trace_ids": [ + 387 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "avg_similarity": 0.763, + "match_ratio": 1.0, + "composite_score": 0.763, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 688, + "trace_count": 1, + "trace_ids": [ + 391 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.618, + "match_ratio": 1.0, + "composite_score": 0.618, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 689, + "trace_count": 1, + "trace_ids": [ + 394 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "avg_similarity": 0.687, + "match_ratio": 1.0, + "composite_score": 0.687, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 690, + "trace_count": 1, + "trace_ids": [ + 397 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.602, + "match_ratio": 1.0, + "composite_score": 0.602, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 691, + "trace_count": 1, + "trace_ids": [ + 398 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.696, + "match_ratio": 1.0, + "composite_score": 0.696, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 692, + "trace_count": 1, + "trace_ids": [ + 401 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.683, + "match_ratio": 1.0, + "composite_score": 0.683, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 693, + "trace_count": 1, + "trace_ids": [ + 405 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.73, + "match_ratio": 1.0, + "composite_score": 0.73, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 694, + "trace_count": 1, + "trace_ids": [ + 406 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.567, + "match_ratio": 1.0, + "composite_score": 0.567, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 695, + "trace_count": 1, + "trace_ids": [ + 407 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "avg_similarity": 0.783, + "match_ratio": 1.0, + "composite_score": 0.783, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 696, + "trace_count": 1, + "trace_ids": [ + 408 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.853, + "match_ratio": 1.0, + "composite_score": 0.853, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 697, + "trace_count": 1, + "trace_ids": [ + 409 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.635, + "match_ratio": 1.0, + "composite_score": 0.635, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 698, + "trace_count": 1, + "trace_ids": [ + 410 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.874, + "match_ratio": 1.0, + "composite_score": 0.874, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 699, + "trace_count": 1, + "trace_ids": [ + 414 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.703, + "match_ratio": 1.0, + "composite_score": 0.703, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 700, + "trace_count": 1, + "trace_ids": [ + 417 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.578, + "match_ratio": 1.0, + "composite_score": 0.578, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 701, + "trace_count": 1, + "trace_ids": [ + 418 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.621, + "match_ratio": 1.0, + "composite_score": 0.621, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 702, + "trace_count": 1, + "trace_ids": [ + 423 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.709, + "match_ratio": 0.833, + "composite_score": 0.638, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 703, + "trace_count": 1, + "trace_ids": [ + 425 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.565, + "match_ratio": 1.0, + "composite_score": 0.565, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 704, + "trace_count": 1, + "trace_ids": [ + 427 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.567, + "match_ratio": 1.0, + "composite_score": 0.567, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 705, + "trace_count": 1, + "trace_ids": [ + 428 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.771, + "match_ratio": 1.0, + "composite_score": 0.771, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 706, + "trace_count": 1, + "trace_ids": [ + 429 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.624, + "match_ratio": 1.0, + "composite_score": 0.624, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 707, + "trace_count": 1, + "trace_ids": [ + 442 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.625, + "match_ratio": 1.0, + "composite_score": 0.625, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 708, + "trace_count": 1, + "trace_ids": [ + 446 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.652, + "match_ratio": 1.0, + "composite_score": 0.652, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 709, + "trace_count": 1, + "trace_ids": [ + 450 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.568, + "match_ratio": 1.0, + "composite_score": 0.568, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 710, + "trace_count": 1, + "trace_ids": [ + 451 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.643, + "match_ratio": 1.0, + "composite_score": 0.643, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 711, + "trace_count": 1, + "trace_ids": [ + 453 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.733, + "match_ratio": 1.0, + "composite_score": 0.733, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 712, + "trace_count": 1, + "trace_ids": [ + 458 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.676, + "match_ratio": 1.0, + "composite_score": 0.676, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 713, + "trace_count": 1, + "trace_ids": [ + 460 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.684, + "match_ratio": 1.0, + "composite_score": 0.684, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 714, + "trace_count": 1, + "trace_ids": [ + 469 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.599, + "match_ratio": 1.0, + "composite_score": 0.599, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 715, + "trace_count": 1, + "trace_ids": [ + 471 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.589, + "match_ratio": 1.0, + "composite_score": 0.589, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 716, + "trace_count": 1, + "trace_ids": [ + 473 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.842, + "match_ratio": 1.0, + "composite_score": 0.842, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 717, + "trace_count": 1, + "trace_ids": [ + 477 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.799, + "match_ratio": 1.0, + "composite_score": 0.799, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 718, + "trace_count": 1, + "trace_ids": [ + 479 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.804, + "match_ratio": 1.0, + "composite_score": 0.804, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 719, + "trace_count": 1, + "trace_ids": [ + 480 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.59, + "match_ratio": 1.0, + "composite_score": 0.59, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 720, + "trace_count": 1, + "trace_ids": [ + 482 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.598, + "match_ratio": 0.75, + "composite_score": 0.508, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 721, + "trace_count": 1, + "trace_ids": [ + 483 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.599, + "match_ratio": 1.0, + "composite_score": 0.599, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 722, + "trace_count": 1, + "trace_ids": [ + 485 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.669, + "match_ratio": 1.0, + "composite_score": 0.669, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 723, + "trace_count": 1, + "trace_ids": [ + 486 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.617, + "match_ratio": 1.0, + "composite_score": 0.617, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 724, + "trace_count": 1, + "trace_ids": [ + 488 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.706, + "match_ratio": 1.0, + "composite_score": 0.706, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 725, + "trace_count": 1, + "trace_ids": [ + 491 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.764, + "match_ratio": 1.0, + "composite_score": 0.764, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 726, + "trace_count": 1, + "trace_ids": [ + 496 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.668, + "match_ratio": 0.833, + "composite_score": 0.602, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 727, + "trace_count": 1, + "trace_ids": [ + 498 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.654, + "match_ratio": 0.786, + "composite_score": 0.57, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 728, + "trace_count": 1, + "trace_ids": [ + 505 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.586, + "match_ratio": 1.0, + "composite_score": 0.586, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 729, + "trace_count": 1, + "trace_ids": [ + 508 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.713, + "match_ratio": 1.0, + "composite_score": 0.713, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 730, + "trace_count": 1, + "trace_ids": [ + 514 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.82, + "match_ratio": 1.0, + "composite_score": 0.82, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 731, + "trace_count": 1, + "trace_ids": [ + 517 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.571, + "match_ratio": 1.0, + "composite_score": 0.571, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 732, + "trace_count": 1, + "trace_ids": [ + 519 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.653, + "match_ratio": 1.0, + "composite_score": 0.653, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 733, + "trace_count": 1, + "trace_ids": [ + 524 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.729, + "match_ratio": 1.0, + "composite_score": 0.729, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 734, + "trace_count": 1, + "trace_ids": [ + 529 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.645, + "match_ratio": 1.0, + "composite_score": 0.59, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 735, + "trace_count": 1, + "trace_ids": [ + 530 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.76, + "match_ratio": 1.0, + "composite_score": 0.76, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 736, + "trace_count": 1, + "trace_ids": [ + 532 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.648, + "match_ratio": 1.0, + "composite_score": 0.648, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 737, + "trace_count": 1, + "trace_ids": [ + 534 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.801, + "match_ratio": 1.0, + "composite_score": 0.801, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 738, + "trace_count": 1, + "trace_ids": [ + 539 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.676, + "match_ratio": 1.0, + "composite_score": 0.676, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 739, + "trace_count": 1, + "trace_ids": [ + 544 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.657, + "match_ratio": 1.0, + "composite_score": 0.657, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 740, + "trace_count": 1, + "trace_ids": [ + 551 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.672, + "match_ratio": 1.0, + "composite_score": 0.672, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 741, + "trace_count": 1, + "trace_ids": [ + 552 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.768, + "match_ratio": 1.0, + "composite_score": 0.768, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 742, + "trace_count": 1, + "trace_ids": [ + 560 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.746, + "match_ratio": 1.0, + "composite_score": 0.746, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 743, + "trace_count": 1, + "trace_ids": [ + 565 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.622, + "match_ratio": 1.0, + "composite_score": 0.622, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 744, + "trace_count": 1, + "trace_ids": [ + 569 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.735, + "match_ratio": 1.0, + "composite_score": 0.735, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 745, + "trace_count": 1, + "trace_ids": [ + 571 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.728, + "match_ratio": 1.0, + "composite_score": 0.728, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 746, + "trace_count": 1, + "trace_ids": [ + 574 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.829, + "match_ratio": 1.0, + "composite_score": 0.829, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 747, + "trace_count": 1, + "trace_ids": [ + 582 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.77, + "match_ratio": 1.0, + "composite_score": 0.77, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 748, + "trace_count": 1, + "trace_ids": [ + 584 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.808, + "match_ratio": 1.0, + "composite_score": 0.808, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 749, + "trace_count": 1, + "trace_ids": [ + 586 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.757, + "match_ratio": 1.0, + "composite_score": 0.757, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 750, + "trace_count": 1, + "trace_ids": [ + 588 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.585, + "match_ratio": 1.0, + "composite_score": 0.585, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 751, + "trace_count": 1, + "trace_ids": [ + 589 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.656, + "match_ratio": 1.0, + "composite_score": 0.656, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 752, + "trace_count": 1, + "trace_ids": [ + 592 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.643, + "match_ratio": 1.0, + "composite_score": 0.643, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 753, + "trace_count": 1, + "trace_ids": [ + 593 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.581, + "match_ratio": 1.0, + "composite_score": 0.581, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 754, + "trace_count": 1, + "trace_ids": [ + 594 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.654, + "match_ratio": 1.0, + "composite_score": 0.654, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 755, + "trace_count": 1, + "trace_ids": [ + 600 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.813, + "match_ratio": 1.0, + "composite_score": 0.813, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 756, + "trace_count": 1, + "trace_ids": [ + 620 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.575, + "match_ratio": 1.0, + "composite_score": 0.575, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 757, + "trace_count": 1, + "trace_ids": [ + 626 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.553, + "match_ratio": 1.0, + "composite_score": 0.553, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 758, + "trace_count": 1, + "trace_ids": [ + 633 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.629, + "match_ratio": 1.0, + "composite_score": 0.629, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 759, + "trace_count": 1, + "trace_ids": [ + 637 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.639, + "match_ratio": 1.0, + "composite_score": 0.639, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 760, + "trace_count": 1, + "trace_ids": [ + 640 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.645, + "match_ratio": 1.0, + "composite_score": 0.645, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 761, + "trace_count": 1, + "trace_ids": [ + 645 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.681, + "match_ratio": 0.857, + "composite_score": 0.622, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 762, + "trace_count": 1, + "trace_ids": [ + 649 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.555, + "match_ratio": 1.0, + "composite_score": 0.555, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 763, + "trace_count": 1, + "trace_ids": [ + 650 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.608, + "match_ratio": 1.0, + "composite_score": 0.608, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 764, + "trace_count": 1, + "trace_ids": [ + 661 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.555, + "match_ratio": 1.0, + "composite_score": 0.555, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 765, + "trace_count": 1, + "trace_ids": [ + 677 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.666, + "match_ratio": 1.0, + "composite_score": 0.666, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 766, + "trace_count": 1, + "trace_ids": [ + 683 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.655, + "match_ratio": 1.0, + "composite_score": 0.655, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 767, + "trace_count": 1, + "trace_ids": [ + 684 + ], + "binding": { + "id": 22, + "name": "Raoul Delfosse", + "avg_similarity": 0.56, + "match_ratio": 1.0, + "composite_score": 0.56, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 768, + "trace_count": 1, + "trace_ids": [ + 698 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.732, + "match_ratio": 1.0, + "composite_score": 0.732, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 769, + "trace_count": 1, + "trace_ids": [ + 706 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.821, + "match_ratio": 1.0, + "composite_score": 0.821, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 770, + "trace_count": 1, + "trace_ids": [ + 711 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.581, + "match_ratio": 1.0, + "composite_score": 0.581, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 771, + "trace_count": 1, + "trace_ids": [ + 712 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.595, + "match_ratio": 1.0, + "composite_score": 0.595, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 772, + "trace_count": 1, + "trace_ids": [ + 715 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.586, + "match_ratio": 1.0, + "composite_score": 0.586, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 773, + "trace_count": 1, + "trace_ids": [ + 717 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.595, + "match_ratio": 1.0, + "composite_score": 0.595, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 774, + "trace_count": 1, + "trace_ids": [ + 721 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.753, + "match_ratio": 1.0, + "composite_score": 0.753, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 775, + "trace_count": 1, + "trace_ids": [ + 722 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.693, + "match_ratio": 1.0, + "composite_score": 0.61, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 776, + "trace_count": 1, + "trace_ids": [ + 723 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.597, + "match_ratio": 1.0, + "composite_score": 0.597, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 777, + "trace_count": 1, + "trace_ids": [ + 724 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.806, + "match_ratio": 1.0, + "composite_score": 0.806, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 778, + "trace_count": 1, + "trace_ids": [ + 725 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.803, + "match_ratio": 1.0, + "composite_score": 0.803, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 779, + "trace_count": 1, + "trace_ids": [ + 726 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.735, + "match_ratio": 1.0, + "composite_score": 0.735, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 780, + "trace_count": 1, + "trace_ids": [ + 741 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.679, + "match_ratio": 1.0, + "composite_score": 0.679, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 781, + "trace_count": 1, + "trace_ids": [ + 744 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.656, + "match_ratio": 1.0, + "composite_score": 0.656, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 782, + "trace_count": 1, + "trace_ids": [ + 746 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.556, + "match_ratio": 1.0, + "composite_score": 0.556, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 783, + "trace_count": 1, + "trace_ids": [ + 747 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.603, + "match_ratio": 1.0, + "composite_score": 0.603, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 784, + "trace_count": 1, + "trace_ids": [ + 750 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.585, + "match_ratio": 1.0, + "composite_score": 0.585, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 785, + "trace_count": 1, + "trace_ids": [ + 751 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.611, + "match_ratio": 1.0, + "composite_score": 0.611, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 786, + "trace_count": 1, + "trace_ids": [ + 752 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.555, + "match_ratio": 1.0, + "composite_score": 0.555, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 787, + "trace_count": 1, + "trace_ids": [ + 756 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.657, + "match_ratio": 1.0, + "composite_score": 0.657, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 788, + "trace_count": 1, + "trace_ids": [ + 759 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.601, + "match_ratio": 1.0, + "composite_score": 0.511, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 789, + "trace_count": 1, + "trace_ids": [ + 761 + ], + "binding": { + "id": 22, + "name": "Raoul Delfosse", + "avg_similarity": 0.581, + "match_ratio": 1.0, + "composite_score": 0.581, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 790, + "trace_count": 1, + "trace_ids": [ + 768 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.587, + "match_ratio": 1.0, + "composite_score": 0.587, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 791, + "trace_count": 1, + "trace_ids": [ + 773 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.635, + "match_ratio": 1.0, + "composite_score": 0.635, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 792, + "trace_count": 1, + "trace_ids": [ + 775 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.645, + "match_ratio": 1.0, + "composite_score": 0.645, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 793, + "trace_count": 1, + "trace_ids": [ + 782 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.625, + "match_ratio": 1.0, + "composite_score": 0.625, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 794, + "trace_count": 1, + "trace_ids": [ + 784 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.578, + "match_ratio": 1.0, + "composite_score": 0.578, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 795, + "trace_count": 1, + "trace_ids": [ + 786 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.639, + "match_ratio": 1.0, + "composite_score": 0.639, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 796, + "trace_count": 1, + "trace_ids": [ + 792 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.686, + "match_ratio": 1.0, + "composite_score": 0.686, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 797, + "trace_count": 1, + "trace_ids": [ + 794 + ], + "binding": { + "id": 22, + "name": "Raoul Delfosse", + "avg_similarity": 0.633, + "match_ratio": 1.0, + "composite_score": 0.633, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 798, + "trace_count": 1, + "trace_ids": [ + 797 + ], + "binding": { + "id": 22, + "name": "Raoul Delfosse", + "avg_similarity": 0.642, + "match_ratio": 1.0, + "composite_score": 0.642, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 799, + "trace_count": 1, + "trace_ids": [ + 798 + ], + "binding": { + "id": 22, + "name": "Raoul Delfosse", + "avg_similarity": 0.637, + "match_ratio": 0.833, + "composite_score": 0.573, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 800, + "trace_count": 1, + "trace_ids": [ + 804 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.616, + "match_ratio": 1.0, + "composite_score": 0.616, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 801, + "trace_count": 1, + "trace_ids": [ + 826 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.773, + "match_ratio": 1.0, + "composite_score": 0.773, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 802, + "trace_count": 1, + "trace_ids": [ + 828 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.686, + "match_ratio": 1.0, + "composite_score": 0.686, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 803, + "trace_count": 1, + "trace_ids": [ + 830 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.553, + "match_ratio": 1.0, + "composite_score": 0.553, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 804, + "trace_count": 1, + "trace_ids": [ + 832 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.621, + "match_ratio": 1.0, + "composite_score": 0.621, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 805, + "trace_count": 1, + "trace_ids": [ + 833 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.58, + "match_ratio": 1.0, + "composite_score": 0.58, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 806, + "trace_count": 1, + "trace_ids": [ + 834 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.81, + "match_ratio": 1.0, + "composite_score": 0.81, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 807, + "trace_count": 1, + "trace_ids": [ + 837 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.769, + "match_ratio": 1.0, + "composite_score": 0.769, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 808, + "trace_count": 1, + "trace_ids": [ + 838 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.658, + "match_ratio": 1.0, + "composite_score": 0.658, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 809, + "trace_count": 1, + "trace_ids": [ + 851 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.571, + "match_ratio": 1.0, + "composite_score": 0.571, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 810, + "trace_count": 1, + "trace_ids": [ + 853 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.736, + "match_ratio": 1.0, + "composite_score": 0.736, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 811, + "trace_count": 1, + "trace_ids": [ + 857 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.62, + "match_ratio": 1.0, + "composite_score": 0.62, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 812, + "trace_count": 1, + "trace_ids": [ + 860 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.689, + "match_ratio": 1.0, + "composite_score": 0.689, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 813, + "trace_count": 1, + "trace_ids": [ + 861 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.703, + "match_ratio": 1.0, + "composite_score": 0.703, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 814, + "trace_count": 1, + "trace_ids": [ + 866 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.632, + "match_ratio": 1.0, + "composite_score": 0.632, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 815, + "trace_count": 1, + "trace_ids": [ + 874 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.73, + "match_ratio": 1.0, + "composite_score": 0.73, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 816, + "trace_count": 1, + "trace_ids": [ + 876 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.784, + "match_ratio": 1.0, + "composite_score": 0.784, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 817, + "trace_count": 1, + "trace_ids": [ + 877 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.621, + "match_ratio": 1.0, + "composite_score": 0.621, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 818, + "trace_count": 1, + "trace_ids": [ + 879 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.781, + "match_ratio": 1.0, + "composite_score": 0.781, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 819, + "trace_count": 1, + "trace_ids": [ + 882 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.661, + "match_ratio": 1.0, + "composite_score": 0.661, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 820, + "trace_count": 1, + "trace_ids": [ + 891 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.604, + "match_ratio": 1.0, + "composite_score": 0.604, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 821, + "trace_count": 1, + "trace_ids": [ + 906 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.653, + "match_ratio": 1.0, + "composite_score": 0.653, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 822, + "trace_count": 1, + "trace_ids": [ + 913 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.729, + "match_ratio": 1.0, + "composite_score": 0.729, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 823, + "trace_count": 1, + "trace_ids": [ + 914 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.577, + "match_ratio": 1.0, + "composite_score": 0.577, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 824, + "trace_count": 1, + "trace_ids": [ + 915 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.735, + "match_ratio": 1.0, + "composite_score": 0.735, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 825, + "trace_count": 1, + "trace_ids": [ + 916 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.64, + "match_ratio": 1.0, + "composite_score": 0.64, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 826, + "trace_count": 1, + "trace_ids": [ + 918 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.649, + "match_ratio": 1.0, + "composite_score": 0.649, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 827, + "trace_count": 1, + "trace_ids": [ + 921 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.603, + "match_ratio": 1.0, + "composite_score": 0.603, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 828, + "trace_count": 1, + "trace_ids": [ + 922 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.685, + "match_ratio": 1.0, + "composite_score": 0.685, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 829, + "trace_count": 1, + "trace_ids": [ + 923 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.633, + "match_ratio": 1.0, + "composite_score": 0.633, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 830, + "trace_count": 1, + "trace_ids": [ + 927 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.622, + "match_ratio": 1.0, + "composite_score": 0.622, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 831, + "trace_count": 1, + "trace_ids": [ + 930 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.811, + "match_ratio": 1.0, + "composite_score": 0.811, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 832, + "trace_count": 1, + "trace_ids": [ + 936 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.744, + "match_ratio": 1.0, + "composite_score": 0.744, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 833, + "trace_count": 1, + "trace_ids": [ + 937 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.741, + "match_ratio": 1.0, + "composite_score": 0.741, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 834, + "trace_count": 1, + "trace_ids": [ + 941 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.598, + "match_ratio": 1.0, + "composite_score": 0.598, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 835, + "trace_count": 1, + "trace_ids": [ + 942 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.651, + "match_ratio": 1.0, + "composite_score": 0.651, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 836, + "trace_count": 1, + "trace_ids": [ + 946 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.653, + "match_ratio": 1.0, + "composite_score": 0.653, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 837, + "trace_count": 1, + "trace_ids": [ + 947 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.668, + "match_ratio": 1.0, + "composite_score": 0.668, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 838, + "trace_count": 1, + "trace_ids": [ + 949 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.727, + "match_ratio": 1.0, + "composite_score": 0.727, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 839, + "trace_count": 1, + "trace_ids": [ + 952 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.711, + "match_ratio": 1.0, + "composite_score": 0.711, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 840, + "trace_count": 1, + "trace_ids": [ + 953 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.579, + "match_ratio": 1.0, + "composite_score": 0.579, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 841, + "trace_count": 1, + "trace_ids": [ + 956 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.671, + "match_ratio": 1.0, + "composite_score": 0.671, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 842, + "trace_count": 1, + "trace_ids": [ + 961 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.732, + "match_ratio": 1.0, + "composite_score": 0.732, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 843, + "trace_count": 1, + "trace_ids": [ + 962 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.71, + "match_ratio": 1.0, + "composite_score": 0.71, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 844, + "trace_count": 1, + "trace_ids": [ + 970 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.58, + "match_ratio": 1.0, + "composite_score": 0.58, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 845, + "trace_count": 1, + "trace_ids": [ + 972 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.564, + "match_ratio": 1.0, + "composite_score": 0.564, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 846, + "trace_count": 1, + "trace_ids": [ + 978 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.65, + "match_ratio": 1.0, + "composite_score": 0.65, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 847, + "trace_count": 1, + "trace_ids": [ + 980 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.788, + "match_ratio": 1.0, + "composite_score": 0.788, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 848, + "trace_count": 1, + "trace_ids": [ + 982 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.801, + "match_ratio": 1.0, + "composite_score": 0.801, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 849, + "trace_count": 1, + "trace_ids": [ + 984 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.809, + "match_ratio": 1.0, + "composite_score": 0.809, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 850, + "trace_count": 1, + "trace_ids": [ + 986 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.723, + "match_ratio": 1.0, + "composite_score": 0.723, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 851, + "trace_count": 1, + "trace_ids": [ + 988 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.799, + "match_ratio": 1.0, + "composite_score": 0.799, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 852, + "trace_count": 1, + "trace_ids": [ + 990 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.714, + "match_ratio": 1.0, + "composite_score": 0.714, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 853, + "trace_count": 1, + "trace_ids": [ + 991 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.83, + "match_ratio": 1.0, + "composite_score": 0.83, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 854, + "trace_count": 1, + "trace_ids": [ + 993 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.749, + "match_ratio": 1.0, + "composite_score": 0.749, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 855, + "trace_count": 1, + "trace_ids": [ + 994 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.676, + "match_ratio": 1.0, + "composite_score": 0.676, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 856, + "trace_count": 1, + "trace_ids": [ + 996 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.624, + "match_ratio": 1.0, + "composite_score": 0.624, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 857, + "trace_count": 1, + "trace_ids": [ + 998 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.564, + "match_ratio": 1.0, + "composite_score": 0.564, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 858, + "trace_count": 1, + "trace_ids": [ + 1003 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.894, + "match_ratio": 1.0, + "composite_score": 0.894, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 859, + "trace_count": 1, + "trace_ids": [ + 1006 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.675, + "match_ratio": 1.0, + "composite_score": 0.675, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 860, + "trace_count": 1, + "trace_ids": [ + 1008 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.558, + "match_ratio": 1.0, + "composite_score": 0.558, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 861, + "trace_count": 1, + "trace_ids": [ + 1009 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.658, + "match_ratio": 1.0, + "composite_score": 0.658, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 862, + "trace_count": 1, + "trace_ids": [ + 1010 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.682, + "match_ratio": 1.0, + "composite_score": 0.682, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 863, + "trace_count": 1, + "trace_ids": [ + 1011 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.747, + "match_ratio": 1.0, + "composite_score": 0.747, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 864, + "trace_count": 1, + "trace_ids": [ + 1016 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.578, + "match_ratio": 1.0, + "composite_score": 0.578, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 865, + "trace_count": 1, + "trace_ids": [ + 1017 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.763, + "match_ratio": 1.0, + "composite_score": 0.763, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 866, + "trace_count": 1, + "trace_ids": [ + 1018 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.623, + "match_ratio": 0.75, + "composite_score": 0.53, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 867, + "trace_count": 1, + "trace_ids": [ + 1019 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.647, + "match_ratio": 1.0, + "composite_score": 0.647, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 868, + "trace_count": 1, + "trace_ids": [ + 1020 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.621, + "match_ratio": 1.0, + "composite_score": 0.621, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 869, + "trace_count": 1, + "trace_ids": [ + 1021 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.572, + "match_ratio": 1.0, + "composite_score": 0.572, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 870, + "trace_count": 1, + "trace_ids": [ + 1025 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.863, + "match_ratio": 1.0, + "composite_score": 0.863, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 871, + "trace_count": 1, + "trace_ids": [ + 1031 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.628, + "match_ratio": 1.0, + "composite_score": 0.628, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 872, + "trace_count": 1, + "trace_ids": [ + 1032 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.711, + "match_ratio": 1.0, + "composite_score": 0.711, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 873, + "trace_count": 1, + "trace_ids": [ + 1033 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.705, + "match_ratio": 1.0, + "composite_score": 0.705, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 874, + "trace_count": 1, + "trace_ids": [ + 1034 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.821, + "match_ratio": 1.0, + "composite_score": 0.821, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 875, + "trace_count": 1, + "trace_ids": [ + 1035 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.57, + "match_ratio": 1.0, + "composite_score": 0.57, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 876, + "trace_count": 1, + "trace_ids": [ + 1036 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.557, + "match_ratio": 1.0, + "composite_score": 0.557, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 877, + "trace_count": 1, + "trace_ids": [ + 1039 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.709, + "match_ratio": 1.0, + "composite_score": 0.709, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 878, + "trace_count": 1, + "trace_ids": [ + 1042 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.811, + "match_ratio": 1.0, + "composite_score": 0.811, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 879, + "trace_count": 1, + "trace_ids": [ + 1044 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.753, + "match_ratio": 0.952, + "composite_score": 0.731, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 880, + "trace_count": 1, + "trace_ids": [ + 1045 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.608, + "match_ratio": 0.857, + "composite_score": 0.521, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 881, + "trace_count": 1, + "trace_ids": [ + 1047 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.636, + "match_ratio": 1.0, + "composite_score": 0.636, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 882, + "trace_count": 1, + "trace_ids": [ + 1050 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.582, + "match_ratio": 1.0, + "composite_score": 0.582, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 883, + "trace_count": 1, + "trace_ids": [ + 1054 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.751, + "match_ratio": 1.0, + "composite_score": 0.751, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 884, + "trace_count": 1, + "trace_ids": [ + 1056 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.641, + "match_ratio": 1.0, + "composite_score": 0.641, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 885, + "trace_count": 1, + "trace_ids": [ + 1057 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.828, + "match_ratio": 1.0, + "composite_score": 0.828, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 886, + "trace_count": 1, + "trace_ids": [ + 1059 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.808, + "match_ratio": 1.0, + "composite_score": 0.808, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 887, + "trace_count": 1, + "trace_ids": [ + 1060 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.715, + "match_ratio": 1.0, + "composite_score": 0.715, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 888, + "trace_count": 1, + "trace_ids": [ + 1064 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.678, + "match_ratio": 1.0, + "composite_score": 0.678, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 889, + "trace_count": 1, + "trace_ids": [ + 1075 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.715, + "match_ratio": 1.0, + "composite_score": 0.715, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 890, + "trace_count": 1, + "trace_ids": [ + 1076 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.589, + "match_ratio": 1.0, + "composite_score": 0.589, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 891, + "trace_count": 1, + "trace_ids": [ + 1080 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.674, + "match_ratio": 1.0, + "composite_score": 0.674, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 892, + "trace_count": 1, + "trace_ids": [ + 1083 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.559, + "match_ratio": 1.0, + "composite_score": 0.559, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 893, + "trace_count": 1, + "trace_ids": [ + 1084 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.61, + "match_ratio": 1.0, + "composite_score": 0.61, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 894, + "trace_count": 1, + "trace_ids": [ + 1088 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.615, + "match_ratio": 1.0, + "composite_score": 0.615, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 895, + "trace_count": 1, + "trace_ids": [ + 1089 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.592, + "match_ratio": 1.0, + "composite_score": 0.592, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 896, + "trace_count": 1, + "trace_ids": [ + 1090 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.574, + "match_ratio": 1.0, + "composite_score": 0.574, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 897, + "trace_count": 1, + "trace_ids": [ + 1091 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.721, + "match_ratio": 1.0, + "composite_score": 0.721, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 898, + "trace_count": 1, + "trace_ids": [ + 1092 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.658, + "match_ratio": 1.0, + "composite_score": 0.658, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 899, + "trace_count": 1, + "trace_ids": [ + 1093 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.558, + "match_ratio": 1.0, + "composite_score": 0.558, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 900, + "trace_count": 1, + "trace_ids": [ + 1094 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.65, + "match_ratio": 1.0, + "composite_score": 0.65, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 901, + "trace_count": 1, + "trace_ids": [ + 1096 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.658, + "match_ratio": 1.0, + "composite_score": 0.658, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 902, + "trace_count": 1, + "trace_ids": [ + 1098 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.605, + "match_ratio": 1.0, + "composite_score": 0.605, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 903, + "trace_count": 1, + "trace_ids": [ + 1099 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.694, + "match_ratio": 1.0, + "composite_score": 0.694, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 904, + "trace_count": 1, + "trace_ids": [ + 1101 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.554, + "match_ratio": 1.0, + "composite_score": 0.554, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 905, + "trace_count": 1, + "trace_ids": [ + 1103 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.785, + "match_ratio": 1.0, + "composite_score": 0.785, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 906, + "trace_count": 1, + "trace_ids": [ + 1106 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.696, + "match_ratio": 1.0, + "composite_score": 0.696, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 907, + "trace_count": 1, + "trace_ids": [ + 1107 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.759, + "match_ratio": 1.0, + "composite_score": 0.759, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 908, + "trace_count": 1, + "trace_ids": [ + 1108 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.706, + "match_ratio": 1.0, + "composite_score": 0.706, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 909, + "trace_count": 1, + "trace_ids": [ + 1111 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.558, + "match_ratio": 1.0, + "composite_score": 0.558, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 910, + "trace_count": 1, + "trace_ids": [ + 1113 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.568, + "match_ratio": 1.0, + "composite_score": 0.568, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 911, + "trace_count": 1, + "trace_ids": [ + 1115 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.587, + "match_ratio": 1.0, + "composite_score": 0.587, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 912, + "trace_count": 1, + "trace_ids": [ + 1116 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.701, + "match_ratio": 1.0, + "composite_score": 0.701, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 913, + "trace_count": 1, + "trace_ids": [ + 1117 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.724, + "match_ratio": 1.0, + "composite_score": 0.724, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 914, + "trace_count": 1, + "trace_ids": [ + 1118 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.645, + "match_ratio": 1.0, + "composite_score": 0.645, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 915, + "trace_count": 1, + "trace_ids": [ + 1119 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.606, + "match_ratio": 1.0, + "composite_score": 0.606, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 916, + "trace_count": 1, + "trace_ids": [ + 1121 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.607, + "match_ratio": 1.0, + "composite_score": 0.607, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 917, + "trace_count": 1, + "trace_ids": [ + 1123 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.63, + "match_ratio": 1.0, + "composite_score": 0.63, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 918, + "trace_count": 1, + "trace_ids": [ + 1124 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.648, + "match_ratio": 1.0, + "composite_score": 0.648, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 919, + "trace_count": 1, + "trace_ids": [ + 1126 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.598, + "match_ratio": 1.0, + "composite_score": 0.598, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 920, + "trace_count": 1, + "trace_ids": [ + 1129 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.55, + "match_ratio": 1.0, + "composite_score": 0.55, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 921, + "trace_count": 1, + "trace_ids": [ + 1132 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.799, + "match_ratio": 1.0, + "composite_score": 0.799, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 922, + "trace_count": 1, + "trace_ids": [ + 1135 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.588, + "match_ratio": 1.0, + "composite_score": 0.588, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 923, + "trace_count": 1, + "trace_ids": [ + 1136 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.678, + "match_ratio": 1.0, + "composite_score": 0.678, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 924, + "trace_count": 1, + "trace_ids": [ + 1137 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.844, + "match_ratio": 1.0, + "composite_score": 0.844, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 925, + "trace_count": 1, + "trace_ids": [ + 1138 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.662, + "match_ratio": 1.0, + "composite_score": 0.662, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 926, + "trace_count": 1, + "trace_ids": [ + 1141 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.652, + "match_ratio": 1.0, + "composite_score": 0.652, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 927, + "trace_count": 1, + "trace_ids": [ + 1143 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.564, + "match_ratio": 1.0, + "composite_score": 0.564, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 928, + "trace_count": 1, + "trace_ids": [ + 1144 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.892, + "match_ratio": 1.0, + "composite_score": 0.892, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 929, + "trace_count": 1, + "trace_ids": [ + 1147 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.568, + "match_ratio": 1.0, + "composite_score": 0.568, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 930, + "trace_count": 1, + "trace_ids": [ + 1149 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.841, + "match_ratio": 1.0, + "composite_score": 0.841, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 931, + "trace_count": 1, + "trace_ids": [ + 1155 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.882, + "match_ratio": 1.0, + "composite_score": 0.882, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 932, + "trace_count": 1, + "trace_ids": [ + 1156 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.681, + "match_ratio": 1.0, + "composite_score": 0.681, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 933, + "trace_count": 1, + "trace_ids": [ + 1158 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.599, + "match_ratio": 1.0, + "composite_score": 0.599, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 934, + "trace_count": 1, + "trace_ids": [ + 1159 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.562, + "match_ratio": 1.0, + "composite_score": 0.562, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 935, + "trace_count": 1, + "trace_ids": [ + 1162 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.76, + "match_ratio": 1.0, + "composite_score": 0.76, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 936, + "trace_count": 1, + "trace_ids": [ + 1163 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.837, + "match_ratio": 1.0, + "composite_score": 0.837, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 937, + "trace_count": 1, + "trace_ids": [ + 1165 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.734, + "match_ratio": 1.0, + "composite_score": 0.734, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 938, + "trace_count": 1, + "trace_ids": [ + 1168 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.843, + "match_ratio": 1.0, + "composite_score": 0.843, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 939, + "trace_count": 1, + "trace_ids": [ + 1172 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.783, + "match_ratio": 1.0, + "composite_score": 0.783, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 940, + "trace_count": 1, + "trace_ids": [ + 1173 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.82, + "match_ratio": 1.0, + "composite_score": 0.82, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 941, + "trace_count": 1, + "trace_ids": [ + 1174 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.621, + "match_ratio": 1.0, + "composite_score": 0.621, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 942, + "trace_count": 1, + "trace_ids": [ + 1175 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.807, + "match_ratio": 1.0, + "composite_score": 0.807, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 943, + "trace_count": 1, + "trace_ids": [ + 1177 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.683, + "match_ratio": 1.0, + "composite_score": 0.683, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 944, + "trace_count": 1, + "trace_ids": [ + 1178 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.755, + "match_ratio": 1.0, + "composite_score": 0.755, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 945, + "trace_count": 1, + "trace_ids": [ + 1181 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.794, + "match_ratio": 1.0, + "composite_score": 0.794, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 946, + "trace_count": 1, + "trace_ids": [ + 1185 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.829, + "match_ratio": 1.0, + "composite_score": 0.829, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 947, + "trace_count": 1, + "trace_ids": [ + 1194 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.826, + "match_ratio": 1.0, + "composite_score": 0.826, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 948, + "trace_count": 1, + "trace_ids": [ + 1198 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.739, + "match_ratio": 1.0, + "composite_score": 0.739, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 949, + "trace_count": 1, + "trace_ids": [ + 1201 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.768, + "match_ratio": 1.0, + "composite_score": 0.768, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 950, + "trace_count": 1, + "trace_ids": [ + 1202 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.849, + "match_ratio": 1.0, + "composite_score": 0.849, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 951, + "trace_count": 1, + "trace_ids": [ + 1207 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.776, + "match_ratio": 1.0, + "composite_score": 0.776, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 952, + "trace_count": 1, + "trace_ids": [ + 1209 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.734, + "match_ratio": 1.0, + "composite_score": 0.734, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 953, + "trace_count": 1, + "trace_ids": [ + 1212 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.759, + "match_ratio": 1.0, + "composite_score": 0.759, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 954, + "trace_count": 1, + "trace_ids": [ + 1213 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.664, + "match_ratio": 1.0, + "composite_score": 0.664, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 955, + "trace_count": 1, + "trace_ids": [ + 1216 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.586, + "match_ratio": 1.0, + "composite_score": 0.586, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 956, + "trace_count": 1, + "trace_ids": [ + 1218 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.699, + "match_ratio": 1.0, + "composite_score": 0.699, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 957, + "trace_count": 1, + "trace_ids": [ + 1220 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.812, + "match_ratio": 1.0, + "composite_score": 0.812, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 958, + "trace_count": 1, + "trace_ids": [ + 1223 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.733, + "match_ratio": 1.0, + "composite_score": 0.733, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 959, + "trace_count": 1, + "trace_ids": [ + 1244 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.871, + "match_ratio": 1.0, + "composite_score": 0.871, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 960, + "trace_count": 1, + "trace_ids": [ + 1251 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.733, + "match_ratio": 1.0, + "composite_score": 0.733, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 961, + "trace_count": 1, + "trace_ids": [ + 1253 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.726, + "match_ratio": 1.0, + "composite_score": 0.726, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 962, + "trace_count": 1, + "trace_ids": [ + 1254 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.66, + "match_ratio": 1.0, + "composite_score": 0.58, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 963, + "trace_count": 1, + "trace_ids": [ + 1259 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.718, + "match_ratio": 1.0, + "composite_score": 0.718, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 964, + "trace_count": 1, + "trace_ids": [ + 1261 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.675, + "match_ratio": 1.0, + "composite_score": 0.675, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 965, + "trace_count": 1, + "trace_ids": [ + 1263 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.734, + "match_ratio": 1.0, + "composite_score": 0.734, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 966, + "trace_count": 1, + "trace_ids": [ + 1266 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.747, + "match_ratio": 1.0, + "composite_score": 0.747, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 967, + "trace_count": 1, + "trace_ids": [ + 1268 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.639, + "match_ratio": 1.0, + "composite_score": 0.639, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 968, + "trace_count": 1, + "trace_ids": [ + 1270 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.602, + "match_ratio": 1.0, + "composite_score": 0.602, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 969, + "trace_count": 1, + "trace_ids": [ + 1272 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.697, + "match_ratio": 1.0, + "composite_score": 0.697, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 970, + "trace_count": 1, + "trace_ids": [ + 1276 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.613, + "match_ratio": 1.0, + "composite_score": 0.613, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 971, + "trace_count": 1, + "trace_ids": [ + 1279 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.796, + "match_ratio": 1.0, + "composite_score": 0.796, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 972, + "trace_count": 1, + "trace_ids": [ + 1280 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.719, + "match_ratio": 1.0, + "composite_score": 0.719, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 973, + "trace_count": 1, + "trace_ids": [ + 1281 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.828, + "match_ratio": 1.0, + "composite_score": 0.828, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 974, + "trace_count": 1, + "trace_ids": [ + 1284 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.578, + "match_ratio": 1.0, + "composite_score": 0.578, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 975, + "trace_count": 1, + "trace_ids": [ + 1289 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.585, + "match_ratio": 1.0, + "composite_score": 0.585, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 976, + "trace_count": 1, + "trace_ids": [ + 1291 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.601, + "match_ratio": 1.0, + "composite_score": 0.601, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 977, + "trace_count": 1, + "trace_ids": [ + 1293 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.707, + "match_ratio": 1.0, + "composite_score": 0.707, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 978, + "trace_count": 1, + "trace_ids": [ + 1294 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.71, + "match_ratio": 1.0, + "composite_score": 0.71, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 979, + "trace_count": 1, + "trace_ids": [ + 1295 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.599, + "match_ratio": 1.0, + "composite_score": 0.599, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 980, + "trace_count": 1, + "trace_ids": [ + 1297 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.748, + "match_ratio": 1.0, + "composite_score": 0.748, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 981, + "trace_count": 1, + "trace_ids": [ + 1299 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.812, + "match_ratio": 1.0, + "composite_score": 0.812, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 982, + "trace_count": 1, + "trace_ids": [ + 1302 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.747, + "match_ratio": 1.0, + "composite_score": 0.747, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 983, + "trace_count": 1, + "trace_ids": [ + 1304 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.586, + "match_ratio": 1.0, + "composite_score": 0.586, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 984, + "trace_count": 1, + "trace_ids": [ + 1306 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.791, + "match_ratio": 1.0, + "composite_score": 0.791, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 985, + "trace_count": 1, + "trace_ids": [ + 1309 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.767, + "match_ratio": 1.0, + "composite_score": 0.767, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 986, + "trace_count": 1, + "trace_ids": [ + 1314 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.567, + "match_ratio": 1.0, + "composite_score": 0.567, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 987, + "trace_count": 1, + "trace_ids": [ + 1317 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.737, + "match_ratio": 1.0, + "composite_score": 0.737, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 988, + "trace_count": 1, + "trace_ids": [ + 1318 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.772, + "match_ratio": 1.0, + "composite_score": 0.772, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 989, + "trace_count": 1, + "trace_ids": [ + 1321 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.622, + "match_ratio": 0.889, + "composite_score": 0.539, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 990, + "trace_count": 1, + "trace_ids": [ + 1322 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.658, + "match_ratio": 1.0, + "composite_score": 0.526, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 991, + "trace_count": 1, + "trace_ids": [ + 1327 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.718, + "match_ratio": 1.0, + "composite_score": 0.718, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 992, + "trace_count": 1, + "trace_ids": [ + 1328 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.794, + "match_ratio": 1.0, + "composite_score": 0.794, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 993, + "trace_count": 1, + "trace_ids": [ + 1329 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.719, + "match_ratio": 1.0, + "composite_score": 0.719, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 994, + "trace_count": 1, + "trace_ids": [ + 1334 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.769, + "match_ratio": 1.0, + "composite_score": 0.769, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 995, + "trace_count": 1, + "trace_ids": [ + 1336 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.751, + "match_ratio": 1.0, + "composite_score": 0.751, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 996, + "trace_count": 1, + "trace_ids": [ + 1340 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.644, + "match_ratio": 0.931, + "composite_score": 0.564, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 997, + "trace_count": 1, + "trace_ids": [ + 1341 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.645, + "match_ratio": 0.962, + "composite_score": 0.616, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 998, + "trace_count": 1, + "trace_ids": [ + 1342 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.639, + "match_ratio": 1.0, + "composite_score": 0.594, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 999, + "trace_count": 1, + "trace_ids": [ + 1344 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.662, + "match_ratio": 1.0, + "composite_score": 0.662, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1000, + "trace_count": 1, + "trace_ids": [ + 1345 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.634, + "match_ratio": 1.0, + "composite_score": 0.634, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1001, + "trace_count": 1, + "trace_ids": [ + 1348 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.67, + "match_ratio": 1.0, + "composite_score": 0.67, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1002, + "trace_count": 1, + "trace_ids": [ + 1349 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.669, + "match_ratio": 1.0, + "composite_score": 0.669, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1003, + "trace_count": 1, + "trace_ids": [ + 1350 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.633, + "match_ratio": 1.0, + "composite_score": 0.633, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1004, + "trace_count": 1, + "trace_ids": [ + 1351 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.831, + "match_ratio": 1.0, + "composite_score": 0.831, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1005, + "trace_count": 1, + "trace_ids": [ + 1354 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.71, + "match_ratio": 1.0, + "composite_score": 0.71, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1006, + "trace_count": 1, + "trace_ids": [ + 1357 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.61, + "match_ratio": 0.84, + "composite_score": 0.522, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1007, + "trace_count": 1, + "trace_ids": [ + 1359 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.848, + "match_ratio": 1.0, + "composite_score": 0.848, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1008, + "trace_count": 1, + "trace_ids": [ + 1366 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.718, + "match_ratio": 1.0, + "composite_score": 0.718, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1009, + "trace_count": 1, + "trace_ids": [ + 1369 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.597, + "match_ratio": 1.0, + "composite_score": 0.597, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1010, + "trace_count": 1, + "trace_ids": [ + 1370 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.636, + "match_ratio": 1.0, + "composite_score": 0.636, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1011, + "trace_count": 1, + "trace_ids": [ + 1372 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.765, + "match_ratio": 1.0, + "composite_score": 0.765, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1012, + "trace_count": 1, + "trace_ids": [ + 1376 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.727, + "match_ratio": 1.0, + "composite_score": 0.727, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1013, + "trace_count": 1, + "trace_ids": [ + 1382 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.78, + "match_ratio": 1.0, + "composite_score": 0.78, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1014, + "trace_count": 1, + "trace_ids": [ + 1387 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.844, + "match_ratio": 1.0, + "composite_score": 0.844, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1015, + "trace_count": 1, + "trace_ids": [ + 1392 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.627, + "match_ratio": 1.0, + "composite_score": 0.627, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1016, + "trace_count": 1, + "trace_ids": [ + 1396 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.632, + "match_ratio": 1.0, + "composite_score": 0.632, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1017, + "trace_count": 1, + "trace_ids": [ + 1397 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.55, + "match_ratio": 1.0, + "composite_score": 0.55, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1018, + "trace_count": 1, + "trace_ids": [ + 1399 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.629, + "match_ratio": 1.0, + "composite_score": 0.503, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1019, + "trace_count": 1, + "trace_ids": [ + 1401 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.67, + "match_ratio": 1.0, + "composite_score": 0.67, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1020, + "trace_count": 1, + "trace_ids": [ + 1403 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.636, + "match_ratio": 1.0, + "composite_score": 0.636, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1021, + "trace_count": 1, + "trace_ids": [ + 1419 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.623, + "match_ratio": 1.0, + "composite_score": 0.623, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1022, + "trace_count": 1, + "trace_ids": [ + 1425 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.78, + "match_ratio": 1.0, + "composite_score": 0.78, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1023, + "trace_count": 1, + "trace_ids": [ + 1430 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.574, + "match_ratio": 1.0, + "composite_score": 0.574, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1024, + "trace_count": 1, + "trace_ids": [ + 1437 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.766, + "match_ratio": 1.0, + "composite_score": 0.766, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1025, + "trace_count": 1, + "trace_ids": [ + 1442 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.708, + "match_ratio": 1.0, + "composite_score": 0.708, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1026, + "trace_count": 1, + "trace_ids": [ + 1446 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.686, + "match_ratio": 1.0, + "composite_score": 0.686, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1027, + "trace_count": 1, + "trace_ids": [ + 1447 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.765, + "match_ratio": 1.0, + "composite_score": 0.765, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1028, + "trace_count": 1, + "trace_ids": [ + 1450 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.744, + "match_ratio": 1.0, + "composite_score": 0.744, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1029, + "trace_count": 1, + "trace_ids": [ + 1454 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.592, + "match_ratio": 1.0, + "composite_score": 0.592, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1030, + "trace_count": 1, + "trace_ids": [ + 1455 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.657, + "match_ratio": 1.0, + "composite_score": 0.657, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1031, + "trace_count": 1, + "trace_ids": [ + 1460 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "avg_similarity": 0.579, + "match_ratio": 1.0, + "composite_score": 0.579, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1032, + "trace_count": 1, + "trace_ids": [ + 1463 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.557, + "match_ratio": 1.0, + "composite_score": 0.557, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1033, + "trace_count": 1, + "trace_ids": [ + 1465 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.672, + "match_ratio": 1.0, + "composite_score": 0.672, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1034, + "trace_count": 1, + "trace_ids": [ + 1466 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.823, + "match_ratio": 1.0, + "composite_score": 0.823, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1035, + "trace_count": 1, + "trace_ids": [ + 1470 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.561, + "match_ratio": 1.0, + "composite_score": 0.561, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1036, + "trace_count": 1, + "trace_ids": [ + 1474 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.713, + "match_ratio": 1.0, + "composite_score": 0.713, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1037, + "trace_count": 1, + "trace_ids": [ + 1475 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.609, + "match_ratio": 1.0, + "composite_score": 0.609, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1038, + "trace_count": 1, + "trace_ids": [ + 1476 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.651, + "match_ratio": 1.0, + "composite_score": 0.651, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1039, + "trace_count": 1, + "trace_ids": [ + 1478 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.842, + "match_ratio": 1.0, + "composite_score": 0.842, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1040, + "trace_count": 1, + "trace_ids": [ + 1488 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.708, + "match_ratio": 1.0, + "composite_score": 0.708, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1041, + "trace_count": 1, + "trace_ids": [ + 1492 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.672, + "match_ratio": 1.0, + "composite_score": 0.672, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1042, + "trace_count": 1, + "trace_ids": [ + 1493 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.622, + "match_ratio": 1.0, + "composite_score": 0.622, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1043, + "trace_count": 1, + "trace_ids": [ + 1494 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.669, + "match_ratio": 1.0, + "composite_score": 0.669, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1044, + "trace_count": 1, + "trace_ids": [ + 1496 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.736, + "match_ratio": 1.0, + "composite_score": 0.736, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1045, + "trace_count": 1, + "trace_ids": [ + 1499 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.748, + "match_ratio": 1.0, + "composite_score": 0.748, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1046, + "trace_count": 1, + "trace_ids": [ + 1501 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.573, + "match_ratio": 1.0, + "composite_score": 0.573, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1047, + "trace_count": 1, + "trace_ids": [ + 1502 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.625, + "match_ratio": 0.846, + "composite_score": 0.568, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1048, + "trace_count": 1, + "trace_ids": [ + 1504 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.672, + "match_ratio": 1.0, + "composite_score": 0.672, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1049, + "trace_count": 1, + "trace_ids": [ + 1505 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.755, + "match_ratio": 1.0, + "composite_score": 0.755, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1050, + "trace_count": 1, + "trace_ids": [ + 1506 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.706, + "match_ratio": 1.0, + "composite_score": 0.706, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1051, + "trace_count": 1, + "trace_ids": [ + 1507 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.615, + "match_ratio": 1.0, + "composite_score": 0.615, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1052, + "trace_count": 1, + "trace_ids": [ + 1508 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.636, + "match_ratio": 1.0, + "composite_score": 0.636, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1053, + "trace_count": 1, + "trace_ids": [ + 1509 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.762, + "match_ratio": 1.0, + "composite_score": 0.762, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1054, + "trace_count": 1, + "trace_ids": [ + 1511 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.662, + "match_ratio": 1.0, + "composite_score": 0.662, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1055, + "trace_count": 1, + "trace_ids": [ + 1512 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.635, + "match_ratio": 1.0, + "composite_score": 0.635, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1056, + "trace_count": 1, + "trace_ids": [ + 1513 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.571, + "match_ratio": 1.0, + "composite_score": 0.503, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1057, + "trace_count": 1, + "trace_ids": [ + 1516 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.556, + "match_ratio": 1.0, + "composite_score": 0.556, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1058, + "trace_count": 1, + "trace_ids": [ + 1521 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.607, + "match_ratio": 1.0, + "composite_score": 0.607, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1059, + "trace_count": 1, + "trace_ids": [ + 1522 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.59, + "match_ratio": 1.0, + "composite_score": 0.59, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1060, + "trace_count": 1, + "trace_ids": [ + 1523 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.724, + "match_ratio": 1.0, + "composite_score": 0.724, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1061, + "trace_count": 1, + "trace_ids": [ + 1527 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.752, + "match_ratio": 1.0, + "composite_score": 0.752, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1062, + "trace_count": 1, + "trace_ids": [ + 1531 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.599, + "match_ratio": 1.0, + "composite_score": 0.509, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1063, + "trace_count": 1, + "trace_ids": [ + 1533 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.58, + "match_ratio": 1.0, + "composite_score": 0.58, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1064, + "trace_count": 1, + "trace_ids": [ + 1535 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.693, + "match_ratio": 0.923, + "composite_score": 0.629, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1065, + "trace_count": 1, + "trace_ids": [ + 1536 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.728, + "match_ratio": 1.0, + "composite_score": 0.728, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1066, + "trace_count": 1, + "trace_ids": [ + 1537 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.619, + "match_ratio": 1.0, + "composite_score": 0.619, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1067, + "trace_count": 1, + "trace_ids": [ + 1542 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.625, + "match_ratio": 1.0, + "composite_score": 0.625, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1068, + "trace_count": 1, + "trace_ids": [ + 1543 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.624, + "match_ratio": 1.0, + "composite_score": 0.624, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1069, + "trace_count": 1, + "trace_ids": [ + 1547 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.605, + "match_ratio": 1.0, + "composite_score": 0.605, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1070, + "trace_count": 1, + "trace_ids": [ + 1549 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.67, + "match_ratio": 1.0, + "composite_score": 0.67, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1071, + "trace_count": 1, + "trace_ids": [ + 1551 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.588, + "match_ratio": 1.0, + "composite_score": 0.588, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1072, + "trace_count": 1, + "trace_ids": [ + 1552 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.703, + "match_ratio": 1.0, + "composite_score": 0.703, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1073, + "trace_count": 1, + "trace_ids": [ + 1560 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.814, + "match_ratio": 1.0, + "composite_score": 0.814, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1074, + "trace_count": 1, + "trace_ids": [ + 1561 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.827, + "match_ratio": 1.0, + "composite_score": 0.827, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1075, + "trace_count": 1, + "trace_ids": [ + 1564 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.834, + "match_ratio": 1.0, + "composite_score": 0.834, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1076, + "trace_count": 1, + "trace_ids": [ + 1567 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.843, + "match_ratio": 1.0, + "composite_score": 0.843, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1077, + "trace_count": 1, + "trace_ids": [ + 1569 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.855, + "match_ratio": 1.0, + "composite_score": 0.855, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1078, + "trace_count": 1, + "trace_ids": [ + 1570 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.762, + "match_ratio": 1.0, + "composite_score": 0.762, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1079, + "trace_count": 1, + "trace_ids": [ + 1572 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.658, + "match_ratio": 1.0, + "composite_score": 0.658, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1080, + "trace_count": 1, + "trace_ids": [ + 1580 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.693, + "match_ratio": 1.0, + "composite_score": 0.693, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1081, + "trace_count": 1, + "trace_ids": [ + 1585 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.596, + "match_ratio": 1.0, + "composite_score": 0.596, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1082, + "trace_count": 1, + "trace_ids": [ + 1591 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.611, + "match_ratio": 1.0, + "composite_score": 0.611, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1083, + "trace_count": 1, + "trace_ids": [ + 1597 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.606, + "match_ratio": 1.0, + "composite_score": 0.606, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1084, + "trace_count": 1, + "trace_ids": [ + 1603 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.67, + "match_ratio": 1.0, + "composite_score": 0.67, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1085, + "trace_count": 1, + "trace_ids": [ + 1606 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.583, + "match_ratio": 1.0, + "composite_score": 0.583, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1086, + "trace_count": 1, + "trace_ids": [ + 1608 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.667, + "match_ratio": 1.0, + "composite_score": 0.667, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1087, + "trace_count": 1, + "trace_ids": [ + 1610 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.669, + "match_ratio": 1.0, + "composite_score": 0.669, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1088, + "trace_count": 1, + "trace_ids": [ + 1614 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.695, + "match_ratio": 1.0, + "composite_score": 0.695, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1089, + "trace_count": 1, + "trace_ids": [ + 1616 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.652, + "match_ratio": 1.0, + "composite_score": 0.652, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1090, + "trace_count": 1, + "trace_ids": [ + 1617 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.753, + "match_ratio": 1.0, + "composite_score": 0.753, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1091, + "trace_count": 1, + "trace_ids": [ + 1619 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.581, + "match_ratio": 1.0, + "composite_score": 0.581, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1092, + "trace_count": 1, + "trace_ids": [ + 1620 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.654, + "match_ratio": 1.0, + "composite_score": 0.654, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1093, + "trace_count": 1, + "trace_ids": [ + 1623 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.696, + "match_ratio": 1.0, + "composite_score": 0.696, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1094, + "trace_count": 1, + "trace_ids": [ + 1624 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.674, + "match_ratio": 1.0, + "composite_score": 0.674, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1095, + "trace_count": 1, + "trace_ids": [ + 1629 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.735, + "match_ratio": 1.0, + "composite_score": 0.735, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1096, + "trace_count": 1, + "trace_ids": [ + 1630 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.638, + "match_ratio": 1.0, + "composite_score": 0.638, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1097, + "trace_count": 1, + "trace_ids": [ + 1632 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.748, + "match_ratio": 1.0, + "composite_score": 0.748, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1098, + "trace_count": 1, + "trace_ids": [ + 1633 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.837, + "match_ratio": 1.0, + "composite_score": 0.837, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1099, + "trace_count": 1, + "trace_ids": [ + 1634 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.578, + "match_ratio": 1.0, + "composite_score": 0.578, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1100, + "trace_count": 1, + "trace_ids": [ + 1635 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.835, + "match_ratio": 1.0, + "composite_score": 0.835, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1101, + "trace_count": 1, + "trace_ids": [ + 1638 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.683, + "match_ratio": 1.0, + "composite_score": 0.683, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1102, + "trace_count": 1, + "trace_ids": [ + 1640 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.581, + "match_ratio": 1.0, + "composite_score": 0.581, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1103, + "trace_count": 1, + "trace_ids": [ + 1642 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.65, + "match_ratio": 1.0, + "composite_score": 0.65, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1104, + "trace_count": 1, + "trace_ids": [ + 1648 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.572, + "match_ratio": 1.0, + "composite_score": 0.572, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1105, + "trace_count": 1, + "trace_ids": [ + 1653 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.552, + "match_ratio": 1.0, + "composite_score": 0.552, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1106, + "trace_count": 1, + "trace_ids": [ + 1654 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.627, + "match_ratio": 1.0, + "composite_score": 0.627, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1107, + "trace_count": 1, + "trace_ids": [ + 1655 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.688, + "match_ratio": 1.0, + "composite_score": 0.688, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1108, + "trace_count": 1, + "trace_ids": [ + 1658 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.851, + "match_ratio": 1.0, + "composite_score": 0.851, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1109, + "trace_count": 1, + "trace_ids": [ + 1664 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.556, + "match_ratio": 1.0, + "composite_score": 0.556, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1110, + "trace_count": 1, + "trace_ids": [ + 1665 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.651, + "match_ratio": 1.0, + "composite_score": 0.651, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1111, + "trace_count": 1, + "trace_ids": [ + 1667 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.732, + "match_ratio": 1.0, + "composite_score": 0.732, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1112, + "trace_count": 1, + "trace_ids": [ + 1669 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.65, + "match_ratio": 0.818, + "composite_score": 0.579, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1113, + "trace_count": 1, + "trace_ids": [ + 1673 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.624, + "match_ratio": 1.0, + "composite_score": 0.624, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1114, + "trace_count": 1, + "trace_ids": [ + 1675 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.711, + "match_ratio": 1.0, + "composite_score": 0.711, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1115, + "trace_count": 1, + "trace_ids": [ + 1677 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.619, + "match_ratio": 1.0, + "composite_score": 0.619, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1116, + "trace_count": 1, + "trace_ids": [ + 1678 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.692, + "match_ratio": 1.0, + "composite_score": 0.692, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1117, + "trace_count": 1, + "trace_ids": [ + 1680 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.823, + "match_ratio": 1.0, + "composite_score": 0.823, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1118, + "trace_count": 1, + "trace_ids": [ + 1684 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.755, + "match_ratio": 1.0, + "composite_score": 0.755, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1119, + "trace_count": 1, + "trace_ids": [ + 1686 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.792, + "match_ratio": 1.0, + "composite_score": 0.792, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1120, + "trace_count": 1, + "trace_ids": [ + 1687 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.684, + "match_ratio": 1.0, + "composite_score": 0.684, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1121, + "trace_count": 1, + "trace_ids": [ + 1688 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.756, + "match_ratio": 1.0, + "composite_score": 0.756, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1122, + "trace_count": 1, + "trace_ids": [ + 1691 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.849, + "match_ratio": 1.0, + "composite_score": 0.849, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1123, + "trace_count": 1, + "trace_ids": [ + 1692 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.594, + "match_ratio": 1.0, + "composite_score": 0.594, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1124, + "trace_count": 1, + "trace_ids": [ + 1696 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.809, + "match_ratio": 1.0, + "composite_score": 0.809, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1125, + "trace_count": 1, + "trace_ids": [ + 1697 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.776, + "match_ratio": 1.0, + "composite_score": 0.776, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1126, + "trace_count": 1, + "trace_ids": [ + 1698 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.76, + "match_ratio": 1.0, + "composite_score": 0.76, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1127, + "trace_count": 1, + "trace_ids": [ + 1701 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.614, + "match_ratio": 1.0, + "composite_score": 0.614, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1128, + "trace_count": 1, + "trace_ids": [ + 1702 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.64, + "match_ratio": 1.0, + "composite_score": 0.64, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1129, + "trace_count": 1, + "trace_ids": [ + 1703 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.583, + "match_ratio": 1.0, + "composite_score": 0.583, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1130, + "trace_count": 1, + "trace_ids": [ + 1706 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.611, + "match_ratio": 1.0, + "composite_score": 0.611, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1131, + "trace_count": 1, + "trace_ids": [ + 1709 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.738, + "match_ratio": 1.0, + "composite_score": 0.738, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1132, + "trace_count": 1, + "trace_ids": [ + 1713 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.835, + "match_ratio": 1.0, + "composite_score": 0.835, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1133, + "trace_count": 1, + "trace_ids": [ + 1716 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.832, + "match_ratio": 1.0, + "composite_score": 0.832, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1134, + "trace_count": 1, + "trace_ids": [ + 1719 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.886, + "match_ratio": 1.0, + "composite_score": 0.886, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1135, + "trace_count": 1, + "trace_ids": [ + 1725 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.773, + "match_ratio": 1.0, + "composite_score": 0.773, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1136, + "trace_count": 1, + "trace_ids": [ + 1728 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.714, + "match_ratio": 1.0, + "composite_score": 0.714, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1137, + "trace_count": 1, + "trace_ids": [ + 1730 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.611, + "match_ratio": 1.0, + "composite_score": 0.611, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1138, + "trace_count": 1, + "trace_ids": [ + 1731 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.602, + "match_ratio": 1.0, + "composite_score": 0.602, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1139, + "trace_count": 1, + "trace_ids": [ + 1732 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.636, + "match_ratio": 1.0, + "composite_score": 0.636, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1140, + "trace_count": 1, + "trace_ids": [ + 1733 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.55, + "match_ratio": 1.0, + "composite_score": 0.55, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1141, + "trace_count": 1, + "trace_ids": [ + 1734 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.666, + "match_ratio": 1.0, + "composite_score": 0.666, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1142, + "trace_count": 1, + "trace_ids": [ + 1735 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.763, + "match_ratio": 1.0, + "composite_score": 0.763, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1143, + "trace_count": 1, + "trace_ids": [ + 1737 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.676, + "match_ratio": 1.0, + "composite_score": 0.676, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1144, + "trace_count": 1, + "trace_ids": [ + 1739 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.558, + "match_ratio": 1.0, + "composite_score": 0.558, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1145, + "trace_count": 1, + "trace_ids": [ + 1748 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.74, + "match_ratio": 1.0, + "composite_score": 0.74, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1146, + "trace_count": 1, + "trace_ids": [ + 1749 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.565, + "match_ratio": 1.0, + "composite_score": 0.565, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1147, + "trace_count": 1, + "trace_ids": [ + 1750 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.648, + "match_ratio": 0.917, + "composite_score": 0.616, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1148, + "trace_count": 1, + "trace_ids": [ + 1751 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.624, + "match_ratio": 0.889, + "composite_score": 0.582, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1149, + "trace_count": 1, + "trace_ids": [ + 1759 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.63, + "match_ratio": 1.0, + "composite_score": 0.63, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1150, + "trace_count": 1, + "trace_ids": [ + 1761 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.661, + "match_ratio": 0.786, + "composite_score": 0.548, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1151, + "trace_count": 1, + "trace_ids": [ + 1763 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.555, + "match_ratio": 1.0, + "composite_score": 0.555, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1152, + "trace_count": 1, + "trace_ids": [ + 1768 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.647, + "match_ratio": 1.0, + "composite_score": 0.647, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1153, + "trace_count": 1, + "trace_ids": [ + 1771 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.61, + "match_ratio": 1.0, + "composite_score": 0.573, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1154, + "trace_count": 1, + "trace_ids": [ + 1772 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.656, + "match_ratio": 1.0, + "composite_score": 0.656, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1155, + "trace_count": 1, + "trace_ids": [ + 1774 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.68, + "match_ratio": 1.0, + "composite_score": 0.612, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1156, + "trace_count": 1, + "trace_ids": [ + 1777 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.655, + "match_ratio": 1.0, + "composite_score": 0.655, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1157, + "trace_count": 1, + "trace_ids": [ + 1778 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.8, + "match_ratio": 1.0, + "composite_score": 0.8, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1158, + "trace_count": 1, + "trace_ids": [ + 1779 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.718, + "match_ratio": 1.0, + "composite_score": 0.718, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1159, + "trace_count": 1, + "trace_ids": [ + 1780 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.834, + "match_ratio": 1.0, + "composite_score": 0.834, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1160, + "trace_count": 1, + "trace_ids": [ + 1786 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.726, + "match_ratio": 1.0, + "composite_score": 0.726, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1161, + "trace_count": 1, + "trace_ids": [ + 1787 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.559, + "match_ratio": 1.0, + "composite_score": 0.559, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1162, + "trace_count": 1, + "trace_ids": [ + 1789 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.622, + "match_ratio": 1.0, + "composite_score": 0.622, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1163, + "trace_count": 1, + "trace_ids": [ + 1790 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.702, + "match_ratio": 1.0, + "composite_score": 0.702, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1164, + "trace_count": 1, + "trace_ids": [ + 1792 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.766, + "match_ratio": 1.0, + "composite_score": 0.766, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1165, + "trace_count": 1, + "trace_ids": [ + 1793 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.677, + "match_ratio": 1.0, + "composite_score": 0.677, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1166, + "trace_count": 1, + "trace_ids": [ + 1794 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.658, + "match_ratio": 1.0, + "composite_score": 0.658, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1167, + "trace_count": 1, + "trace_ids": [ + 1795 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.639, + "match_ratio": 1.0, + "composite_score": 0.639, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1168, + "trace_count": 1, + "trace_ids": [ + 1796 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.765, + "match_ratio": 1.0, + "composite_score": 0.765, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1169, + "trace_count": 1, + "trace_ids": [ + 1798 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.703, + "match_ratio": 1.0, + "composite_score": 0.703, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1170, + "trace_count": 1, + "trace_ids": [ + 1800 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.749, + "match_ratio": 1.0, + "composite_score": 0.749, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1171, + "trace_count": 1, + "trace_ids": [ + 1803 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.846, + "match_ratio": 1.0, + "composite_score": 0.846, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1172, + "trace_count": 1, + "trace_ids": [ + 1804 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.892, + "match_ratio": 1.0, + "composite_score": 0.892, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1173, + "trace_count": 1, + "trace_ids": [ + 1806 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.599, + "match_ratio": 1.0, + "composite_score": 0.599, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1174, + "trace_count": 1, + "trace_ids": [ + 1807 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.691, + "match_ratio": 1.0, + "composite_score": 0.691, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1175, + "trace_count": 1, + "trace_ids": [ + 1809 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.711, + "match_ratio": 1.0, + "composite_score": 0.711, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1176, + "trace_count": 1, + "trace_ids": [ + 1811 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.701, + "match_ratio": 1.0, + "composite_score": 0.701, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1177, + "trace_count": 1, + "trace_ids": [ + 1813 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.577, + "match_ratio": 1.0, + "composite_score": 0.577, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1178, + "trace_count": 1, + "trace_ids": [ + 1815 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.826, + "match_ratio": 1.0, + "composite_score": 0.826, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1179, + "trace_count": 1, + "trace_ids": [ + 1817 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.762, + "match_ratio": 1.0, + "composite_score": 0.762, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1180, + "trace_count": 1, + "trace_ids": [ + 1821 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.894, + "match_ratio": 1.0, + "composite_score": 0.894, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1181, + "trace_count": 1, + "trace_ids": [ + 1822 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.828, + "match_ratio": 1.0, + "composite_score": 0.828, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1182, + "trace_count": 1, + "trace_ids": [ + 1824 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.692, + "match_ratio": 1.0, + "composite_score": 0.692, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1183, + "trace_count": 1, + "trace_ids": [ + 1825 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.91, + "match_ratio": 1.0, + "composite_score": 0.91, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1184, + "trace_count": 1, + "trace_ids": [ + 1827 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.767, + "match_ratio": 1.0, + "composite_score": 0.767, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1185, + "trace_count": 1, + "trace_ids": [ + 1830 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.636, + "match_ratio": 0.667, + "composite_score": 0.509, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1186, + "trace_count": 1, + "trace_ids": [ + 1833 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.554, + "match_ratio": 1.0, + "composite_score": 0.554, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1187, + "trace_count": 1, + "trace_ids": [ + 1835 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.737, + "match_ratio": 1.0, + "composite_score": 0.737, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1188, + "trace_count": 1, + "trace_ids": [ + 1836 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.712, + "match_ratio": 1.0, + "composite_score": 0.712, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1189, + "trace_count": 1, + "trace_ids": [ + 1838 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.684, + "match_ratio": 1.0, + "composite_score": 0.684, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1190, + "trace_count": 1, + "trace_ids": [ + 1841 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.826, + "match_ratio": 1.0, + "composite_score": 0.826, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1191, + "trace_count": 1, + "trace_ids": [ + 1845 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.599, + "match_ratio": 1.0, + "composite_score": 0.599, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1192, + "trace_count": 1, + "trace_ids": [ + 1851 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.873, + "match_ratio": 1.0, + "composite_score": 0.873, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1193, + "trace_count": 1, + "trace_ids": [ + 1856 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.708, + "match_ratio": 1.0, + "composite_score": 0.708, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1194, + "trace_count": 1, + "trace_ids": [ + 1858 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.88, + "match_ratio": 1.0, + "composite_score": 0.88, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1195, + "trace_count": 1, + "trace_ids": [ + 1860 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.812, + "match_ratio": 1.0, + "composite_score": 0.812, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1196, + "trace_count": 1, + "trace_ids": [ + 1861 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.686, + "match_ratio": 1.0, + "composite_score": 0.686, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1197, + "trace_count": 1, + "trace_ids": [ + 1862 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.897, + "match_ratio": 1.0, + "composite_score": 0.897, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1198, + "trace_count": 1, + "trace_ids": [ + 1864 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.85, + "match_ratio": 1.0, + "composite_score": 0.85, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1199, + "trace_count": 1, + "trace_ids": [ + 1865 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.694, + "match_ratio": 0.714, + "composite_score": 0.575, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1200, + "trace_count": 1, + "trace_ids": [ + 1869 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.571, + "match_ratio": 1.0, + "composite_score": 0.571, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1201, + "trace_count": 1, + "trace_ids": [ + 1871 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.799, + "match_ratio": 1.0, + "composite_score": 0.799, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1202, + "trace_count": 1, + "trace_ids": [ + 1873 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.717, + "match_ratio": 1.0, + "composite_score": 0.717, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1203, + "trace_count": 1, + "trace_ids": [ + 1875 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.728, + "match_ratio": 1.0, + "composite_score": 0.728, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1204, + "trace_count": 1, + "trace_ids": [ + 1878 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.605, + "match_ratio": 1.0, + "composite_score": 0.605, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1205, + "trace_count": 1, + "trace_ids": [ + 1880 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.573, + "match_ratio": 1.0, + "composite_score": 0.573, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1206, + "trace_count": 1, + "trace_ids": [ + 1881 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.682, + "match_ratio": 1.0, + "composite_score": 0.682, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1207, + "trace_count": 1, + "trace_ids": [ + 1882 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.726, + "match_ratio": 1.0, + "composite_score": 0.726, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1208, + "trace_count": 1, + "trace_ids": [ + 1883 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.677, + "match_ratio": 1.0, + "composite_score": 0.677, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1209, + "trace_count": 1, + "trace_ids": [ + 1884 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.756, + "match_ratio": 1.0, + "composite_score": 0.756, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1210, + "trace_count": 1, + "trace_ids": [ + 1887 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.641, + "match_ratio": 1.0, + "composite_score": 0.641, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1211, + "trace_count": 1, + "trace_ids": [ + 1888 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.81, + "match_ratio": 1.0, + "composite_score": 0.81, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1212, + "trace_count": 1, + "trace_ids": [ + 1894 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.63, + "match_ratio": 1.0, + "composite_score": 0.63, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1213, + "trace_count": 1, + "trace_ids": [ + 1895 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.665, + "match_ratio": 1.0, + "composite_score": 0.665, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1214, + "trace_count": 1, + "trace_ids": [ + 1897 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.559, + "match_ratio": 1.0, + "composite_score": 0.559, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1215, + "trace_count": 1, + "trace_ids": [ + 1898 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.588, + "match_ratio": 1.0, + "composite_score": 0.588, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1216, + "trace_count": 1, + "trace_ids": [ + 1899 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.744, + "match_ratio": 1.0, + "composite_score": 0.744, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1217, + "trace_count": 1, + "trace_ids": [ + 1904 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.701, + "match_ratio": 1.0, + "composite_score": 0.701, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1218, + "trace_count": 1, + "trace_ids": [ + 1910 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.576, + "match_ratio": 1.0, + "composite_score": 0.576, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1219, + "trace_count": 1, + "trace_ids": [ + 1912 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.558, + "match_ratio": 1.0, + "composite_score": 0.558, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1220, + "trace_count": 1, + "trace_ids": [ + 1914 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.646, + "match_ratio": 1.0, + "composite_score": 0.646, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1221, + "trace_count": 1, + "trace_ids": [ + 1924 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.672, + "match_ratio": 1.0, + "composite_score": 0.672, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1222, + "trace_count": 1, + "trace_ids": [ + 1927 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.676, + "match_ratio": 1.0, + "composite_score": 0.676, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1223, + "trace_count": 1, + "trace_ids": [ + 1931 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.751, + "match_ratio": 1.0, + "composite_score": 0.751, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1224, + "trace_count": 1, + "trace_ids": [ + 1933 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.848, + "match_ratio": 1.0, + "composite_score": 0.848, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1225, + "trace_count": 1, + "trace_ids": [ + 1935 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.787, + "match_ratio": 1.0, + "composite_score": 0.787, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1226, + "trace_count": 1, + "trace_ids": [ + 1936 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.65, + "match_ratio": 1.0, + "composite_score": 0.65, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1227, + "trace_count": 1, + "trace_ids": [ + 1937 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.64, + "match_ratio": 1.0, + "composite_score": 0.64, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1228, + "trace_count": 1, + "trace_ids": [ + 1939 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.823, + "match_ratio": 1.0, + "composite_score": 0.823, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1229, + "trace_count": 1, + "trace_ids": [ + 1940 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.718, + "match_ratio": 1.0, + "composite_score": 0.718, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1230, + "trace_count": 1, + "trace_ids": [ + 1944 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.837, + "match_ratio": 1.0, + "composite_score": 0.837, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1231, + "trace_count": 1, + "trace_ids": [ + 1946 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.582, + "match_ratio": 1.0, + "composite_score": 0.582, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1232, + "trace_count": 1, + "trace_ids": [ + 1949 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.777, + "match_ratio": 1.0, + "composite_score": 0.777, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1233, + "trace_count": 1, + "trace_ids": [ + 1952 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.618, + "match_ratio": 1.0, + "composite_score": 0.618, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1234, + "trace_count": 1, + "trace_ids": [ + 1953 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.691, + "match_ratio": 1.0, + "composite_score": 0.691, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1235, + "trace_count": 1, + "trace_ids": [ + 1959 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.579, + "match_ratio": 1.0, + "composite_score": 0.579, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1236, + "trace_count": 1, + "trace_ids": [ + 1960 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.619, + "match_ratio": 1.0, + "composite_score": 0.619, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1237, + "trace_count": 1, + "trace_ids": [ + 1963 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.6, + "match_ratio": 1.0, + "composite_score": 0.6, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1238, + "trace_count": 1, + "trace_ids": [ + 1966 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.602, + "match_ratio": 1.0, + "composite_score": 0.602, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1239, + "trace_count": 1, + "trace_ids": [ + 1972 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.61, + "match_ratio": 1.0, + "composite_score": 0.61, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1240, + "trace_count": 1, + "trace_ids": [ + 1975 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.666, + "match_ratio": 1.0, + "composite_score": 0.666, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1241, + "trace_count": 1, + "trace_ids": [ + 1977 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.619, + "match_ratio": 1.0, + "composite_score": 0.619, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1242, + "trace_count": 1, + "trace_ids": [ + 1980 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.729, + "match_ratio": 1.0, + "composite_score": 0.729, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1243, + "trace_count": 1, + "trace_ids": [ + 1982 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.722, + "match_ratio": 1.0, + "composite_score": 0.722, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1244, + "trace_count": 1, + "trace_ids": [ + 1983 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.597, + "match_ratio": 1.0, + "composite_score": 0.597, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1245, + "trace_count": 1, + "trace_ids": [ + 1984 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.62, + "match_ratio": 1.0, + "composite_score": 0.62, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1246, + "trace_count": 1, + "trace_ids": [ + 1988 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.838, + "match_ratio": 1.0, + "composite_score": 0.838, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1247, + "trace_count": 1, + "trace_ids": [ + 1989 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.738, + "match_ratio": 1.0, + "composite_score": 0.738, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1248, + "trace_count": 1, + "trace_ids": [ + 1990 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.708, + "match_ratio": 1.0, + "composite_score": 0.708, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1249, + "trace_count": 1, + "trace_ids": [ + 1991 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.67, + "match_ratio": 1.0, + "composite_score": 0.67, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1250, + "trace_count": 1, + "trace_ids": [ + 1993 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.738, + "match_ratio": 1.0, + "composite_score": 0.738, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1251, + "trace_count": 1, + "trace_ids": [ + 1995 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.707, + "match_ratio": 1.0, + "composite_score": 0.707, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1252, + "trace_count": 1, + "trace_ids": [ + 2000 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.717, + "match_ratio": 1.0, + "composite_score": 0.717, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1253, + "trace_count": 1, + "trace_ids": [ + 2002 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.746, + "match_ratio": 1.0, + "composite_score": 0.746, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1254, + "trace_count": 1, + "trace_ids": [ + 2003 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.599, + "match_ratio": 1.0, + "composite_score": 0.599, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1255, + "trace_count": 1, + "trace_ids": [ + 2004 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.674, + "match_ratio": 1.0, + "composite_score": 0.674, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1256, + "trace_count": 1, + "trace_ids": [ + 2006 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.565, + "match_ratio": 1.0, + "composite_score": 0.565, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1257, + "trace_count": 1, + "trace_ids": [ + 2007 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.609, + "match_ratio": 1.0, + "composite_score": 0.609, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1258, + "trace_count": 1, + "trace_ids": [ + 2009 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.755, + "match_ratio": 1.0, + "composite_score": 0.755, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1259, + "trace_count": 1, + "trace_ids": [ + 2012 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.707, + "match_ratio": 1.0, + "composite_score": 0.707, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1260, + "trace_count": 1, + "trace_ids": [ + 2013 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.667, + "match_ratio": 1.0, + "composite_score": 0.667, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1261, + "trace_count": 1, + "trace_ids": [ + 2016 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.619, + "match_ratio": 1.0, + "composite_score": 0.619, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1262, + "trace_count": 1, + "trace_ids": [ + 2018 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.685, + "match_ratio": 1.0, + "composite_score": 0.685, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1263, + "trace_count": 1, + "trace_ids": [ + 2019 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.803, + "match_ratio": 1.0, + "composite_score": 0.803, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1264, + "trace_count": 1, + "trace_ids": [ + 2023 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.858, + "match_ratio": 1.0, + "composite_score": 0.858, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1265, + "trace_count": 1, + "trace_ids": [ + 2025 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.884, + "match_ratio": 1.0, + "composite_score": 0.884, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1266, + "trace_count": 1, + "trace_ids": [ + 2026 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.775, + "match_ratio": 1.0, + "composite_score": 0.775, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1267, + "trace_count": 1, + "trace_ids": [ + 2027 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.802, + "match_ratio": 1.0, + "composite_score": 0.802, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1268, + "trace_count": 1, + "trace_ids": [ + 2030 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.687, + "match_ratio": 1.0, + "composite_score": 0.687, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1269, + "trace_count": 1, + "trace_ids": [ + 2032 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.827, + "match_ratio": 1.0, + "composite_score": 0.827, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1270, + "trace_count": 1, + "trace_ids": [ + 2034 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.71, + "match_ratio": 1.0, + "composite_score": 0.71, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1271, + "trace_count": 1, + "trace_ids": [ + 2037 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.602, + "match_ratio": 1.0, + "composite_score": 0.602, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1272, + "trace_count": 1, + "trace_ids": [ + 2040 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.779, + "match_ratio": 1.0, + "composite_score": 0.779, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1273, + "trace_count": 1, + "trace_ids": [ + 2046 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.926, + "match_ratio": 1.0, + "composite_score": 0.926, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1274, + "trace_count": 1, + "trace_ids": [ + 2049 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.789, + "match_ratio": 1.0, + "composite_score": 0.789, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1275, + "trace_count": 1, + "trace_ids": [ + 2050 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.895, + "match_ratio": 1.0, + "composite_score": 0.895, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1276, + "trace_count": 1, + "trace_ids": [ + 2051 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.746, + "match_ratio": 1.0, + "composite_score": 0.746, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1277, + "trace_count": 1, + "trace_ids": [ + 2054 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.761, + "match_ratio": 1.0, + "composite_score": 0.761, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1278, + "trace_count": 1, + "trace_ids": [ + 2056 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.767, + "match_ratio": 1.0, + "composite_score": 0.767, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1279, + "trace_count": 1, + "trace_ids": [ + 2057 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.795, + "match_ratio": 1.0, + "composite_score": 0.795, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1280, + "trace_count": 1, + "trace_ids": [ + 2058 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.853, + "match_ratio": 1.0, + "composite_score": 0.853, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1281, + "trace_count": 1, + "trace_ids": [ + 2062 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.703, + "match_ratio": 1.0, + "composite_score": 0.703, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1282, + "trace_count": 1, + "trace_ids": [ + 2066 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.773, + "match_ratio": 1.0, + "composite_score": 0.773, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1283, + "trace_count": 1, + "trace_ids": [ + 2067 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.677, + "match_ratio": 1.0, + "composite_score": 0.677, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1284, + "trace_count": 1, + "trace_ids": [ + 2068 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.566, + "match_ratio": 1.0, + "composite_score": 0.566, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1285, + "trace_count": 1, + "trace_ids": [ + 2071 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.819, + "match_ratio": 1.0, + "composite_score": 0.819, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1286, + "trace_count": 1, + "trace_ids": [ + 2074 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.838, + "match_ratio": 1.0, + "composite_score": 0.838, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1287, + "trace_count": 1, + "trace_ids": [ + 2075 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.586, + "match_ratio": 1.0, + "composite_score": 0.586, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1288, + "trace_count": 1, + "trace_ids": [ + 2076 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.673, + "match_ratio": 1.0, + "composite_score": 0.673, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1289, + "trace_count": 1, + "trace_ids": [ + 2080 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.666, + "match_ratio": 1.0, + "composite_score": 0.666, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1290, + "trace_count": 1, + "trace_ids": [ + 2081 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.863, + "match_ratio": 1.0, + "composite_score": 0.863, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1291, + "trace_count": 1, + "trace_ids": [ + 2084 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.774, + "match_ratio": 1.0, + "composite_score": 0.774, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1292, + "trace_count": 1, + "trace_ids": [ + 2087 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.602, + "match_ratio": 1.0, + "composite_score": 0.602, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1293, + "trace_count": 1, + "trace_ids": [ + 2090 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.796, + "match_ratio": 1.0, + "composite_score": 0.796, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1294, + "trace_count": 1, + "trace_ids": [ + 2091 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.639, + "match_ratio": 1.0, + "composite_score": 0.639, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1295, + "trace_count": 1, + "trace_ids": [ + 2093 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.822, + "match_ratio": 1.0, + "composite_score": 0.822, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1296, + "trace_count": 1, + "trace_ids": [ + 2095 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.682, + "match_ratio": 1.0, + "composite_score": 0.682, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1297, + "trace_count": 1, + "trace_ids": [ + 2099 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.695, + "match_ratio": 1.0, + "composite_score": 0.695, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1298, + "trace_count": 1, + "trace_ids": [ + 2100 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.754, + "match_ratio": 1.0, + "composite_score": 0.754, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1299, + "trace_count": 1, + "trace_ids": [ + 2101 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.592, + "match_ratio": 1.0, + "composite_score": 0.592, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1300, + "trace_count": 1, + "trace_ids": [ + 2103 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.716, + "match_ratio": 1.0, + "composite_score": 0.716, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1301, + "trace_count": 1, + "trace_ids": [ + 2104 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.676, + "match_ratio": 1.0, + "composite_score": 0.676, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1302, + "trace_count": 1, + "trace_ids": [ + 2105 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.647, + "match_ratio": 1.0, + "composite_score": 0.647, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1303, + "trace_count": 1, + "trace_ids": [ + 2109 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.862, + "match_ratio": 1.0, + "composite_score": 0.862, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1304, + "trace_count": 1, + "trace_ids": [ + 2110 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.601, + "match_ratio": 1.0, + "composite_score": 0.601, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1305, + "trace_count": 1, + "trace_ids": [ + 2112 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.73, + "match_ratio": 1.0, + "composite_score": 0.621, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1306, + "trace_count": 1, + "trace_ids": [ + 2115 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.632, + "match_ratio": 1.0, + "composite_score": 0.506, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1307, + "trace_count": 1, + "trace_ids": [ + 2117 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.755, + "match_ratio": 1.0, + "composite_score": 0.755, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1308, + "trace_count": 1, + "trace_ids": [ + 2121 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.596, + "match_ratio": 1.0, + "composite_score": 0.596, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1309, + "trace_count": 1, + "trace_ids": [ + 2124 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.885, + "match_ratio": 1.0, + "composite_score": 0.885, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1310, + "trace_count": 1, + "trace_ids": [ + 2127 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.87, + "match_ratio": 1.0, + "composite_score": 0.87, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1311, + "trace_count": 1, + "trace_ids": [ + 2131 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.9, + "match_ratio": 1.0, + "composite_score": 0.9, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1312, + "trace_count": 1, + "trace_ids": [ + 2133 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.754, + "match_ratio": 1.0, + "composite_score": 0.754, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1313, + "trace_count": 1, + "trace_ids": [ + 2136 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.57, + "match_ratio": 1.0, + "composite_score": 0.57, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1314, + "trace_count": 1, + "trace_ids": [ + 2139 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.581, + "match_ratio": 1.0, + "composite_score": 0.581, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1315, + "trace_count": 1, + "trace_ids": [ + 2140 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.613, + "match_ratio": 1.0, + "composite_score": 0.613, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1316, + "trace_count": 1, + "trace_ids": [ + 2141 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.684, + "match_ratio": 1.0, + "composite_score": 0.684, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1317, + "trace_count": 1, + "trace_ids": [ + 2142 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.67, + "match_ratio": 1.0, + "composite_score": 0.67, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1318, + "trace_count": 1, + "trace_ids": [ + 2143 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.648, + "match_ratio": 1.0, + "composite_score": 0.648, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1319, + "trace_count": 1, + "trace_ids": [ + 2146 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.662, + "match_ratio": 1.0, + "composite_score": 0.662, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1320, + "trace_count": 1, + "trace_ids": [ + 2147 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.773, + "match_ratio": 1.0, + "composite_score": 0.773, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1321, + "trace_count": 1, + "trace_ids": [ + 2151 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.634, + "match_ratio": 1.0, + "composite_score": 0.634, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1322, + "trace_count": 1, + "trace_ids": [ + 2153 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.674, + "match_ratio": 1.0, + "composite_score": 0.674, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1323, + "trace_count": 1, + "trace_ids": [ + 2154 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.62, + "match_ratio": 1.0, + "composite_score": 0.62, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1324, + "trace_count": 1, + "trace_ids": [ + 2155 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.698, + "match_ratio": 1.0, + "composite_score": 0.698, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1325, + "trace_count": 1, + "trace_ids": [ + 2159 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.747, + "match_ratio": 1.0, + "composite_score": 0.747, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1326, + "trace_count": 1, + "trace_ids": [ + 2166 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.579, + "match_ratio": 1.0, + "composite_score": 0.579, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1327, + "trace_count": 1, + "trace_ids": [ + 2167 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.56, + "match_ratio": 1.0, + "composite_score": 0.56, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1328, + "trace_count": 1, + "trace_ids": [ + 2170 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.733, + "match_ratio": 1.0, + "composite_score": 0.733, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1329, + "trace_count": 1, + "trace_ids": [ + 2171 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.703, + "match_ratio": 1.0, + "composite_score": 0.703, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1330, + "trace_count": 1, + "trace_ids": [ + 2172 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.771, + "match_ratio": 1.0, + "composite_score": 0.771, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1331, + "trace_count": 1, + "trace_ids": [ + 2173 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.844, + "match_ratio": 1.0, + "composite_score": 0.844, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1332, + "trace_count": 1, + "trace_ids": [ + 2174 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.885, + "match_ratio": 1.0, + "composite_score": 0.885, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1333, + "trace_count": 1, + "trace_ids": [ + 2175 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.69, + "match_ratio": 1.0, + "composite_score": 0.69, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1334, + "trace_count": 1, + "trace_ids": [ + 2176 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.842, + "match_ratio": 1.0, + "composite_score": 0.842, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1335, + "trace_count": 1, + "trace_ids": [ + 2180 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.635, + "match_ratio": 1.0, + "composite_score": 0.635, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1336, + "trace_count": 1, + "trace_ids": [ + 2182 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.803, + "match_ratio": 1.0, + "composite_score": 0.803, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1337, + "trace_count": 1, + "trace_ids": [ + 2188 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.594, + "match_ratio": 1.0, + "composite_score": 0.594, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1338, + "trace_count": 1, + "trace_ids": [ + 2191 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.83, + "match_ratio": 1.0, + "composite_score": 0.83, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1339, + "trace_count": 1, + "trace_ids": [ + 2193 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.735, + "match_ratio": 1.0, + "composite_score": 0.735, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1340, + "trace_count": 1, + "trace_ids": [ + 2194 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.629, + "match_ratio": 1.0, + "composite_score": 0.629, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1341, + "trace_count": 1, + "trace_ids": [ + 2195 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.704, + "match_ratio": 1.0, + "composite_score": 0.704, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1342, + "trace_count": 1, + "trace_ids": [ + 2197 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.831, + "match_ratio": 1.0, + "composite_score": 0.831, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1343, + "trace_count": 1, + "trace_ids": [ + 2199 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.813, + "match_ratio": 1.0, + "composite_score": 0.813, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1344, + "trace_count": 1, + "trace_ids": [ + 2200 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.628, + "match_ratio": 1.0, + "composite_score": 0.628, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1345, + "trace_count": 1, + "trace_ids": [ + 2204 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.677, + "match_ratio": 0.75, + "composite_score": 0.576, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1346, + "trace_count": 1, + "trace_ids": [ + 2207 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.798, + "match_ratio": 1.0, + "composite_score": 0.798, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1347, + "trace_count": 1, + "trace_ids": [ + 2209 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.743, + "match_ratio": 1.0, + "composite_score": 0.743, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1348, + "trace_count": 1, + "trace_ids": [ + 2211 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.567, + "match_ratio": 1.0, + "composite_score": 0.567, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1349, + "trace_count": 1, + "trace_ids": [ + 2214 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.58, + "match_ratio": 1.0, + "composite_score": 0.58, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1350, + "trace_count": 1, + "trace_ids": [ + 2218 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.668, + "match_ratio": 1.0, + "composite_score": 0.668, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1351, + "trace_count": 1, + "trace_ids": [ + 2219 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.864, + "match_ratio": 1.0, + "composite_score": 0.864, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1352, + "trace_count": 1, + "trace_ids": [ + 2223 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.66, + "match_ratio": 1.0, + "composite_score": 0.66, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1353, + "trace_count": 1, + "trace_ids": [ + 2225 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.593, + "match_ratio": 1.0, + "composite_score": 0.593, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1354, + "trace_count": 1, + "trace_ids": [ + 2226 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.609, + "match_ratio": 1.0, + "composite_score": 0.609, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1355, + "trace_count": 1, + "trace_ids": [ + 2229 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.58, + "match_ratio": 1.0, + "composite_score": 0.58, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1356, + "trace_count": 1, + "trace_ids": [ + 2231 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.659, + "match_ratio": 1.0, + "composite_score": 0.659, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1357, + "trace_count": 1, + "trace_ids": [ + 2232 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.609, + "match_ratio": 1.0, + "composite_score": 0.609, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1358, + "trace_count": 1, + "trace_ids": [ + 2235 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.656, + "match_ratio": 1.0, + "composite_score": 0.656, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1359, + "trace_count": 1, + "trace_ids": [ + 2236 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.574, + "match_ratio": 1.0, + "composite_score": 0.574, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1360, + "trace_count": 1, + "trace_ids": [ + 2239 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.699, + "match_ratio": 1.0, + "composite_score": 0.699, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1361, + "trace_count": 1, + "trace_ids": [ + 2242 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.748, + "match_ratio": 1.0, + "composite_score": 0.748, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1362, + "trace_count": 1, + "trace_ids": [ + 2245 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.858, + "match_ratio": 1.0, + "composite_score": 0.858, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1363, + "trace_count": 1, + "trace_ids": [ + 2246 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.849, + "match_ratio": 1.0, + "composite_score": 0.849, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1364, + "trace_count": 1, + "trace_ids": [ + 2247 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.86, + "match_ratio": 1.0, + "composite_score": 0.86, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1365, + "trace_count": 1, + "trace_ids": [ + 2248 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.86, + "match_ratio": 1.0, + "composite_score": 0.86, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1366, + "trace_count": 1, + "trace_ids": [ + 2249 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.816, + "match_ratio": 1.0, + "composite_score": 0.816, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1367, + "trace_count": 1, + "trace_ids": [ + 2255 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.556, + "match_ratio": 1.0, + "composite_score": 0.556, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1368, + "trace_count": 1, + "trace_ids": [ + 2257 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.76, + "match_ratio": 1.0, + "composite_score": 0.76, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1369, + "trace_count": 1, + "trace_ids": [ + 2258 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.64, + "match_ratio": 1.0, + "composite_score": 0.64, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1370, + "trace_count": 1, + "trace_ids": [ + 2259 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.92, + "match_ratio": 1.0, + "composite_score": 0.92, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1371, + "trace_count": 1, + "trace_ids": [ + 2267 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.762, + "match_ratio": 1.0, + "composite_score": 0.762, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1372, + "trace_count": 1, + "trace_ids": [ + 2269 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.678, + "match_ratio": 1.0, + "composite_score": 0.678, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1373, + "trace_count": 1, + "trace_ids": [ + 2270 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.811, + "match_ratio": 1.0, + "composite_score": 0.811, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1374, + "trace_count": 1, + "trace_ids": [ + 2271 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.786, + "match_ratio": 1.0, + "composite_score": 0.786, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1375, + "trace_count": 1, + "trace_ids": [ + 2273 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.759, + "match_ratio": 1.0, + "composite_score": 0.759, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1376, + "trace_count": 1, + "trace_ids": [ + 2275 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.816, + "match_ratio": 1.0, + "composite_score": 0.816, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1377, + "trace_count": 1, + "trace_ids": [ + 2277 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.843, + "match_ratio": 1.0, + "composite_score": 0.843, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1378, + "trace_count": 1, + "trace_ids": [ + 2278 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.854, + "match_ratio": 1.0, + "composite_score": 0.854, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1379, + "trace_count": 1, + "trace_ids": [ + 2280 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.873, + "match_ratio": 1.0, + "composite_score": 0.873, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1380, + "trace_count": 1, + "trace_ids": [ + 2283 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.679, + "match_ratio": 1.0, + "composite_score": 0.679, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1381, + "trace_count": 1, + "trace_ids": [ + 2285 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.612, + "match_ratio": 1.0, + "composite_score": 0.612, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1382, + "trace_count": 1, + "trace_ids": [ + 2287 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.636, + "match_ratio": 1.0, + "composite_score": 0.636, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1383, + "trace_count": 1, + "trace_ids": [ + 2298 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.886, + "match_ratio": 1.0, + "composite_score": 0.886, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1384, + "trace_count": 1, + "trace_ids": [ + 2302 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.891, + "match_ratio": 1.0, + "composite_score": 0.891, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1385, + "trace_count": 1, + "trace_ids": [ + 2310 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.559, + "match_ratio": 1.0, + "composite_score": 0.559, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1386, + "trace_count": 1, + "trace_ids": [ + 2315 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.616, + "match_ratio": 1.0, + "composite_score": 0.616, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1387, + "trace_count": 1, + "trace_ids": [ + 2319 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.558, + "match_ratio": 1.0, + "composite_score": 0.558, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1388, + "trace_count": 1, + "trace_ids": [ + 2320 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.554, + "match_ratio": 1.0, + "composite_score": 0.554, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1389, + "trace_count": 1, + "trace_ids": [ + 2321 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.71, + "match_ratio": 1.0, + "composite_score": 0.71, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1390, + "trace_count": 1, + "trace_ids": [ + 2322 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.636, + "match_ratio": 1.0, + "composite_score": 0.636, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1391, + "trace_count": 1, + "trace_ids": [ + 2323 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.711, + "match_ratio": 1.0, + "composite_score": 0.692, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1392, + "trace_count": 1, + "trace_ids": [ + 2324 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.796, + "match_ratio": 1.0, + "composite_score": 0.796, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1393, + "trace_count": 1, + "trace_ids": [ + 2336 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.555, + "match_ratio": 1.0, + "composite_score": 0.555, + "source": "video_ref_r1" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1394, + "trace_count": 1, + "trace_ids": [ + 2 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.67, + "match_ratio": 1.0, + "composite_score": 0.67, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1395, + "trace_count": 1, + "trace_ids": [ + 3 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.755, + "match_ratio": 1.0, + "composite_score": 0.755, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1396, + "trace_count": 1, + "trace_ids": [ + 5 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.603, + "match_ratio": 1.0, + "composite_score": 0.603, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1397, + "trace_count": 1, + "trace_ids": [ + 6 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.712, + "match_ratio": 1.0, + "composite_score": 0.712, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1398, + "trace_count": 1, + "trace_ids": [ + 8 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.597, + "match_ratio": 1.0, + "composite_score": 0.597, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1399, + "trace_count": 1, + "trace_ids": [ + 9 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.561, + "match_ratio": 1.0, + "composite_score": 0.561, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1400, + "trace_count": 1, + "trace_ids": [ + 10 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.582, + "match_ratio": 1.0, + "composite_score": 0.582, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1401, + "trace_count": 1, + "trace_ids": [ + 11 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.625, + "match_ratio": 1.0, + "composite_score": 0.625, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1402, + "trace_count": 1, + "trace_ids": [ + 14 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.782, + "match_ratio": 1.0, + "composite_score": 0.782, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1403, + "trace_count": 1, + "trace_ids": [ + 15 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.621, + "match_ratio": 1.0, + "composite_score": 0.621, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1404, + "trace_count": 1, + "trace_ids": [ + 16 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.795, + "match_ratio": 1.0, + "composite_score": 0.795, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1405, + "trace_count": 1, + "trace_ids": [ + 17 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.669, + "match_ratio": 1.0, + "composite_score": 0.669, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1406, + "trace_count": 1, + "trace_ids": [ + 18 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.713, + "match_ratio": 1.0, + "composite_score": 0.713, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1407, + "trace_count": 1, + "trace_ids": [ + 19 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.607, + "match_ratio": 1.0, + "composite_score": 0.607, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1408, + "trace_count": 1, + "trace_ids": [ + 20 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.676, + "match_ratio": 1.0, + "composite_score": 0.676, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1409, + "trace_count": 1, + "trace_ids": [ + 21 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.728, + "match_ratio": 1.0, + "composite_score": 0.728, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1410, + "trace_count": 1, + "trace_ids": [ + 23 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.651, + "match_ratio": 1.0, + "composite_score": 0.651, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1411, + "trace_count": 1, + "trace_ids": [ + 29 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.619, + "match_ratio": 1.0, + "composite_score": 0.619, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1412, + "trace_count": 1, + "trace_ids": [ + 32 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.679, + "match_ratio": 1.0, + "composite_score": 0.679, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1413, + "trace_count": 1, + "trace_ids": [ + 45 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.723, + "match_ratio": 1.0, + "composite_score": 0.723, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1414, + "trace_count": 1, + "trace_ids": [ + 48 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.641, + "match_ratio": 1.0, + "composite_score": 0.641, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1415, + "trace_count": 1, + "trace_ids": [ + 53 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.613, + "match_ratio": 1.0, + "composite_score": 0.613, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1416, + "trace_count": 1, + "trace_ids": [ + 56 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.711, + "match_ratio": 1.0, + "composite_score": 0.711, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1417, + "trace_count": 1, + "trace_ids": [ + 57 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "avg_similarity": 0.686, + "match_ratio": 1.0, + "composite_score": 0.686, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1418, + "trace_count": 1, + "trace_ids": [ + 58 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.596, + "match_ratio": 1.0, + "composite_score": 0.596, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1419, + "trace_count": 1, + "trace_ids": [ + 59 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.57, + "match_ratio": 1.0, + "composite_score": 0.57, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1420, + "trace_count": 1, + "trace_ids": [ + 61 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.637, + "match_ratio": 1.0, + "composite_score": 0.637, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1421, + "trace_count": 1, + "trace_ids": [ + 63 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.607, + "match_ratio": 1.0, + "composite_score": 0.607, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1422, + "trace_count": 1, + "trace_ids": [ + 64 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.59, + "match_ratio": 1.0, + "composite_score": 0.59, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1423, + "trace_count": 1, + "trace_ids": [ + 66 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.724, + "match_ratio": 1.0, + "composite_score": 0.724, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1424, + "trace_count": 1, + "trace_ids": [ + 67 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.598, + "match_ratio": 1.0, + "composite_score": 0.598, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1425, + "trace_count": 1, + "trace_ids": [ + 68 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.722, + "match_ratio": 1.0, + "composite_score": 0.722, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1426, + "trace_count": 1, + "trace_ids": [ + 69 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.695, + "match_ratio": 1.0, + "composite_score": 0.695, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1427, + "trace_count": 1, + "trace_ids": [ + 70 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.71, + "match_ratio": 1.0, + "composite_score": 0.71, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1428, + "trace_count": 1, + "trace_ids": [ + 71 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.744, + "match_ratio": 1.0, + "composite_score": 0.744, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1429, + "trace_count": 1, + "trace_ids": [ + 72 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.738, + "match_ratio": 1.0, + "composite_score": 0.738, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1430, + "trace_count": 1, + "trace_ids": [ + 73 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.58, + "match_ratio": 1.0, + "composite_score": 0.58, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1431, + "trace_count": 1, + "trace_ids": [ + 81 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.742, + "match_ratio": 1.0, + "composite_score": 0.742, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1432, + "trace_count": 1, + "trace_ids": [ + 93 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.699, + "match_ratio": 1.0, + "composite_score": 0.699, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1433, + "trace_count": 1, + "trace_ids": [ + 94 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.649, + "match_ratio": 1.0, + "composite_score": 0.649, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1434, + "trace_count": 1, + "trace_ids": [ + 95 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "avg_similarity": 0.559, + "match_ratio": 1.0, + "composite_score": 0.559, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1435, + "trace_count": 1, + "trace_ids": [ + 96 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.566, + "match_ratio": 1.0, + "composite_score": 0.566, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1436, + "trace_count": 1, + "trace_ids": [ + 97 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.747, + "match_ratio": 1.0, + "composite_score": 0.747, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1437, + "trace_count": 1, + "trace_ids": [ + 99 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.735, + "match_ratio": 1.0, + "composite_score": 0.735, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1438, + "trace_count": 1, + "trace_ids": [ + 100 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.572, + "match_ratio": 1.0, + "composite_score": 0.572, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1439, + "trace_count": 1, + "trace_ids": [ + 120 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.632, + "match_ratio": 1.0, + "composite_score": 0.632, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1440, + "trace_count": 1, + "trace_ids": [ + 123 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.658, + "match_ratio": 1.0, + "composite_score": 0.658, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1441, + "trace_count": 1, + "trace_ids": [ + 125 + ], + "binding": { + "id": 22, + "name": "Raoul Delfosse", + "avg_similarity": 0.759, + "match_ratio": 1.0, + "composite_score": 0.759, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1442, + "trace_count": 1, + "trace_ids": [ + 126 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.676, + "match_ratio": 1.0, + "composite_score": 0.676, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1443, + "trace_count": 1, + "trace_ids": [ + 129 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.7, + "match_ratio": 1.0, + "composite_score": 0.7, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1444, + "trace_count": 1, + "trace_ids": [ + 130 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.602, + "match_ratio": 1.0, + "composite_score": 0.602, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1445, + "trace_count": 1, + "trace_ids": [ + 131 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.701, + "match_ratio": 1.0, + "composite_score": 0.701, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1446, + "trace_count": 1, + "trace_ids": [ + 134 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.553, + "match_ratio": 1.0, + "composite_score": 0.553, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1447, + "trace_count": 1, + "trace_ids": [ + 140 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.709, + "match_ratio": 1.0, + "composite_score": 0.709, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1448, + "trace_count": 1, + "trace_ids": [ + 142 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.681, + "match_ratio": 1.0, + "composite_score": 0.681, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1449, + "trace_count": 1, + "trace_ids": [ + 143 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.711, + "match_ratio": 1.0, + "composite_score": 0.711, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1450, + "trace_count": 1, + "trace_ids": [ + 145 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.674, + "match_ratio": 1.0, + "composite_score": 0.674, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1451, + "trace_count": 1, + "trace_ids": [ + 146 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.681, + "match_ratio": 1.0, + "composite_score": 0.681, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1452, + "trace_count": 1, + "trace_ids": [ + 147 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.617, + "match_ratio": 1.0, + "composite_score": 0.617, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1453, + "trace_count": 1, + "trace_ids": [ + 148 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.706, + "match_ratio": 1.0, + "composite_score": 0.706, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1454, + "trace_count": 1, + "trace_ids": [ + 149 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.583, + "match_ratio": 1.0, + "composite_score": 0.583, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1455, + "trace_count": 1, + "trace_ids": [ + 162 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.671, + "match_ratio": 1.0, + "composite_score": 0.671, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1456, + "trace_count": 1, + "trace_ids": [ + 164 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.577, + "match_ratio": 1.0, + "composite_score": 0.577, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1457, + "trace_count": 1, + "trace_ids": [ + 167 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.579, + "match_ratio": 1.0, + "composite_score": 0.579, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1458, + "trace_count": 1, + "trace_ids": [ + 168 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.654, + "match_ratio": 1.0, + "composite_score": 0.654, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1459, + "trace_count": 1, + "trace_ids": [ + 172 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.713, + "match_ratio": 1.0, + "composite_score": 0.713, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1460, + "trace_count": 1, + "trace_ids": [ + 173 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.577, + "match_ratio": 1.0, + "composite_score": 0.577, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1461, + "trace_count": 1, + "trace_ids": [ + 180 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.742, + "match_ratio": 1.0, + "composite_score": 0.742, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1462, + "trace_count": 1, + "trace_ids": [ + 181 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.767, + "match_ratio": 1.0, + "composite_score": 0.767, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1463, + "trace_count": 1, + "trace_ids": [ + 182 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.756, + "match_ratio": 1.0, + "composite_score": 0.756, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1464, + "trace_count": 1, + "trace_ids": [ + 188 + ], + "binding": { + "id": 22, + "name": "Raoul Delfosse", + "avg_similarity": 0.685, + "match_ratio": 1.0, + "composite_score": 0.685, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1465, + "trace_count": 1, + "trace_ids": [ + 189 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.723, + "match_ratio": 1.0, + "composite_score": 0.723, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1466, + "trace_count": 1, + "trace_ids": [ + 197 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.644, + "match_ratio": 1.0, + "composite_score": 0.644, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1467, + "trace_count": 1, + "trace_ids": [ + 199 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.618, + "match_ratio": 1.0, + "composite_score": 0.618, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1468, + "trace_count": 1, + "trace_ids": [ + 200 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.598, + "match_ratio": 1.0, + "composite_score": 0.598, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1469, + "trace_count": 1, + "trace_ids": [ + 201 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.701, + "match_ratio": 0.833, + "composite_score": 0.561, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1470, + "trace_count": 1, + "trace_ids": [ + 205 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.629, + "match_ratio": 1.0, + "composite_score": 0.629, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1471, + "trace_count": 1, + "trace_ids": [ + 210 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.789, + "match_ratio": 1.0, + "composite_score": 0.789, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1472, + "trace_count": 1, + "trace_ids": [ + 212 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.682, + "match_ratio": 1.0, + "composite_score": 0.682, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1473, + "trace_count": 1, + "trace_ids": [ + 214 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.797, + "match_ratio": 1.0, + "composite_score": 0.797, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1474, + "trace_count": 1, + "trace_ids": [ + 217 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.664, + "match_ratio": 1.0, + "composite_score": 0.664, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1475, + "trace_count": 1, + "trace_ids": [ + 224 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.609, + "match_ratio": 1.0, + "composite_score": 0.609, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1476, + "trace_count": 1, + "trace_ids": [ + 229 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.681, + "match_ratio": 1.0, + "composite_score": 0.681, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1477, + "trace_count": 1, + "trace_ids": [ + 230 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.658, + "match_ratio": 1.0, + "composite_score": 0.658, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1478, + "trace_count": 1, + "trace_ids": [ + 231 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.707, + "match_ratio": 1.0, + "composite_score": 0.707, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1479, + "trace_count": 1, + "trace_ids": [ + 232 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.713, + "match_ratio": 1.0, + "composite_score": 0.713, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1480, + "trace_count": 1, + "trace_ids": [ + 234 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.729, + "match_ratio": 1.0, + "composite_score": 0.729, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1481, + "trace_count": 1, + "trace_ids": [ + 248 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.687, + "match_ratio": 1.0, + "composite_score": 0.687, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1482, + "trace_count": 1, + "trace_ids": [ + 256 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.661, + "match_ratio": 0.833, + "composite_score": 0.595, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1483, + "trace_count": 1, + "trace_ids": [ + 258 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.739, + "match_ratio": 1.0, + "composite_score": 0.739, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1484, + "trace_count": 1, + "trace_ids": [ + 263 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.635, + "match_ratio": 1.0, + "composite_score": 0.635, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1485, + "trace_count": 1, + "trace_ids": [ + 266 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.607, + "match_ratio": 1.0, + "composite_score": 0.607, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1486, + "trace_count": 1, + "trace_ids": [ + 286 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.612, + "match_ratio": 1.0, + "composite_score": 0.612, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1487, + "trace_count": 1, + "trace_ids": [ + 287 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.647, + "match_ratio": 1.0, + "composite_score": 0.647, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1488, + "trace_count": 1, + "trace_ids": [ + 297 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.634, + "match_ratio": 1.0, + "composite_score": 0.634, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1489, + "trace_count": 1, + "trace_ids": [ + 299 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.616, + "match_ratio": 1.0, + "composite_score": 0.616, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1490, + "trace_count": 1, + "trace_ids": [ + 304 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.722, + "match_ratio": 1.0, + "composite_score": 0.722, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1491, + "trace_count": 1, + "trace_ids": [ + 322 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.615, + "match_ratio": 1.0, + "composite_score": 0.615, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1492, + "trace_count": 1, + "trace_ids": [ + 323 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.632, + "match_ratio": 1.0, + "composite_score": 0.632, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1493, + "trace_count": 1, + "trace_ids": [ + 333 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.756, + "match_ratio": 1.0, + "composite_score": 0.756, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1494, + "trace_count": 1, + "trace_ids": [ + 335 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.694, + "match_ratio": 1.0, + "composite_score": 0.694, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1495, + "trace_count": 1, + "trace_ids": [ + 338 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.799, + "match_ratio": 1.0, + "composite_score": 0.799, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1496, + "trace_count": 1, + "trace_ids": [ + 340 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.567, + "match_ratio": 1.0, + "composite_score": 0.567, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1497, + "trace_count": 1, + "trace_ids": [ + 341 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.696, + "match_ratio": 1.0, + "composite_score": 0.696, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1498, + "trace_count": 1, + "trace_ids": [ + 342 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.648, + "match_ratio": 1.0, + "composite_score": 0.648, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1499, + "trace_count": 1, + "trace_ids": [ + 345 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.749, + "match_ratio": 1.0, + "composite_score": 0.749, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1500, + "trace_count": 1, + "trace_ids": [ + 349 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.702, + "match_ratio": 1.0, + "composite_score": 0.702, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1501, + "trace_count": 1, + "trace_ids": [ + 361 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.668, + "match_ratio": 1.0, + "composite_score": 0.668, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1502, + "trace_count": 1, + "trace_ids": [ + 362 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.758, + "match_ratio": 1.0, + "composite_score": 0.758, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1503, + "trace_count": 1, + "trace_ids": [ + 366 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.553, + "match_ratio": 1.0, + "composite_score": 0.553, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1504, + "trace_count": 1, + "trace_ids": [ + 367 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.721, + "match_ratio": 1.0, + "composite_score": 0.721, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1505, + "trace_count": 1, + "trace_ids": [ + 376 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.68, + "match_ratio": 1.0, + "composite_score": 0.68, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1506, + "trace_count": 1, + "trace_ids": [ + 381 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.662, + "match_ratio": 1.0, + "composite_score": 0.662, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1507, + "trace_count": 1, + "trace_ids": [ + 382 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.655, + "match_ratio": 1.0, + "composite_score": 0.655, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1508, + "trace_count": 1, + "trace_ids": [ + 385 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.593, + "match_ratio": 1.0, + "composite_score": 0.593, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1509, + "trace_count": 1, + "trace_ids": [ + 386 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.707, + "match_ratio": 1.0, + "composite_score": 0.707, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1510, + "trace_count": 1, + "trace_ids": [ + 389 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.752, + "match_ratio": 1.0, + "composite_score": 0.752, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1511, + "trace_count": 1, + "trace_ids": [ + 393 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.636, + "match_ratio": 1.0, + "composite_score": 0.636, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1512, + "trace_count": 1, + "trace_ids": [ + 396 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.757, + "match_ratio": 1.0, + "composite_score": 0.757, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1513, + "trace_count": 1, + "trace_ids": [ + 402 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.6, + "match_ratio": 1.0, + "composite_score": 0.6, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1514, + "trace_count": 1, + "trace_ids": [ + 403 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.801, + "match_ratio": 1.0, + "composite_score": 0.801, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1515, + "trace_count": 1, + "trace_ids": [ + 419 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.718, + "match_ratio": 1.0, + "composite_score": 0.718, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1516, + "trace_count": 1, + "trace_ids": [ + 420 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.64, + "match_ratio": 1.0, + "composite_score": 0.64, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1517, + "trace_count": 1, + "trace_ids": [ + 421 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.675, + "match_ratio": 1.0, + "composite_score": 0.675, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1518, + "trace_count": 1, + "trace_ids": [ + 422 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.599, + "match_ratio": 1.0, + "composite_score": 0.599, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1519, + "trace_count": 1, + "trace_ids": [ + 424 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.612, + "match_ratio": 0.9, + "composite_score": 0.575, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1520, + "trace_count": 1, + "trace_ids": [ + 426 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.805, + "match_ratio": 1.0, + "composite_score": 0.805, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1521, + "trace_count": 1, + "trace_ids": [ + 432 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.602, + "match_ratio": 1.0, + "composite_score": 0.602, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1522, + "trace_count": 1, + "trace_ids": [ + 433 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.729, + "match_ratio": 1.0, + "composite_score": 0.729, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1523, + "trace_count": 1, + "trace_ids": [ + 434 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.679, + "match_ratio": 1.0, + "composite_score": 0.679, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1524, + "trace_count": 1, + "trace_ids": [ + 435 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.634, + "match_ratio": 1.0, + "composite_score": 0.634, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1525, + "trace_count": 1, + "trace_ids": [ + 436 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.59, + "match_ratio": 1.0, + "composite_score": 0.59, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1526, + "trace_count": 1, + "trace_ids": [ + 438 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.695, + "match_ratio": 1.0, + "composite_score": 0.695, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1527, + "trace_count": 1, + "trace_ids": [ + 440 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.7, + "match_ratio": 1.0, + "composite_score": 0.7, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1528, + "trace_count": 1, + "trace_ids": [ + 441 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.611, + "match_ratio": 1.0, + "composite_score": 0.611, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1529, + "trace_count": 1, + "trace_ids": [ + 443 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.618, + "match_ratio": 1.0, + "composite_score": 0.618, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1530, + "trace_count": 1, + "trace_ids": [ + 444 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.818, + "match_ratio": 1.0, + "composite_score": 0.818, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1531, + "trace_count": 1, + "trace_ids": [ + 447 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.621, + "match_ratio": 1.0, + "composite_score": 0.621, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1532, + "trace_count": 1, + "trace_ids": [ + 448 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.657, + "match_ratio": 1.0, + "composite_score": 0.657, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1533, + "trace_count": 1, + "trace_ids": [ + 449 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.65, + "match_ratio": 1.0, + "composite_score": 0.65, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1534, + "trace_count": 1, + "trace_ids": [ + 456 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.75, + "match_ratio": 1.0, + "composite_score": 0.75, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1535, + "trace_count": 1, + "trace_ids": [ + 459 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.689, + "match_ratio": 1.0, + "composite_score": 0.689, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1536, + "trace_count": 1, + "trace_ids": [ + 461 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.618, + "match_ratio": 1.0, + "composite_score": 0.618, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1537, + "trace_count": 1, + "trace_ids": [ + 462 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.745, + "match_ratio": 1.0, + "composite_score": 0.745, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1538, + "trace_count": 1, + "trace_ids": [ + 463 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.775, + "match_ratio": 1.0, + "composite_score": 0.775, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1539, + "trace_count": 1, + "trace_ids": [ + 464 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.618, + "match_ratio": 1.0, + "composite_score": 0.618, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1540, + "trace_count": 1, + "trace_ids": [ + 465 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.706, + "match_ratio": 1.0, + "composite_score": 0.706, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1541, + "trace_count": 1, + "trace_ids": [ + 466 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.802, + "match_ratio": 1.0, + "composite_score": 0.802, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1542, + "trace_count": 1, + "trace_ids": [ + 467 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.835, + "match_ratio": 1.0, + "composite_score": 0.835, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1543, + "trace_count": 1, + "trace_ids": [ + 468 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.657, + "match_ratio": 1.0, + "composite_score": 0.601, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1544, + "trace_count": 1, + "trace_ids": [ + 470 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.825, + "match_ratio": 1.0, + "composite_score": 0.825, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1545, + "trace_count": 1, + "trace_ids": [ + 474 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.676, + "match_ratio": 1.0, + "composite_score": 0.676, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1546, + "trace_count": 1, + "trace_ids": [ + 475 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.792, + "match_ratio": 1.0, + "composite_score": 0.792, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1547, + "trace_count": 1, + "trace_ids": [ + 476 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.78, + "match_ratio": 1.0, + "composite_score": 0.78, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1548, + "trace_count": 1, + "trace_ids": [ + 478 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.717, + "match_ratio": 1.0, + "composite_score": 0.717, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1549, + "trace_count": 1, + "trace_ids": [ + 484 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.654, + "match_ratio": 1.0, + "composite_score": 0.654, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1550, + "trace_count": 1, + "trace_ids": [ + 489 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.731, + "match_ratio": 1.0, + "composite_score": 0.731, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1551, + "trace_count": 1, + "trace_ids": [ + 490 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.726, + "match_ratio": 1.0, + "composite_score": 0.726, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1552, + "trace_count": 1, + "trace_ids": [ + 493 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.729, + "match_ratio": 1.0, + "composite_score": 0.729, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1553, + "trace_count": 1, + "trace_ids": [ + 494 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.623, + "match_ratio": 1.0, + "composite_score": 0.623, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1554, + "trace_count": 1, + "trace_ids": [ + 506 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.691, + "match_ratio": 1.0, + "composite_score": 0.691, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1555, + "trace_count": 1, + "trace_ids": [ + 507 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.692, + "match_ratio": 1.0, + "composite_score": 0.692, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1556, + "trace_count": 1, + "trace_ids": [ + 509 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.592, + "match_ratio": 1.0, + "composite_score": 0.592, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1557, + "trace_count": 1, + "trace_ids": [ + 511 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.639, + "match_ratio": 1.0, + "composite_score": 0.639, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1558, + "trace_count": 1, + "trace_ids": [ + 512 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.641, + "match_ratio": 1.0, + "composite_score": 0.641, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1559, + "trace_count": 1, + "trace_ids": [ + 513 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.594, + "match_ratio": 1.0, + "composite_score": 0.594, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1560, + "trace_count": 1, + "trace_ids": [ + 516 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.566, + "match_ratio": 1.0, + "composite_score": 0.566, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1561, + "trace_count": 1, + "trace_ids": [ + 518 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.552, + "match_ratio": 1.0, + "composite_score": 0.552, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1562, + "trace_count": 1, + "trace_ids": [ + 521 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.725, + "match_ratio": 1.0, + "composite_score": 0.725, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1563, + "trace_count": 1, + "trace_ids": [ + 523 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.718, + "match_ratio": 1.0, + "composite_score": 0.718, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1564, + "trace_count": 1, + "trace_ids": [ + 525 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.612, + "match_ratio": 1.0, + "composite_score": 0.612, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1565, + "trace_count": 1, + "trace_ids": [ + 526 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.662, + "match_ratio": 1.0, + "composite_score": 0.662, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1566, + "trace_count": 1, + "trace_ids": [ + 528 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.738, + "match_ratio": 1.0, + "composite_score": 0.738, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1567, + "trace_count": 1, + "trace_ids": [ + 531 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.621, + "match_ratio": 1.0, + "composite_score": 0.621, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1568, + "trace_count": 1, + "trace_ids": [ + 533 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.691, + "match_ratio": 1.0, + "composite_score": 0.691, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1569, + "trace_count": 1, + "trace_ids": [ + 535 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.628, + "match_ratio": 1.0, + "composite_score": 0.628, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1570, + "trace_count": 1, + "trace_ids": [ + 536 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.578, + "match_ratio": 1.0, + "composite_score": 0.578, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1571, + "trace_count": 1, + "trace_ids": [ + 538 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.673, + "match_ratio": 1.0, + "composite_score": 0.673, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1572, + "trace_count": 1, + "trace_ids": [ + 542 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.669, + "match_ratio": 1.0, + "composite_score": 0.669, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1573, + "trace_count": 1, + "trace_ids": [ + 545 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.691, + "match_ratio": 1.0, + "composite_score": 0.691, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1574, + "trace_count": 1, + "trace_ids": [ + 546 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.696, + "match_ratio": 1.0, + "composite_score": 0.696, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1575, + "trace_count": 1, + "trace_ids": [ + 549 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.702, + "match_ratio": 1.0, + "composite_score": 0.702, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1576, + "trace_count": 1, + "trace_ids": [ + 550 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.668, + "match_ratio": 1.0, + "composite_score": 0.668, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1577, + "trace_count": 1, + "trace_ids": [ + 563 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.671, + "match_ratio": 1.0, + "composite_score": 0.671, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1578, + "trace_count": 1, + "trace_ids": [ + 566 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.848, + "match_ratio": 1.0, + "composite_score": 0.848, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1579, + "trace_count": 1, + "trace_ids": [ + 567 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.6, + "match_ratio": 1.0, + "composite_score": 0.6, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1580, + "trace_count": 1, + "trace_ids": [ + 568 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.653, + "match_ratio": 1.0, + "composite_score": 0.653, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1581, + "trace_count": 1, + "trace_ids": [ + 583 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.605, + "match_ratio": 1.0, + "composite_score": 0.605, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1582, + "trace_count": 1, + "trace_ids": [ + 587 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.74, + "match_ratio": 1.0, + "composite_score": 0.74, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1583, + "trace_count": 1, + "trace_ids": [ + 590 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.775, + "match_ratio": 1.0, + "composite_score": 0.775, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1584, + "trace_count": 1, + "trace_ids": [ + 591 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.778, + "match_ratio": 1.0, + "composite_score": 0.778, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1585, + "trace_count": 1, + "trace_ids": [ + 596 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.599, + "match_ratio": 0.833, + "composite_score": 0.539, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1586, + "trace_count": 1, + "trace_ids": [ + 597 + ], + "binding": { + "id": 22, + "name": "Raoul Delfosse", + "avg_similarity": 0.587, + "match_ratio": 1.0, + "composite_score": 0.587, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1587, + "trace_count": 1, + "trace_ids": [ + 604 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.754, + "match_ratio": 1.0, + "composite_score": 0.754, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1588, + "trace_count": 1, + "trace_ids": [ + 605 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.646, + "match_ratio": 1.0, + "composite_score": 0.646, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1589, + "trace_count": 1, + "trace_ids": [ + 606 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.665, + "match_ratio": 1.0, + "composite_score": 0.665, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1590, + "trace_count": 1, + "trace_ids": [ + 607 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.657, + "match_ratio": 1.0, + "composite_score": 0.657, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1591, + "trace_count": 1, + "trace_ids": [ + 608 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.636, + "match_ratio": 1.0, + "composite_score": 0.636, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1592, + "trace_count": 1, + "trace_ids": [ + 609 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.559, + "match_ratio": 1.0, + "composite_score": 0.559, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1593, + "trace_count": 1, + "trace_ids": [ + 610 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.607, + "match_ratio": 1.0, + "composite_score": 0.607, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1594, + "trace_count": 1, + "trace_ids": [ + 612 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.633, + "match_ratio": 1.0, + "composite_score": 0.633, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1595, + "trace_count": 1, + "trace_ids": [ + 613 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.552, + "match_ratio": 1.0, + "composite_score": 0.552, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1596, + "trace_count": 1, + "trace_ids": [ + 616 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.591, + "match_ratio": 1.0, + "composite_score": 0.591, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1597, + "trace_count": 1, + "trace_ids": [ + 618 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.592, + "match_ratio": 1.0, + "composite_score": 0.592, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1598, + "trace_count": 1, + "trace_ids": [ + 619 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.725, + "match_ratio": 1.0, + "composite_score": 0.725, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1599, + "trace_count": 1, + "trace_ids": [ + 621 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.565, + "match_ratio": 1.0, + "composite_score": 0.565, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1600, + "trace_count": 1, + "trace_ids": [ + 623 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.753, + "match_ratio": 1.0, + "composite_score": 0.753, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1601, + "trace_count": 1, + "trace_ids": [ + 624 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.705, + "match_ratio": 1.0, + "composite_score": 0.705, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1602, + "trace_count": 1, + "trace_ids": [ + 625 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.693, + "match_ratio": 1.0, + "composite_score": 0.693, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1603, + "trace_count": 1, + "trace_ids": [ + 627 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.788, + "match_ratio": 1.0, + "composite_score": 0.788, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1604, + "trace_count": 1, + "trace_ids": [ + 629 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.672, + "match_ratio": 1.0, + "composite_score": 0.672, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1605, + "trace_count": 1, + "trace_ids": [ + 630 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.639, + "match_ratio": 1.0, + "composite_score": 0.639, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1606, + "trace_count": 1, + "trace_ids": [ + 632 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.666, + "match_ratio": 1.0, + "composite_score": 0.666, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1607, + "trace_count": 1, + "trace_ids": [ + 635 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.576, + "match_ratio": 1.0, + "composite_score": 0.576, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1608, + "trace_count": 1, + "trace_ids": [ + 636 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.609, + "match_ratio": 1.0, + "composite_score": 0.609, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1609, + "trace_count": 1, + "trace_ids": [ + 638 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.697, + "match_ratio": 1.0, + "composite_score": 0.697, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1610, + "trace_count": 1, + "trace_ids": [ + 639 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.579, + "match_ratio": 1.0, + "composite_score": 0.579, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1611, + "trace_count": 1, + "trace_ids": [ + 641 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.723, + "match_ratio": 1.0, + "composite_score": 0.723, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1612, + "trace_count": 1, + "trace_ids": [ + 642 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.675, + "match_ratio": 1.0, + "composite_score": 0.675, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1613, + "trace_count": 1, + "trace_ids": [ + 643 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.68, + "match_ratio": 1.0, + "composite_score": 0.68, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1614, + "trace_count": 1, + "trace_ids": [ + 647 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.637, + "match_ratio": 1.0, + "composite_score": 0.637, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1615, + "trace_count": 1, + "trace_ids": [ + 651 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.629, + "match_ratio": 1.0, + "composite_score": 0.629, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1616, + "trace_count": 1, + "trace_ids": [ + 652 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.64, + "match_ratio": 1.0, + "composite_score": 0.64, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1617, + "trace_count": 1, + "trace_ids": [ + 653 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.62, + "match_ratio": 1.0, + "composite_score": 0.62, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1618, + "trace_count": 1, + "trace_ids": [ + 654 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.679, + "match_ratio": 1.0, + "composite_score": 0.679, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1619, + "trace_count": 1, + "trace_ids": [ + 657 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.572, + "match_ratio": 1.0, + "composite_score": 0.572, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1620, + "trace_count": 1, + "trace_ids": [ + 662 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.663, + "match_ratio": 1.0, + "composite_score": 0.663, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1621, + "trace_count": 1, + "trace_ids": [ + 663 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.714, + "match_ratio": 1.0, + "composite_score": 0.714, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1622, + "trace_count": 1, + "trace_ids": [ + 664 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.587, + "match_ratio": 1.0, + "composite_score": 0.587, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1623, + "trace_count": 1, + "trace_ids": [ + 665 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.619, + "match_ratio": 1.0, + "composite_score": 0.619, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1624, + "trace_count": 1, + "trace_ids": [ + 666 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.578, + "match_ratio": 1.0, + "composite_score": 0.578, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1625, + "trace_count": 1, + "trace_ids": [ + 667 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.595, + "match_ratio": 1.0, + "composite_score": 0.595, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1626, + "trace_count": 1, + "trace_ids": [ + 668 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.61, + "match_ratio": 1.0, + "composite_score": 0.61, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1627, + "trace_count": 1, + "trace_ids": [ + 669 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.636, + "match_ratio": 1.0, + "composite_score": 0.636, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1628, + "trace_count": 1, + "trace_ids": [ + 671 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.612, + "match_ratio": 1.0, + "composite_score": 0.612, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1629, + "trace_count": 1, + "trace_ids": [ + 673 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.604, + "match_ratio": 1.0, + "composite_score": 0.604, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1630, + "trace_count": 1, + "trace_ids": [ + 674 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.688, + "match_ratio": 1.0, + "composite_score": 0.688, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1631, + "trace_count": 1, + "trace_ids": [ + 678 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.606, + "match_ratio": 1.0, + "composite_score": 0.606, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1632, + "trace_count": 1, + "trace_ids": [ + 679 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.822, + "match_ratio": 1.0, + "composite_score": 0.822, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1633, + "trace_count": 1, + "trace_ids": [ + 685 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.652, + "match_ratio": 1.0, + "composite_score": 0.652, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1634, + "trace_count": 1, + "trace_ids": [ + 691 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.818, + "match_ratio": 1.0, + "composite_score": 0.818, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1635, + "trace_count": 1, + "trace_ids": [ + 692 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.839, + "match_ratio": 1.0, + "composite_score": 0.839, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1636, + "trace_count": 1, + "trace_ids": [ + 693 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.698, + "match_ratio": 1.0, + "composite_score": 0.698, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1637, + "trace_count": 1, + "trace_ids": [ + 694 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.572, + "match_ratio": 1.0, + "composite_score": 0.572, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1638, + "trace_count": 1, + "trace_ids": [ + 699 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.727, + "match_ratio": 1.0, + "composite_score": 0.727, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1639, + "trace_count": 1, + "trace_ids": [ + 701 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.638, + "match_ratio": 1.0, + "composite_score": 0.638, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1640, + "trace_count": 1, + "trace_ids": [ + 702 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.755, + "match_ratio": 1.0, + "composite_score": 0.755, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1641, + "trace_count": 1, + "trace_ids": [ + 703 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.734, + "match_ratio": 1.0, + "composite_score": 0.734, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1642, + "trace_count": 1, + "trace_ids": [ + 704 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.826, + "match_ratio": 1.0, + "composite_score": 0.826, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1643, + "trace_count": 1, + "trace_ids": [ + 707 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.589, + "match_ratio": 1.0, + "composite_score": 0.589, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1644, + "trace_count": 1, + "trace_ids": [ + 708 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.671, + "match_ratio": 1.0, + "composite_score": 0.671, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1645, + "trace_count": 1, + "trace_ids": [ + 709 + ], + "binding": { + "id": 22, + "name": "Raoul Delfosse", + "avg_similarity": 0.676, + "match_ratio": 1.0, + "composite_score": 0.676, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1646, + "trace_count": 1, + "trace_ids": [ + 710 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.696, + "match_ratio": 1.0, + "composite_score": 0.696, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1647, + "trace_count": 1, + "trace_ids": [ + 713 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.617, + "match_ratio": 1.0, + "composite_score": 0.617, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1648, + "trace_count": 1, + "trace_ids": [ + 714 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.664, + "match_ratio": 1.0, + "composite_score": 0.664, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1649, + "trace_count": 1, + "trace_ids": [ + 716 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.72, + "match_ratio": 1.0, + "composite_score": 0.72, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1650, + "trace_count": 1, + "trace_ids": [ + 718 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.695, + "match_ratio": 1.0, + "composite_score": 0.695, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1651, + "trace_count": 1, + "trace_ids": [ + 727 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.692, + "match_ratio": 1.0, + "composite_score": 0.692, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1652, + "trace_count": 1, + "trace_ids": [ + 729 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.775, + "match_ratio": 1.0, + "composite_score": 0.775, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1653, + "trace_count": 1, + "trace_ids": [ + 730 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.603, + "match_ratio": 1.0, + "composite_score": 0.603, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1654, + "trace_count": 1, + "trace_ids": [ + 731 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.586, + "match_ratio": 1.0, + "composite_score": 0.586, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1655, + "trace_count": 1, + "trace_ids": [ + 733 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.693, + "match_ratio": 1.0, + "composite_score": 0.693, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1656, + "trace_count": 1, + "trace_ids": [ + 734 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.762, + "match_ratio": 1.0, + "composite_score": 0.762, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1657, + "trace_count": 1, + "trace_ids": [ + 735 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.583, + "match_ratio": 1.0, + "composite_score": 0.583, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1658, + "trace_count": 1, + "trace_ids": [ + 736 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.625, + "match_ratio": 1.0, + "composite_score": 0.625, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1659, + "trace_count": 1, + "trace_ids": [ + 737 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.662, + "match_ratio": 1.0, + "composite_score": 0.662, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1660, + "trace_count": 1, + "trace_ids": [ + 738 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.72, + "match_ratio": 1.0, + "composite_score": 0.72, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1661, + "trace_count": 1, + "trace_ids": [ + 740 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.563, + "match_ratio": 1.0, + "composite_score": 0.563, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1662, + "trace_count": 1, + "trace_ids": [ + 742 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.571, + "match_ratio": 1.0, + "composite_score": 0.571, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1663, + "trace_count": 1, + "trace_ids": [ + 743 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.651, + "match_ratio": 1.0, + "composite_score": 0.651, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1664, + "trace_count": 1, + "trace_ids": [ + 745 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.754, + "match_ratio": 1.0, + "composite_score": 0.754, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1665, + "trace_count": 1, + "trace_ids": [ + 748 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.785, + "match_ratio": 1.0, + "composite_score": 0.785, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1666, + "trace_count": 1, + "trace_ids": [ + 749 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.806, + "match_ratio": 1.0, + "composite_score": 0.806, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1667, + "trace_count": 1, + "trace_ids": [ + 754 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.658, + "match_ratio": 1.0, + "composite_score": 0.658, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1668, + "trace_count": 1, + "trace_ids": [ + 755 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.677, + "match_ratio": 1.0, + "composite_score": 0.677, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1669, + "trace_count": 1, + "trace_ids": [ + 757 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.604, + "match_ratio": 1.0, + "composite_score": 0.604, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1670, + "trace_count": 1, + "trace_ids": [ + 758 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.64, + "match_ratio": 1.0, + "composite_score": 0.64, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1671, + "trace_count": 1, + "trace_ids": [ + 760 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.666, + "match_ratio": 1.0, + "composite_score": 0.666, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1672, + "trace_count": 1, + "trace_ids": [ + 763 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.576, + "match_ratio": 1.0, + "composite_score": 0.576, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1673, + "trace_count": 1, + "trace_ids": [ + 764 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.697, + "match_ratio": 1.0, + "composite_score": 0.697, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1674, + "trace_count": 1, + "trace_ids": [ + 765 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.796, + "match_ratio": 1.0, + "composite_score": 0.796, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1675, + "trace_count": 1, + "trace_ids": [ + 766 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.606, + "match_ratio": 1.0, + "composite_score": 0.606, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1676, + "trace_count": 1, + "trace_ids": [ + 767 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.556, + "match_ratio": 1.0, + "composite_score": 0.556, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1677, + "trace_count": 1, + "trace_ids": [ + 769 + ], + "binding": { + "id": 22, + "name": "Raoul Delfosse", + "avg_similarity": 0.635, + "match_ratio": 1.0, + "composite_score": 0.635, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1678, + "trace_count": 1, + "trace_ids": [ + 771 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.572, + "match_ratio": 1.0, + "composite_score": 0.572, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1679, + "trace_count": 1, + "trace_ids": [ + 772 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.675, + "match_ratio": 1.0, + "composite_score": 0.675, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1680, + "trace_count": 1, + "trace_ids": [ + 774 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.686, + "match_ratio": 1.0, + "composite_score": 0.686, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1681, + "trace_count": 1, + "trace_ids": [ + 776 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.726, + "match_ratio": 1.0, + "composite_score": 0.726, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1682, + "trace_count": 1, + "trace_ids": [ + 777 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.729, + "match_ratio": 1.0, + "composite_score": 0.729, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1683, + "trace_count": 1, + "trace_ids": [ + 778 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.713, + "match_ratio": 1.0, + "composite_score": 0.713, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1684, + "trace_count": 1, + "trace_ids": [ + 780 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.629, + "match_ratio": 1.0, + "composite_score": 0.629, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1685, + "trace_count": 1, + "trace_ids": [ + 781 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.748, + "match_ratio": 1.0, + "composite_score": 0.748, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1686, + "trace_count": 1, + "trace_ids": [ + 783 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.668, + "match_ratio": 1.0, + "composite_score": 0.668, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1687, + "trace_count": 1, + "trace_ids": [ + 785 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.699, + "match_ratio": 1.0, + "composite_score": 0.699, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1688, + "trace_count": 1, + "trace_ids": [ + 787 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.632, + "match_ratio": 1.0, + "composite_score": 0.632, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1689, + "trace_count": 1, + "trace_ids": [ + 788 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.595, + "match_ratio": 1.0, + "composite_score": 0.595, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1690, + "trace_count": 1, + "trace_ids": [ + 789 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.633, + "match_ratio": 1.0, + "composite_score": 0.633, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1691, + "trace_count": 1, + "trace_ids": [ + 790 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.703, + "match_ratio": 1.0, + "composite_score": 0.703, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1692, + "trace_count": 1, + "trace_ids": [ + 793 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.733, + "match_ratio": 1.0, + "composite_score": 0.733, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1693, + "trace_count": 1, + "trace_ids": [ + 796 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.722, + "match_ratio": 1.0, + "composite_score": 0.722, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1694, + "trace_count": 1, + "trace_ids": [ + 799 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.733, + "match_ratio": 1.0, + "composite_score": 0.733, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1695, + "trace_count": 1, + "trace_ids": [ + 801 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.757, + "match_ratio": 1.0, + "composite_score": 0.757, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1696, + "trace_count": 1, + "trace_ids": [ + 802 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.713, + "match_ratio": 1.0, + "composite_score": 0.713, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1697, + "trace_count": 1, + "trace_ids": [ + 803 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.767, + "match_ratio": 1.0, + "composite_score": 0.767, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1698, + "trace_count": 1, + "trace_ids": [ + 806 + ], + "binding": { + "id": 22, + "name": "Raoul Delfosse", + "avg_similarity": 0.642, + "match_ratio": 1.0, + "composite_score": 0.642, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1699, + "trace_count": 1, + "trace_ids": [ + 807 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.721, + "match_ratio": 1.0, + "composite_score": 0.721, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1700, + "trace_count": 1, + "trace_ids": [ + 808 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.66, + "match_ratio": 1.0, + "composite_score": 0.66, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1701, + "trace_count": 1, + "trace_ids": [ + 809 + ], + "binding": { + "id": 22, + "name": "Raoul Delfosse", + "avg_similarity": 0.822, + "match_ratio": 1.0, + "composite_score": 0.822, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1702, + "trace_count": 1, + "trace_ids": [ + 810 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.703, + "match_ratio": 1.0, + "composite_score": 0.703, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1703, + "trace_count": 1, + "trace_ids": [ + 811 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.684, + "match_ratio": 1.0, + "composite_score": 0.684, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1704, + "trace_count": 1, + "trace_ids": [ + 812 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.742, + "match_ratio": 1.0, + "composite_score": 0.742, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1705, + "trace_count": 1, + "trace_ids": [ + 813 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.718, + "match_ratio": 1.0, + "composite_score": 0.718, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1706, + "trace_count": 1, + "trace_ids": [ + 815 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.748, + "match_ratio": 1.0, + "composite_score": 0.748, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1707, + "trace_count": 1, + "trace_ids": [ + 816 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.641, + "match_ratio": 1.0, + "composite_score": 0.641, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1708, + "trace_count": 1, + "trace_ids": [ + 817 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.688, + "match_ratio": 1.0, + "composite_score": 0.688, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1709, + "trace_count": 1, + "trace_ids": [ + 818 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.573, + "match_ratio": 1.0, + "composite_score": 0.573, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1710, + "trace_count": 1, + "trace_ids": [ + 819 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.572, + "match_ratio": 1.0, + "composite_score": 0.572, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1711, + "trace_count": 1, + "trace_ids": [ + 820 + ], + "binding": { + "id": 22, + "name": "Raoul Delfosse", + "avg_similarity": 0.642, + "match_ratio": 1.0, + "composite_score": 0.642, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1712, + "trace_count": 1, + "trace_ids": [ + 821 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.658, + "match_ratio": 1.0, + "composite_score": 0.658, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1713, + "trace_count": 1, + "trace_ids": [ + 824 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.676, + "match_ratio": 1.0, + "composite_score": 0.676, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1714, + "trace_count": 1, + "trace_ids": [ + 825 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.744, + "match_ratio": 1.0, + "composite_score": 0.744, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1715, + "trace_count": 1, + "trace_ids": [ + 831 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.716, + "match_ratio": 1.0, + "composite_score": 0.716, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1716, + "trace_count": 1, + "trace_ids": [ + 835 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.623, + "match_ratio": 1.0, + "composite_score": 0.548, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1717, + "trace_count": 1, + "trace_ids": [ + 836 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.677, + "match_ratio": 1.0, + "composite_score": 0.677, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1718, + "trace_count": 1, + "trace_ids": [ + 839 + ], + "binding": { + "id": 22, + "name": "Raoul Delfosse", + "avg_similarity": 0.662, + "match_ratio": 1.0, + "composite_score": 0.662, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1719, + "trace_count": 1, + "trace_ids": [ + 840 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.591, + "match_ratio": 1.0, + "composite_score": 0.591, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1720, + "trace_count": 1, + "trace_ids": [ + 841 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.625, + "match_ratio": 1.0, + "composite_score": 0.625, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1721, + "trace_count": 1, + "trace_ids": [ + 842 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.782, + "match_ratio": 1.0, + "composite_score": 0.782, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1722, + "trace_count": 1, + "trace_ids": [ + 843 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.671, + "match_ratio": 1.0, + "composite_score": 0.671, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1723, + "trace_count": 1, + "trace_ids": [ + 844 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.584, + "match_ratio": 1.0, + "composite_score": 0.584, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1724, + "trace_count": 1, + "trace_ids": [ + 845 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.711, + "match_ratio": 1.0, + "composite_score": 0.711, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1725, + "trace_count": 1, + "trace_ids": [ + 848 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.567, + "match_ratio": 1.0, + "composite_score": 0.567, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1726, + "trace_count": 1, + "trace_ids": [ + 849 + ], + "binding": { + "id": 22, + "name": "Raoul Delfosse", + "avg_similarity": 0.605, + "match_ratio": 1.0, + "composite_score": 0.605, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1727, + "trace_count": 1, + "trace_ids": [ + 850 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.683, + "match_ratio": 1.0, + "composite_score": 0.683, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1728, + "trace_count": 1, + "trace_ids": [ + 854 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.69, + "match_ratio": 1.0, + "composite_score": 0.69, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1729, + "trace_count": 1, + "trace_ids": [ + 855 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.628, + "match_ratio": 1.0, + "composite_score": 0.628, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1730, + "trace_count": 1, + "trace_ids": [ + 858 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.648, + "match_ratio": 1.0, + "composite_score": 0.648, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1731, + "trace_count": 1, + "trace_ids": [ + 862 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.723, + "match_ratio": 1.0, + "composite_score": 0.723, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1732, + "trace_count": 1, + "trace_ids": [ + 863 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.663, + "match_ratio": 1.0, + "composite_score": 0.663, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1733, + "trace_count": 1, + "trace_ids": [ + 864 + ], + "binding": { + "id": 22, + "name": "Raoul Delfosse", + "avg_similarity": 0.674, + "match_ratio": 1.0, + "composite_score": 0.674, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1734, + "trace_count": 1, + "trace_ids": [ + 865 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.739, + "match_ratio": 1.0, + "composite_score": 0.739, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1735, + "trace_count": 1, + "trace_ids": [ + 867 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.6, + "match_ratio": 1.0, + "composite_score": 0.6, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1736, + "trace_count": 1, + "trace_ids": [ + 868 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.589, + "match_ratio": 1.0, + "composite_score": 0.589, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1737, + "trace_count": 1, + "trace_ids": [ + 869 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.618, + "match_ratio": 1.0, + "composite_score": 0.618, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1738, + "trace_count": 1, + "trace_ids": [ + 870 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.564, + "match_ratio": 1.0, + "composite_score": 0.564, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1739, + "trace_count": 1, + "trace_ids": [ + 871 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.788, + "match_ratio": 1.0, + "composite_score": 0.788, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1740, + "trace_count": 1, + "trace_ids": [ + 878 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.709, + "match_ratio": 1.0, + "composite_score": 0.709, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1741, + "trace_count": 1, + "trace_ids": [ + 881 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.617, + "match_ratio": 1.0, + "composite_score": 0.617, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1742, + "trace_count": 1, + "trace_ids": [ + 884 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.61, + "match_ratio": 1.0, + "composite_score": 0.61, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1743, + "trace_count": 1, + "trace_ids": [ + 885 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.693, + "match_ratio": 1.0, + "composite_score": 0.693, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1744, + "trace_count": 1, + "trace_ids": [ + 886 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.79, + "match_ratio": 1.0, + "composite_score": 0.79, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1745, + "trace_count": 1, + "trace_ids": [ + 887 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.699, + "match_ratio": 1.0, + "composite_score": 0.699, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1746, + "trace_count": 1, + "trace_ids": [ + 888 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.709, + "match_ratio": 1.0, + "composite_score": 0.709, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1747, + "trace_count": 1, + "trace_ids": [ + 889 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.694, + "match_ratio": 1.0, + "composite_score": 0.694, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1748, + "trace_count": 1, + "trace_ids": [ + 890 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.661, + "match_ratio": 1.0, + "composite_score": 0.661, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1749, + "trace_count": 1, + "trace_ids": [ + 892 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.621, + "match_ratio": 1.0, + "composite_score": 0.621, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1750, + "trace_count": 1, + "trace_ids": [ + 893 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.628, + "match_ratio": 1.0, + "composite_score": 0.628, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1751, + "trace_count": 1, + "trace_ids": [ + 894 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.642, + "match_ratio": 1.0, + "composite_score": 0.642, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1752, + "trace_count": 1, + "trace_ids": [ + 895 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.656, + "match_ratio": 1.0, + "composite_score": 0.656, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1753, + "trace_count": 1, + "trace_ids": [ + 896 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.598, + "match_ratio": 1.0, + "composite_score": 0.598, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1754, + "trace_count": 1, + "trace_ids": [ + 897 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.636, + "match_ratio": 1.0, + "composite_score": 0.636, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1755, + "trace_count": 1, + "trace_ids": [ + 898 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.627, + "match_ratio": 1.0, + "composite_score": 0.627, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1756, + "trace_count": 1, + "trace_ids": [ + 899 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.683, + "match_ratio": 1.0, + "composite_score": 0.683, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1757, + "trace_count": 1, + "trace_ids": [ + 900 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.565, + "match_ratio": 1.0, + "composite_score": 0.565, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1758, + "trace_count": 1, + "trace_ids": [ + 901 + ], + "binding": { + "id": 22, + "name": "Raoul Delfosse", + "avg_similarity": 0.685, + "match_ratio": 1.0, + "composite_score": 0.685, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1759, + "trace_count": 1, + "trace_ids": [ + 902 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.554, + "match_ratio": 1.0, + "composite_score": 0.554, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1760, + "trace_count": 1, + "trace_ids": [ + 904 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.705, + "match_ratio": 1.0, + "composite_score": 0.705, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1761, + "trace_count": 1, + "trace_ids": [ + 905 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.766, + "match_ratio": 1.0, + "composite_score": 0.766, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1762, + "trace_count": 1, + "trace_ids": [ + 907 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.64, + "match_ratio": 1.0, + "composite_score": 0.64, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1763, + "trace_count": 1, + "trace_ids": [ + 908 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.648, + "match_ratio": 1.0, + "composite_score": 0.648, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1764, + "trace_count": 1, + "trace_ids": [ + 909 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.758, + "match_ratio": 1.0, + "composite_score": 0.758, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1765, + "trace_count": 1, + "trace_ids": [ + 910 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.696, + "match_ratio": 1.0, + "composite_score": 0.696, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1766, + "trace_count": 1, + "trace_ids": [ + 911 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.626, + "match_ratio": 1.0, + "composite_score": 0.626, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1767, + "trace_count": 1, + "trace_ids": [ + 912 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.737, + "match_ratio": 1.0, + "composite_score": 0.737, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1768, + "trace_count": 1, + "trace_ids": [ + 917 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.762, + "match_ratio": 1.0, + "composite_score": 0.762, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1769, + "trace_count": 1, + "trace_ids": [ + 919 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.644, + "match_ratio": 1.0, + "composite_score": 0.644, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1770, + "trace_count": 1, + "trace_ids": [ + 920 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.56, + "match_ratio": 1.0, + "composite_score": 0.56, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1771, + "trace_count": 1, + "trace_ids": [ + 924 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.716, + "match_ratio": 1.0, + "composite_score": 0.716, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1772, + "trace_count": 1, + "trace_ids": [ + 925 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.739, + "match_ratio": 1.0, + "composite_score": 0.739, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1773, + "trace_count": 1, + "trace_ids": [ + 926 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.588, + "match_ratio": 1.0, + "composite_score": 0.588, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1774, + "trace_count": 1, + "trace_ids": [ + 928 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "avg_similarity": 0.598, + "match_ratio": 1.0, + "composite_score": 0.598, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1775, + "trace_count": 1, + "trace_ids": [ + 929 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.576, + "match_ratio": 1.0, + "composite_score": 0.576, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1776, + "trace_count": 1, + "trace_ids": [ + 932 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.694, + "match_ratio": 1.0, + "composite_score": 0.694, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1777, + "trace_count": 1, + "trace_ids": [ + 934 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.71, + "match_ratio": 1.0, + "composite_score": 0.71, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1778, + "trace_count": 1, + "trace_ids": [ + 935 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.707, + "match_ratio": 1.0, + "composite_score": 0.707, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1779, + "trace_count": 1, + "trace_ids": [ + 939 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.712, + "match_ratio": 1.0, + "composite_score": 0.712, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1780, + "trace_count": 1, + "trace_ids": [ + 943 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.58, + "match_ratio": 1.0, + "composite_score": 0.58, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1781, + "trace_count": 1, + "trace_ids": [ + 945 + ], + "binding": { + "id": 22, + "name": "Raoul Delfosse", + "avg_similarity": 0.683, + "match_ratio": 1.0, + "composite_score": 0.683, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1782, + "trace_count": 1, + "trace_ids": [ + 950 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.766, + "match_ratio": 1.0, + "composite_score": 0.766, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1783, + "trace_count": 1, + "trace_ids": [ + 951 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.672, + "match_ratio": 1.0, + "composite_score": 0.672, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1784, + "trace_count": 1, + "trace_ids": [ + 954 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.694, + "match_ratio": 1.0, + "composite_score": 0.694, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1785, + "trace_count": 1, + "trace_ids": [ + 955 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.648, + "match_ratio": 1.0, + "composite_score": 0.648, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1786, + "trace_count": 1, + "trace_ids": [ + 957 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.649, + "match_ratio": 1.0, + "composite_score": 0.649, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1787, + "trace_count": 1, + "trace_ids": [ + 958 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.705, + "match_ratio": 1.0, + "composite_score": 0.705, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1788, + "trace_count": 1, + "trace_ids": [ + 959 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.619, + "match_ratio": 1.0, + "composite_score": 0.619, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1789, + "trace_count": 1, + "trace_ids": [ + 963 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.761, + "match_ratio": 1.0, + "composite_score": 0.761, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1790, + "trace_count": 1, + "trace_ids": [ + 964 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.807, + "match_ratio": 1.0, + "composite_score": 0.807, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1791, + "trace_count": 1, + "trace_ids": [ + 965 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.556, + "match_ratio": 1.0, + "composite_score": 0.556, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1792, + "trace_count": 1, + "trace_ids": [ + 966 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.701, + "match_ratio": 1.0, + "composite_score": 0.701, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1793, + "trace_count": 1, + "trace_ids": [ + 967 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.599, + "match_ratio": 1.0, + "composite_score": 0.599, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1794, + "trace_count": 1, + "trace_ids": [ + 968 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.619, + "match_ratio": 1.0, + "composite_score": 0.619, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1795, + "trace_count": 1, + "trace_ids": [ + 969 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.595, + "match_ratio": 1.0, + "composite_score": 0.595, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1796, + "trace_count": 1, + "trace_ids": [ + 971 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.629, + "match_ratio": 1.0, + "composite_score": 0.629, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1797, + "trace_count": 1, + "trace_ids": [ + 973 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.665, + "match_ratio": 1.0, + "composite_score": 0.665, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1798, + "trace_count": 1, + "trace_ids": [ + 974 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.773, + "match_ratio": 1.0, + "composite_score": 0.773, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1799, + "trace_count": 1, + "trace_ids": [ + 975 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.728, + "match_ratio": 1.0, + "composite_score": 0.728, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1800, + "trace_count": 1, + "trace_ids": [ + 976 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.758, + "match_ratio": 1.0, + "composite_score": 0.758, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1801, + "trace_count": 1, + "trace_ids": [ + 979 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.794, + "match_ratio": 1.0, + "composite_score": 0.794, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1802, + "trace_count": 1, + "trace_ids": [ + 1005 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.612, + "match_ratio": 1.0, + "composite_score": 0.612, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1803, + "trace_count": 1, + "trace_ids": [ + 1012 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.693, + "match_ratio": 1.0, + "composite_score": 0.693, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1804, + "trace_count": 1, + "trace_ids": [ + 1013 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.708, + "match_ratio": 1.0, + "composite_score": 0.708, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1805, + "trace_count": 1, + "trace_ids": [ + 1014 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.608, + "match_ratio": 1.0, + "composite_score": 0.608, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1806, + "trace_count": 1, + "trace_ids": [ + 1015 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.667, + "match_ratio": 1.0, + "composite_score": 0.667, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1807, + "trace_count": 1, + "trace_ids": [ + 1026 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.764, + "match_ratio": 1.0, + "composite_score": 0.764, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1808, + "trace_count": 1, + "trace_ids": [ + 1027 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.668, + "match_ratio": 1.0, + "composite_score": 0.668, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1809, + "trace_count": 1, + "trace_ids": [ + 1028 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.766, + "match_ratio": 1.0, + "composite_score": 0.766, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1810, + "trace_count": 1, + "trace_ids": [ + 1029 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.622, + "match_ratio": 1.0, + "composite_score": 0.622, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1811, + "trace_count": 1, + "trace_ids": [ + 1030 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.703, + "match_ratio": 1.0, + "composite_score": 0.703, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1812, + "trace_count": 1, + "trace_ids": [ + 1037 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.725, + "match_ratio": 1.0, + "composite_score": 0.725, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1813, + "trace_count": 1, + "trace_ids": [ + 1038 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.671, + "match_ratio": 1.0, + "composite_score": 0.671, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1814, + "trace_count": 1, + "trace_ids": [ + 1040 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.733, + "match_ratio": 1.0, + "composite_score": 0.733, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1815, + "trace_count": 1, + "trace_ids": [ + 1041 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.725, + "match_ratio": 1.0, + "composite_score": 0.725, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1816, + "trace_count": 1, + "trace_ids": [ + 1043 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.618, + "match_ratio": 1.0, + "composite_score": 0.618, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1817, + "trace_count": 1, + "trace_ids": [ + 1046 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.647, + "match_ratio": 1.0, + "composite_score": 0.647, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1818, + "trace_count": 1, + "trace_ids": [ + 1048 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.555, + "match_ratio": 1.0, + "composite_score": 0.555, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1819, + "trace_count": 1, + "trace_ids": [ + 1051 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.766, + "match_ratio": 1.0, + "composite_score": 0.766, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1820, + "trace_count": 1, + "trace_ids": [ + 1063 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.732, + "match_ratio": 1.0, + "composite_score": 0.732, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1821, + "trace_count": 1, + "trace_ids": [ + 1067 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.738, + "match_ratio": 1.0, + "composite_score": 0.738, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1822, + "trace_count": 1, + "trace_ids": [ + 1073 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.68, + "match_ratio": 1.0, + "composite_score": 0.68, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1823, + "trace_count": 1, + "trace_ids": [ + 1081 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.679, + "match_ratio": 1.0, + "composite_score": 0.679, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1824, + "trace_count": 1, + "trace_ids": [ + 1082 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.721, + "match_ratio": 1.0, + "composite_score": 0.721, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1825, + "trace_count": 1, + "trace_ids": [ + 1100 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.586, + "match_ratio": 1.0, + "composite_score": 0.586, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1826, + "trace_count": 1, + "trace_ids": [ + 1102 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.672, + "match_ratio": 1.0, + "composite_score": 0.672, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1827, + "trace_count": 1, + "trace_ids": [ + 1104 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.738, + "match_ratio": 1.0, + "composite_score": 0.738, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1828, + "trace_count": 1, + "trace_ids": [ + 1105 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.618, + "match_ratio": 1.0, + "composite_score": 0.618, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1829, + "trace_count": 1, + "trace_ids": [ + 1109 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.631, + "match_ratio": 1.0, + "composite_score": 0.631, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1830, + "trace_count": 1, + "trace_ids": [ + 1110 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.718, + "match_ratio": 1.0, + "composite_score": 0.718, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1831, + "trace_count": 1, + "trace_ids": [ + 1112 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.554, + "match_ratio": 1.0, + "composite_score": 0.554, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1832, + "trace_count": 1, + "trace_ids": [ + 1114 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.757, + "match_ratio": 1.0, + "composite_score": 0.757, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1833, + "trace_count": 1, + "trace_ids": [ + 1120 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.642, + "match_ratio": 0.857, + "composite_score": 0.532, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1834, + "trace_count": 1, + "trace_ids": [ + 1122 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.638, + "match_ratio": 1.0, + "composite_score": 0.638, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1835, + "trace_count": 1, + "trace_ids": [ + 1127 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.671, + "match_ratio": 1.0, + "composite_score": 0.671, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1836, + "trace_count": 1, + "trace_ids": [ + 1128 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.718, + "match_ratio": 1.0, + "composite_score": 0.718, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1837, + "trace_count": 1, + "trace_ids": [ + 1130 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.676, + "match_ratio": 1.0, + "composite_score": 0.676, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1838, + "trace_count": 1, + "trace_ids": [ + 1131 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.765, + "match_ratio": 1.0, + "composite_score": 0.765, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1839, + "trace_count": 1, + "trace_ids": [ + 1142 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.803, + "match_ratio": 1.0, + "composite_score": 0.803, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1840, + "trace_count": 1, + "trace_ids": [ + 1148 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.578, + "match_ratio": 1.0, + "composite_score": 0.578, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1841, + "trace_count": 1, + "trace_ids": [ + 1151 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.744, + "match_ratio": 1.0, + "composite_score": 0.744, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1842, + "trace_count": 1, + "trace_ids": [ + 1153 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.695, + "match_ratio": 1.0, + "composite_score": 0.625, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1843, + "trace_count": 1, + "trace_ids": [ + 1157 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.688, + "match_ratio": 1.0, + "composite_score": 0.585, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1844, + "trace_count": 1, + "trace_ids": [ + 1160 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.628, + "match_ratio": 1.0, + "composite_score": 0.628, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1845, + "trace_count": 1, + "trace_ids": [ + 1169 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.701, + "match_ratio": 1.0, + "composite_score": 0.701, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1846, + "trace_count": 1, + "trace_ids": [ + 1170 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.65, + "match_ratio": 1.0, + "composite_score": 0.65, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1847, + "trace_count": 1, + "trace_ids": [ + 1171 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.761, + "match_ratio": 1.0, + "composite_score": 0.761, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1848, + "trace_count": 1, + "trace_ids": [ + 1180 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.68, + "match_ratio": 1.0, + "composite_score": 0.68, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1849, + "trace_count": 1, + "trace_ids": [ + 1188 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.871, + "match_ratio": 1.0, + "composite_score": 0.871, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1850, + "trace_count": 1, + "trace_ids": [ + 1190 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.743, + "match_ratio": 1.0, + "composite_score": 0.743, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1851, + "trace_count": 1, + "trace_ids": [ + 1203 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.62, + "match_ratio": 1.0, + "composite_score": 0.62, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1852, + "trace_count": 1, + "trace_ids": [ + 1205 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.737, + "match_ratio": 1.0, + "composite_score": 0.737, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1853, + "trace_count": 1, + "trace_ids": [ + 1208 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.616, + "match_ratio": 1.0, + "composite_score": 0.616, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1854, + "trace_count": 1, + "trace_ids": [ + 1214 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.709, + "match_ratio": 1.0, + "composite_score": 0.709, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1855, + "trace_count": 1, + "trace_ids": [ + 1215 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.721, + "match_ratio": 1.0, + "composite_score": 0.721, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1856, + "trace_count": 1, + "trace_ids": [ + 1227 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.645, + "match_ratio": 1.0, + "composite_score": 0.645, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1857, + "trace_count": 1, + "trace_ids": [ + 1233 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.552, + "match_ratio": 1.0, + "composite_score": 0.552, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1858, + "trace_count": 1, + "trace_ids": [ + 1234 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.571, + "match_ratio": 1.0, + "composite_score": 0.571, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1859, + "trace_count": 1, + "trace_ids": [ + 1237 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.764, + "match_ratio": 1.0, + "composite_score": 0.764, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1860, + "trace_count": 1, + "trace_ids": [ + 1255 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.579, + "match_ratio": 1.0, + "composite_score": 0.579, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1861, + "trace_count": 1, + "trace_ids": [ + 1257 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.673, + "match_ratio": 1.0, + "composite_score": 0.673, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1862, + "trace_count": 1, + "trace_ids": [ + 1267 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.565, + "match_ratio": 1.0, + "composite_score": 0.565, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1863, + "trace_count": 1, + "trace_ids": [ + 1273 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.696, + "match_ratio": 1.0, + "composite_score": 0.696, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1864, + "trace_count": 1, + "trace_ids": [ + 1274 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.744, + "match_ratio": 1.0, + "composite_score": 0.744, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1865, + "trace_count": 1, + "trace_ids": [ + 1275 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.681, + "match_ratio": 1.0, + "composite_score": 0.681, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1866, + "trace_count": 1, + "trace_ids": [ + 1277 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.637, + "match_ratio": 1.0, + "composite_score": 0.637, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1867, + "trace_count": 1, + "trace_ids": [ + 1278 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.678, + "match_ratio": 1.0, + "composite_score": 0.678, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1868, + "trace_count": 1, + "trace_ids": [ + 1283 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.775, + "match_ratio": 1.0, + "composite_score": 0.775, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1869, + "trace_count": 1, + "trace_ids": [ + 1285 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.787, + "match_ratio": 1.0, + "composite_score": 0.787, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1870, + "trace_count": 1, + "trace_ids": [ + 1286 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.676, + "match_ratio": 1.0, + "composite_score": 0.676, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1871, + "trace_count": 1, + "trace_ids": [ + 1288 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.599, + "match_ratio": 1.0, + "composite_score": 0.599, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1872, + "trace_count": 1, + "trace_ids": [ + 1292 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.592, + "match_ratio": 1.0, + "composite_score": 0.592, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1873, + "trace_count": 1, + "trace_ids": [ + 1296 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.675, + "match_ratio": 1.0, + "composite_score": 0.675, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1874, + "trace_count": 1, + "trace_ids": [ + 1298 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.808, + "match_ratio": 1.0, + "composite_score": 0.808, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1875, + "trace_count": 1, + "trace_ids": [ + 1305 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.62, + "match_ratio": 1.0, + "composite_score": 0.62, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1876, + "trace_count": 1, + "trace_ids": [ + 1308 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.663, + "match_ratio": 1.0, + "composite_score": 0.663, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1877, + "trace_count": 1, + "trace_ids": [ + 1310 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.681, + "match_ratio": 1.0, + "composite_score": 0.681, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1878, + "trace_count": 1, + "trace_ids": [ + 1311 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.741, + "match_ratio": 1.0, + "composite_score": 0.741, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1879, + "trace_count": 1, + "trace_ids": [ + 1312 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.682, + "match_ratio": 1.0, + "composite_score": 0.682, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1880, + "trace_count": 1, + "trace_ids": [ + 1313 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.692, + "match_ratio": 1.0, + "composite_score": 0.692, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1881, + "trace_count": 1, + "trace_ids": [ + 1315 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.673, + "match_ratio": 1.0, + "composite_score": 0.673, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1882, + "trace_count": 1, + "trace_ids": [ + 1316 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.552, + "match_ratio": 1.0, + "composite_score": 0.552, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1883, + "trace_count": 1, + "trace_ids": [ + 1319 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.699, + "match_ratio": 1.0, + "composite_score": 0.699, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1884, + "trace_count": 1, + "trace_ids": [ + 1324 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.699, + "match_ratio": 1.0, + "composite_score": 0.699, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1885, + "trace_count": 1, + "trace_ids": [ + 1326 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.77, + "match_ratio": 1.0, + "composite_score": 0.77, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1886, + "trace_count": 1, + "trace_ids": [ + 1331 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.63, + "match_ratio": 1.0, + "composite_score": 0.63, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1887, + "trace_count": 1, + "trace_ids": [ + 1332 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.696, + "match_ratio": 1.0, + "composite_score": 0.696, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1888, + "trace_count": 1, + "trace_ids": [ + 1333 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.677, + "match_ratio": 1.0, + "composite_score": 0.677, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1889, + "trace_count": 1, + "trace_ids": [ + 1338 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.612, + "match_ratio": 1.0, + "composite_score": 0.551, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1890, + "trace_count": 1, + "trace_ids": [ + 1339 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.757, + "match_ratio": 1.0, + "composite_score": 0.757, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1891, + "trace_count": 1, + "trace_ids": [ + 1343 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.787, + "match_ratio": 0.895, + "composite_score": 0.737, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1892, + "trace_count": 1, + "trace_ids": [ + 1347 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.675, + "match_ratio": 1.0, + "composite_score": 0.675, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1893, + "trace_count": 1, + "trace_ids": [ + 1353 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.788, + "match_ratio": 1.0, + "composite_score": 0.788, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1894, + "trace_count": 1, + "trace_ids": [ + 1355 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.759, + "match_ratio": 1.0, + "composite_score": 0.759, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1895, + "trace_count": 1, + "trace_ids": [ + 1363 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.62, + "match_ratio": 1.0, + "composite_score": 0.62, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1896, + "trace_count": 1, + "trace_ids": [ + 1365 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.63, + "match_ratio": 1.0, + "composite_score": 0.63, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1897, + "trace_count": 1, + "trace_ids": [ + 1368 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.657, + "match_ratio": 1.0, + "composite_score": 0.657, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1898, + "trace_count": 1, + "trace_ids": [ + 1373 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.655, + "match_ratio": 1.0, + "composite_score": 0.655, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1899, + "trace_count": 1, + "trace_ids": [ + 1374 + ], + "binding": { + "id": 22, + "name": "Raoul Delfosse", + "avg_similarity": 0.7, + "match_ratio": 1.0, + "composite_score": 0.7, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1900, + "trace_count": 1, + "trace_ids": [ + 1377 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.584, + "match_ratio": 1.0, + "composite_score": 0.584, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1901, + "trace_count": 1, + "trace_ids": [ + 1378 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.766, + "match_ratio": 1.0, + "composite_score": 0.766, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1902, + "trace_count": 1, + "trace_ids": [ + 1379 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.794, + "match_ratio": 1.0, + "composite_score": 0.794, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1903, + "trace_count": 1, + "trace_ids": [ + 1380 + ], + "binding": { + "id": 22, + "name": "Raoul Delfosse", + "avg_similarity": 0.683, + "match_ratio": 1.0, + "composite_score": 0.683, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1904, + "trace_count": 1, + "trace_ids": [ + 1381 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.556, + "match_ratio": 1.0, + "composite_score": 0.556, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1905, + "trace_count": 1, + "trace_ids": [ + 1383 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.568, + "match_ratio": 1.0, + "composite_score": 0.568, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1906, + "trace_count": 1, + "trace_ids": [ + 1384 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.584, + "match_ratio": 1.0, + "composite_score": 0.584, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1907, + "trace_count": 1, + "trace_ids": [ + 1385 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.649, + "match_ratio": 1.0, + "composite_score": 0.649, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1908, + "trace_count": 1, + "trace_ids": [ + 1389 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.591, + "match_ratio": 1.0, + "composite_score": 0.591, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1909, + "trace_count": 1, + "trace_ids": [ + 1390 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.661, + "match_ratio": 1.0, + "composite_score": 0.661, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1910, + "trace_count": 1, + "trace_ids": [ + 1393 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "avg_similarity": 0.585, + "match_ratio": 1.0, + "composite_score": 0.585, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1911, + "trace_count": 1, + "trace_ids": [ + 1394 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.767, + "match_ratio": 1.0, + "composite_score": 0.767, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1912, + "trace_count": 1, + "trace_ids": [ + 1395 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.809, + "match_ratio": 1.0, + "composite_score": 0.809, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1913, + "trace_count": 1, + "trace_ids": [ + 1402 + ], + "binding": { + "id": 22, + "name": "Raoul Delfosse", + "avg_similarity": 0.586, + "match_ratio": 1.0, + "composite_score": 0.586, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1914, + "trace_count": 1, + "trace_ids": [ + 1404 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.635, + "match_ratio": 1.0, + "composite_score": 0.635, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1915, + "trace_count": 1, + "trace_ids": [ + 1405 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.651, + "match_ratio": 1.0, + "composite_score": 0.651, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1916, + "trace_count": 1, + "trace_ids": [ + 1406 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.718, + "match_ratio": 1.0, + "composite_score": 0.718, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1917, + "trace_count": 1, + "trace_ids": [ + 1408 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.55, + "match_ratio": 1.0, + "composite_score": 0.55, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1918, + "trace_count": 1, + "trace_ids": [ + 1409 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.763, + "match_ratio": 1.0, + "composite_score": 0.763, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1919, + "trace_count": 1, + "trace_ids": [ + 1410 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.735, + "match_ratio": 1.0, + "composite_score": 0.735, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1920, + "trace_count": 1, + "trace_ids": [ + 1411 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.774, + "match_ratio": 1.0, + "composite_score": 0.774, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1921, + "trace_count": 1, + "trace_ids": [ + 1413 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.721, + "match_ratio": 1.0, + "composite_score": 0.721, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1922, + "trace_count": 1, + "trace_ids": [ + 1414 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.715, + "match_ratio": 1.0, + "composite_score": 0.715, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1923, + "trace_count": 1, + "trace_ids": [ + 1415 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.758, + "match_ratio": 1.0, + "composite_score": 0.758, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1924, + "trace_count": 1, + "trace_ids": [ + 1416 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.885, + "match_ratio": 1.0, + "composite_score": 0.885, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1925, + "trace_count": 1, + "trace_ids": [ + 1417 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.844, + "match_ratio": 1.0, + "composite_score": 0.844, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1926, + "trace_count": 1, + "trace_ids": [ + 1418 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.74, + "match_ratio": 1.0, + "composite_score": 0.74, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1927, + "trace_count": 1, + "trace_ids": [ + 1423 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.755, + "match_ratio": 1.0, + "composite_score": 0.755, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1928, + "trace_count": 1, + "trace_ids": [ + 1424 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.624, + "match_ratio": 1.0, + "composite_score": 0.624, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1929, + "trace_count": 1, + "trace_ids": [ + 1427 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.583, + "match_ratio": 1.0, + "composite_score": 0.583, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1930, + "trace_count": 1, + "trace_ids": [ + 1429 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.659, + "match_ratio": 1.0, + "composite_score": 0.659, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1931, + "trace_count": 1, + "trace_ids": [ + 1431 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.732, + "match_ratio": 1.0, + "composite_score": 0.732, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1932, + "trace_count": 1, + "trace_ids": [ + 1432 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.588, + "match_ratio": 1.0, + "composite_score": 0.518, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1933, + "trace_count": 1, + "trace_ids": [ + 1433 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.585, + "match_ratio": 1.0, + "composite_score": 0.585, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1934, + "trace_count": 1, + "trace_ids": [ + 1436 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.764, + "match_ratio": 1.0, + "composite_score": 0.764, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1935, + "trace_count": 1, + "trace_ids": [ + 1438 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.745, + "match_ratio": 1.0, + "composite_score": 0.745, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1936, + "trace_count": 1, + "trace_ids": [ + 1439 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.613, + "match_ratio": 1.0, + "composite_score": 0.613, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1937, + "trace_count": 1, + "trace_ids": [ + 1440 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.643, + "match_ratio": 1.0, + "composite_score": 0.643, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1938, + "trace_count": 1, + "trace_ids": [ + 1441 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.591, + "match_ratio": 1.0, + "composite_score": 0.591, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1939, + "trace_count": 1, + "trace_ids": [ + 1443 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.684, + "match_ratio": 1.0, + "composite_score": 0.684, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1940, + "trace_count": 1, + "trace_ids": [ + 1444 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.605, + "match_ratio": 1.0, + "composite_score": 0.605, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1941, + "trace_count": 1, + "trace_ids": [ + 1445 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.72, + "match_ratio": 1.0, + "composite_score": 0.72, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1942, + "trace_count": 1, + "trace_ids": [ + 1449 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.635, + "match_ratio": 1.0, + "composite_score": 0.635, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1943, + "trace_count": 1, + "trace_ids": [ + 1451 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.624, + "match_ratio": 1.0, + "composite_score": 0.624, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1944, + "trace_count": 1, + "trace_ids": [ + 1452 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.688, + "match_ratio": 1.0, + "composite_score": 0.688, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1945, + "trace_count": 1, + "trace_ids": [ + 1457 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.652, + "match_ratio": 1.0, + "composite_score": 0.652, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1946, + "trace_count": 1, + "trace_ids": [ + 1458 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.622, + "match_ratio": 1.0, + "composite_score": 0.622, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1947, + "trace_count": 1, + "trace_ids": [ + 1461 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.671, + "match_ratio": 1.0, + "composite_score": 0.671, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1948, + "trace_count": 1, + "trace_ids": [ + 1462 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.632, + "match_ratio": 1.0, + "composite_score": 0.632, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1949, + "trace_count": 1, + "trace_ids": [ + 1468 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.73, + "match_ratio": 1.0, + "composite_score": 0.73, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1950, + "trace_count": 1, + "trace_ids": [ + 1469 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.694, + "match_ratio": 1.0, + "composite_score": 0.694, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1951, + "trace_count": 1, + "trace_ids": [ + 1472 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.766, + "match_ratio": 1.0, + "composite_score": 0.766, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1952, + "trace_count": 1, + "trace_ids": [ + 1473 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.791, + "match_ratio": 1.0, + "composite_score": 0.791, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1953, + "trace_count": 1, + "trace_ids": [ + 1489 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.775, + "match_ratio": 1.0, + "composite_score": 0.775, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1954, + "trace_count": 1, + "trace_ids": [ + 1491 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.652, + "match_ratio": 1.0, + "composite_score": 0.652, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1955, + "trace_count": 1, + "trace_ids": [ + 1498 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.654, + "match_ratio": 1.0, + "composite_score": 0.654, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1956, + "trace_count": 1, + "trace_ids": [ + 1503 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.68, + "match_ratio": 1.0, + "composite_score": 0.68, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1957, + "trace_count": 1, + "trace_ids": [ + 1510 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.647, + "match_ratio": 1.0, + "composite_score": 0.647, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1958, + "trace_count": 1, + "trace_ids": [ + 1515 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.65, + "match_ratio": 1.0, + "composite_score": 0.65, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1959, + "trace_count": 1, + "trace_ids": [ + 1518 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.679, + "match_ratio": 1.0, + "composite_score": 0.679, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1960, + "trace_count": 1, + "trace_ids": [ + 1520 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.661, + "match_ratio": 1.0, + "composite_score": 0.661, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1961, + "trace_count": 1, + "trace_ids": [ + 1526 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.617, + "match_ratio": 1.0, + "composite_score": 0.617, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1962, + "trace_count": 1, + "trace_ids": [ + 1528 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.659, + "match_ratio": 1.0, + "composite_score": 0.659, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1963, + "trace_count": 1, + "trace_ids": [ + 1530 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.637, + "match_ratio": 1.0, + "composite_score": 0.637, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1964, + "trace_count": 1, + "trace_ids": [ + 1532 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.859, + "match_ratio": 1.0, + "composite_score": 0.859, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1965, + "trace_count": 1, + "trace_ids": [ + 1538 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.745, + "match_ratio": 1.0, + "composite_score": 0.745, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1966, + "trace_count": 1, + "trace_ids": [ + 1544 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.565, + "match_ratio": 1.0, + "composite_score": 0.565, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1967, + "trace_count": 1, + "trace_ids": [ + 1545 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.691, + "match_ratio": 1.0, + "composite_score": 0.691, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1968, + "trace_count": 1, + "trace_ids": [ + 1546 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.65, + "match_ratio": 1.0, + "composite_score": 0.65, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1969, + "trace_count": 1, + "trace_ids": [ + 1548 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.656, + "match_ratio": 1.0, + "composite_score": 0.656, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1970, + "trace_count": 1, + "trace_ids": [ + 1550 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.622, + "match_ratio": 1.0, + "composite_score": 0.622, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1971, + "trace_count": 1, + "trace_ids": [ + 1553 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.69, + "match_ratio": 1.0, + "composite_score": 0.69, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1972, + "trace_count": 1, + "trace_ids": [ + 1554 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.61, + "match_ratio": 1.0, + "composite_score": 0.61, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1973, + "trace_count": 1, + "trace_ids": [ + 1555 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.596, + "match_ratio": 1.0, + "composite_score": 0.596, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1974, + "trace_count": 1, + "trace_ids": [ + 1556 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.643, + "match_ratio": 1.0, + "composite_score": 0.643, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1975, + "trace_count": 1, + "trace_ids": [ + 1557 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.568, + "match_ratio": 1.0, + "composite_score": 0.568, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1976, + "trace_count": 1, + "trace_ids": [ + 1558 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.708, + "match_ratio": 1.0, + "composite_score": 0.708, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1977, + "trace_count": 1, + "trace_ids": [ + 1563 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.641, + "match_ratio": 0.857, + "composite_score": 0.531, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1978, + "trace_count": 1, + "trace_ids": [ + 1566 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.709, + "match_ratio": 1.0, + "composite_score": 0.709, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1979, + "trace_count": 1, + "trace_ids": [ + 1568 + ], + "binding": { + "id": 22, + "name": "Raoul Delfosse", + "avg_similarity": 0.701, + "match_ratio": 1.0, + "composite_score": 0.617, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1980, + "trace_count": 1, + "trace_ids": [ + 1574 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.67, + "match_ratio": 1.0, + "composite_score": 0.67, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1981, + "trace_count": 1, + "trace_ids": [ + 1575 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.623, + "match_ratio": 1.0, + "composite_score": 0.623, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1982, + "trace_count": 1, + "trace_ids": [ + 1576 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.785, + "match_ratio": 1.0, + "composite_score": 0.785, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1983, + "trace_count": 1, + "trace_ids": [ + 1577 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.703, + "match_ratio": 1.0, + "composite_score": 0.703, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1984, + "trace_count": 1, + "trace_ids": [ + 1578 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.681, + "match_ratio": 1.0, + "composite_score": 0.681, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1985, + "trace_count": 1, + "trace_ids": [ + 1579 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.717, + "match_ratio": 1.0, + "composite_score": 0.717, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1986, + "trace_count": 1, + "trace_ids": [ + 1581 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.721, + "match_ratio": 1.0, + "composite_score": 0.721, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1987, + "trace_count": 1, + "trace_ids": [ + 1582 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.759, + "match_ratio": 1.0, + "composite_score": 0.759, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1988, + "trace_count": 1, + "trace_ids": [ + 1583 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.587, + "match_ratio": 1.0, + "composite_score": 0.587, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1989, + "trace_count": 1, + "trace_ids": [ + 1584 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.733, + "match_ratio": 1.0, + "composite_score": 0.733, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1990, + "trace_count": 1, + "trace_ids": [ + 1586 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.632, + "match_ratio": 1.0, + "composite_score": 0.632, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1991, + "trace_count": 1, + "trace_ids": [ + 1587 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.758, + "match_ratio": 1.0, + "composite_score": 0.758, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1992, + "trace_count": 1, + "trace_ids": [ + 1588 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.682, + "match_ratio": 1.0, + "composite_score": 0.682, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1993, + "trace_count": 1, + "trace_ids": [ + 1590 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.777, + "match_ratio": 1.0, + "composite_score": 0.777, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1994, + "trace_count": 1, + "trace_ids": [ + 1592 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.683, + "match_ratio": 1.0, + "composite_score": 0.683, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1995, + "trace_count": 1, + "trace_ids": [ + 1593 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.649, + "match_ratio": 1.0, + "composite_score": 0.649, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1996, + "trace_count": 1, + "trace_ids": [ + 1594 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.784, + "match_ratio": 1.0, + "composite_score": 0.784, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1997, + "trace_count": 1, + "trace_ids": [ + 1595 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.766, + "match_ratio": 1.0, + "composite_score": 0.766, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1998, + "trace_count": 1, + "trace_ids": [ + 1596 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.763, + "match_ratio": 1.0, + "composite_score": 0.763, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 1999, + "trace_count": 1, + "trace_ids": [ + 1598 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.636, + "match_ratio": 1.0, + "composite_score": 0.636, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2000, + "trace_count": 1, + "trace_ids": [ + 1599 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.723, + "match_ratio": 1.0, + "composite_score": 0.723, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2001, + "trace_count": 1, + "trace_ids": [ + 1600 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.749, + "match_ratio": 1.0, + "composite_score": 0.749, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2002, + "trace_count": 1, + "trace_ids": [ + 1601 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.679, + "match_ratio": 1.0, + "composite_score": 0.679, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2003, + "trace_count": 1, + "trace_ids": [ + 1602 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.704, + "match_ratio": 1.0, + "composite_score": 0.704, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2004, + "trace_count": 1, + "trace_ids": [ + 1604 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.584, + "match_ratio": 1.0, + "composite_score": 0.584, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2005, + "trace_count": 1, + "trace_ids": [ + 1605 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.716, + "match_ratio": 1.0, + "composite_score": 0.716, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2006, + "trace_count": 1, + "trace_ids": [ + 1607 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.736, + "match_ratio": 1.0, + "composite_score": 0.736, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2007, + "trace_count": 1, + "trace_ids": [ + 1609 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.775, + "match_ratio": 1.0, + "composite_score": 0.775, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2008, + "trace_count": 1, + "trace_ids": [ + 1611 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.767, + "match_ratio": 1.0, + "composite_score": 0.767, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2009, + "trace_count": 1, + "trace_ids": [ + 1612 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.743, + "match_ratio": 1.0, + "composite_score": 0.743, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2010, + "trace_count": 1, + "trace_ids": [ + 1613 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.751, + "match_ratio": 1.0, + "composite_score": 0.751, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2011, + "trace_count": 1, + "trace_ids": [ + 1615 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.686, + "match_ratio": 1.0, + "composite_score": 0.686, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2012, + "trace_count": 1, + "trace_ids": [ + 1618 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.776, + "match_ratio": 1.0, + "composite_score": 0.776, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2013, + "trace_count": 1, + "trace_ids": [ + 1621 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.781, + "match_ratio": 1.0, + "composite_score": 0.781, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2014, + "trace_count": 1, + "trace_ids": [ + 1622 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.612, + "match_ratio": 1.0, + "composite_score": 0.612, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2015, + "trace_count": 1, + "trace_ids": [ + 1625 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.616, + "match_ratio": 1.0, + "composite_score": 0.616, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2016, + "trace_count": 1, + "trace_ids": [ + 1626 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.711, + "match_ratio": 1.0, + "composite_score": 0.711, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2017, + "trace_count": 1, + "trace_ids": [ + 1627 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.713, + "match_ratio": 1.0, + "composite_score": 0.713, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2018, + "trace_count": 1, + "trace_ids": [ + 1631 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.668, + "match_ratio": 1.0, + "composite_score": 0.668, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2019, + "trace_count": 1, + "trace_ids": [ + 1641 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.762, + "match_ratio": 1.0, + "composite_score": 0.762, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2020, + "trace_count": 1, + "trace_ids": [ + 1644 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.651, + "match_ratio": 1.0, + "composite_score": 0.651, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2021, + "trace_count": 1, + "trace_ids": [ + 1646 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.879, + "match_ratio": 1.0, + "composite_score": 0.879, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2022, + "trace_count": 1, + "trace_ids": [ + 1647 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.694, + "match_ratio": 1.0, + "composite_score": 0.694, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2023, + "trace_count": 1, + "trace_ids": [ + 1649 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.65, + "match_ratio": 1.0, + "composite_score": 0.65, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2024, + "trace_count": 1, + "trace_ids": [ + 1650 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.655, + "match_ratio": 1.0, + "composite_score": 0.655, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2025, + "trace_count": 1, + "trace_ids": [ + 1651 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.587, + "match_ratio": 1.0, + "composite_score": 0.587, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2026, + "trace_count": 1, + "trace_ids": [ + 1656 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.786, + "match_ratio": 1.0, + "composite_score": 0.786, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2027, + "trace_count": 1, + "trace_ids": [ + 1659 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.778, + "match_ratio": 1.0, + "composite_score": 0.778, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2028, + "trace_count": 1, + "trace_ids": [ + 1661 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.767, + "match_ratio": 1.0, + "composite_score": 0.767, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2029, + "trace_count": 1, + "trace_ids": [ + 1662 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.756, + "match_ratio": 1.0, + "composite_score": 0.756, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2030, + "trace_count": 1, + "trace_ids": [ + 1663 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.723, + "match_ratio": 1.0, + "composite_score": 0.723, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2031, + "trace_count": 1, + "trace_ids": [ + 1668 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.715, + "match_ratio": 1.0, + "composite_score": 0.715, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2032, + "trace_count": 1, + "trace_ids": [ + 1670 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.728, + "match_ratio": 1.0, + "composite_score": 0.728, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2033, + "trace_count": 1, + "trace_ids": [ + 1676 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.654, + "match_ratio": 1.0, + "composite_score": 0.654, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2034, + "trace_count": 1, + "trace_ids": [ + 1681 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.734, + "match_ratio": 1.0, + "composite_score": 0.734, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2035, + "trace_count": 1, + "trace_ids": [ + 1682 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.673, + "match_ratio": 1.0, + "composite_score": 0.673, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2036, + "trace_count": 1, + "trace_ids": [ + 1690 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.707, + "match_ratio": 1.0, + "composite_score": 0.707, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2037, + "trace_count": 1, + "trace_ids": [ + 1693 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.748, + "match_ratio": 1.0, + "composite_score": 0.748, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2038, + "trace_count": 1, + "trace_ids": [ + 1695 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.608, + "match_ratio": 1.0, + "composite_score": 0.608, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2039, + "trace_count": 1, + "trace_ids": [ + 1699 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.84, + "match_ratio": 1.0, + "composite_score": 0.84, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2040, + "trace_count": 1, + "trace_ids": [ + 1700 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.697, + "match_ratio": 1.0, + "composite_score": 0.697, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2041, + "trace_count": 1, + "trace_ids": [ + 1705 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.801, + "match_ratio": 1.0, + "composite_score": 0.801, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2042, + "trace_count": 1, + "trace_ids": [ + 1707 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.736, + "match_ratio": 1.0, + "composite_score": 0.736, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2043, + "trace_count": 1, + "trace_ids": [ + 1711 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.884, + "match_ratio": 1.0, + "composite_score": 0.884, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2044, + "trace_count": 1, + "trace_ids": [ + 1712 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.62, + "match_ratio": 1.0, + "composite_score": 0.62, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2045, + "trace_count": 1, + "trace_ids": [ + 1714 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.598, + "match_ratio": 1.0, + "composite_score": 0.526, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2046, + "trace_count": 1, + "trace_ids": [ + 1715 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.728, + "match_ratio": 1.0, + "composite_score": 0.728, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2047, + "trace_count": 1, + "trace_ids": [ + 1717 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.646, + "match_ratio": 1.0, + "composite_score": 0.646, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2048, + "trace_count": 1, + "trace_ids": [ + 1726 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.729, + "match_ratio": 1.0, + "composite_score": 0.729, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2049, + "trace_count": 1, + "trace_ids": [ + 1727 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.748, + "match_ratio": 1.0, + "composite_score": 0.748, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2050, + "trace_count": 1, + "trace_ids": [ + 1738 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.722, + "match_ratio": 1.0, + "composite_score": 0.722, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2051, + "trace_count": 1, + "trace_ids": [ + 1740 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.682, + "match_ratio": 1.0, + "composite_score": 0.682, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2052, + "trace_count": 1, + "trace_ids": [ + 1741 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.735, + "match_ratio": 1.0, + "composite_score": 0.735, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2053, + "trace_count": 1, + "trace_ids": [ + 1744 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.694, + "match_ratio": 1.0, + "composite_score": 0.694, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2054, + "trace_count": 1, + "trace_ids": [ + 1745 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.686, + "match_ratio": 0.833, + "composite_score": 0.617, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2055, + "trace_count": 1, + "trace_ids": [ + 1746 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.76, + "match_ratio": 1.0, + "composite_score": 0.76, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2056, + "trace_count": 1, + "trace_ids": [ + 1747 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.623, + "match_ratio": 1.0, + "composite_score": 0.623, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2057, + "trace_count": 1, + "trace_ids": [ + 1752 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.7, + "match_ratio": 1.0, + "composite_score": 0.7, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2058, + "trace_count": 1, + "trace_ids": [ + 1753 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.67, + "match_ratio": 1.0, + "composite_score": 0.67, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2059, + "trace_count": 1, + "trace_ids": [ + 1754 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.638, + "match_ratio": 1.0, + "composite_score": 0.638, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2060, + "trace_count": 1, + "trace_ids": [ + 1755 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.778, + "match_ratio": 1.0, + "composite_score": 0.778, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2061, + "trace_count": 1, + "trace_ids": [ + 1756 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.704, + "match_ratio": 1.0, + "composite_score": 0.704, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2062, + "trace_count": 1, + "trace_ids": [ + 1760 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.634, + "match_ratio": 0.667, + "composite_score": 0.507, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2063, + "trace_count": 1, + "trace_ids": [ + 1762 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.747, + "match_ratio": 1.0, + "composite_score": 0.747, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2064, + "trace_count": 1, + "trace_ids": [ + 1764 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.644, + "match_ratio": 1.0, + "composite_score": 0.644, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2065, + "trace_count": 1, + "trace_ids": [ + 1765 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.7, + "match_ratio": 1.0, + "composite_score": 0.7, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2066, + "trace_count": 1, + "trace_ids": [ + 1766 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.67, + "match_ratio": 1.0, + "composite_score": 0.67, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2067, + "trace_count": 1, + "trace_ids": [ + 1767 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.687, + "match_ratio": 1.0, + "composite_score": 0.687, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2068, + "trace_count": 1, + "trace_ids": [ + 1769 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.811, + "match_ratio": 1.0, + "composite_score": 0.811, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2069, + "trace_count": 1, + "trace_ids": [ + 1776 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.653, + "match_ratio": 1.0, + "composite_score": 0.653, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2070, + "trace_count": 1, + "trace_ids": [ + 1782 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.699, + "match_ratio": 1.0, + "composite_score": 0.699, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2071, + "trace_count": 1, + "trace_ids": [ + 1783 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.75, + "match_ratio": 1.0, + "composite_score": 0.75, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2072, + "trace_count": 1, + "trace_ids": [ + 1784 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.706, + "match_ratio": 1.0, + "composite_score": 0.706, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2073, + "trace_count": 1, + "trace_ids": [ + 1785 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.6, + "match_ratio": 1.0, + "composite_score": 0.6, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2074, + "trace_count": 1, + "trace_ids": [ + 1788 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.707, + "match_ratio": 1.0, + "composite_score": 0.707, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2075, + "trace_count": 1, + "trace_ids": [ + 1791 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.755, + "match_ratio": 1.0, + "composite_score": 0.755, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2076, + "trace_count": 1, + "trace_ids": [ + 1797 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.748, + "match_ratio": 1.0, + "composite_score": 0.748, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2077, + "trace_count": 1, + "trace_ids": [ + 1805 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.729, + "match_ratio": 1.0, + "composite_score": 0.729, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2078, + "trace_count": 1, + "trace_ids": [ + 1808 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.619, + "match_ratio": 1.0, + "composite_score": 0.619, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2079, + "trace_count": 1, + "trace_ids": [ + 1818 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.934, + "match_ratio": 1.0, + "composite_score": 0.934, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2080, + "trace_count": 1, + "trace_ids": [ + 1831 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.692, + "match_ratio": 1.0, + "composite_score": 0.692, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2081, + "trace_count": 1, + "trace_ids": [ + 1832 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.677, + "match_ratio": 1.0, + "composite_score": 0.677, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2082, + "trace_count": 1, + "trace_ids": [ + 1834 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.562, + "match_ratio": 1.0, + "composite_score": 0.562, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2083, + "trace_count": 1, + "trace_ids": [ + 1839 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.669, + "match_ratio": 1.0, + "composite_score": 0.669, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2084, + "trace_count": 1, + "trace_ids": [ + 1840 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.635, + "match_ratio": 1.0, + "composite_score": 0.635, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2085, + "trace_count": 1, + "trace_ids": [ + 1844 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.664, + "match_ratio": 0.6, + "composite_score": 0.505, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2086, + "trace_count": 1, + "trace_ids": [ + 1849 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.665, + "match_ratio": 0.6, + "composite_score": 0.505, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2087, + "trace_count": 1, + "trace_ids": [ + 1850 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.869, + "match_ratio": 1.0, + "composite_score": 0.869, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2088, + "trace_count": 1, + "trace_ids": [ + 1854 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.786, + "match_ratio": 1.0, + "composite_score": 0.786, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2089, + "trace_count": 1, + "trace_ids": [ + 1857 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.791, + "match_ratio": 1.0, + "composite_score": 0.791, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2090, + "trace_count": 1, + "trace_ids": [ + 1870 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.609, + "match_ratio": 1.0, + "composite_score": 0.609, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2091, + "trace_count": 1, + "trace_ids": [ + 1877 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.604, + "match_ratio": 1.0, + "composite_score": 0.604, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2092, + "trace_count": 1, + "trace_ids": [ + 1885 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.797, + "match_ratio": 1.0, + "composite_score": 0.797, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2093, + "trace_count": 1, + "trace_ids": [ + 1889 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.571, + "match_ratio": 1.0, + "composite_score": 0.571, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2094, + "trace_count": 1, + "trace_ids": [ + 1890 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.616, + "match_ratio": 1.0, + "composite_score": 0.616, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2095, + "trace_count": 1, + "trace_ids": [ + 1891 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.565, + "match_ratio": 1.0, + "composite_score": 0.565, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2096, + "trace_count": 1, + "trace_ids": [ + 1892 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.62, + "match_ratio": 1.0, + "composite_score": 0.62, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2097, + "trace_count": 1, + "trace_ids": [ + 1893 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.701, + "match_ratio": 1.0, + "composite_score": 0.701, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2098, + "trace_count": 1, + "trace_ids": [ + 1896 + ], + "binding": { + "id": 22, + "name": "Raoul Delfosse", + "avg_similarity": 0.666, + "match_ratio": 1.0, + "composite_score": 0.666, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2099, + "trace_count": 1, + "trace_ids": [ + 1900 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.726, + "match_ratio": 1.0, + "composite_score": 0.726, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2100, + "trace_count": 1, + "trace_ids": [ + 1901 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.693, + "match_ratio": 1.0, + "composite_score": 0.693, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2101, + "trace_count": 1, + "trace_ids": [ + 1902 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.566, + "match_ratio": 1.0, + "composite_score": 0.566, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2102, + "trace_count": 1, + "trace_ids": [ + 1903 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.598, + "match_ratio": 1.0, + "composite_score": 0.598, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2103, + "trace_count": 1, + "trace_ids": [ + 1905 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.785, + "match_ratio": 1.0, + "composite_score": 0.785, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2104, + "trace_count": 1, + "trace_ids": [ + 1906 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.71, + "match_ratio": 1.0, + "composite_score": 0.71, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2105, + "trace_count": 1, + "trace_ids": [ + 1907 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.725, + "match_ratio": 0.889, + "composite_score": 0.676, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2106, + "trace_count": 1, + "trace_ids": [ + 1908 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.654, + "match_ratio": 1.0, + "composite_score": 0.654, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2107, + "trace_count": 1, + "trace_ids": [ + 1909 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.718, + "match_ratio": 1.0, + "composite_score": 0.718, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2108, + "trace_count": 1, + "trace_ids": [ + 1911 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.713, + "match_ratio": 1.0, + "composite_score": 0.713, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2109, + "trace_count": 1, + "trace_ids": [ + 1913 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.722, + "match_ratio": 1.0, + "composite_score": 0.722, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2110, + "trace_count": 1, + "trace_ids": [ + 1915 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.855, + "match_ratio": 1.0, + "composite_score": 0.855, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2111, + "trace_count": 1, + "trace_ids": [ + 1916 + ], + "binding": { + "id": 22, + "name": "Raoul Delfosse", + "avg_similarity": 0.616, + "match_ratio": 1.0, + "composite_score": 0.616, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2112, + "trace_count": 1, + "trace_ids": [ + 1917 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.705, + "match_ratio": 1.0, + "composite_score": 0.705, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2113, + "trace_count": 1, + "trace_ids": [ + 1918 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.786, + "match_ratio": 1.0, + "composite_score": 0.786, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2114, + "trace_count": 1, + "trace_ids": [ + 1919 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.792, + "match_ratio": 1.0, + "composite_score": 0.792, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2115, + "trace_count": 1, + "trace_ids": [ + 1920 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.698, + "match_ratio": 1.0, + "composite_score": 0.698, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2116, + "trace_count": 1, + "trace_ids": [ + 1921 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.782, + "match_ratio": 1.0, + "composite_score": 0.782, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2117, + "trace_count": 1, + "trace_ids": [ + 1922 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.699, + "match_ratio": 1.0, + "composite_score": 0.639, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2118, + "trace_count": 1, + "trace_ids": [ + 1923 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.763, + "match_ratio": 1.0, + "composite_score": 0.763, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2119, + "trace_count": 1, + "trace_ids": [ + 1925 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.851, + "match_ratio": 1.0, + "composite_score": 0.851, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2120, + "trace_count": 1, + "trace_ids": [ + 1926 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.664, + "match_ratio": 1.0, + "composite_score": 0.664, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2121, + "trace_count": 1, + "trace_ids": [ + 1928 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.734, + "match_ratio": 1.0, + "composite_score": 0.734, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2122, + "trace_count": 1, + "trace_ids": [ + 1929 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.661, + "match_ratio": 1.0, + "composite_score": 0.661, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2123, + "trace_count": 1, + "trace_ids": [ + 1930 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.697, + "match_ratio": 1.0, + "composite_score": 0.697, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2124, + "trace_count": 1, + "trace_ids": [ + 1938 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.708, + "match_ratio": 1.0, + "composite_score": 0.648, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2125, + "trace_count": 1, + "trace_ids": [ + 1941 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.79, + "match_ratio": 1.0, + "composite_score": 0.79, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2126, + "trace_count": 1, + "trace_ids": [ + 1943 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.682, + "match_ratio": 1.0, + "composite_score": 0.655, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2127, + "trace_count": 1, + "trace_ids": [ + 1950 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.654, + "match_ratio": 1.0, + "composite_score": 0.654, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2128, + "trace_count": 1, + "trace_ids": [ + 1951 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.653, + "match_ratio": 1.0, + "composite_score": 0.653, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2129, + "trace_count": 1, + "trace_ids": [ + 1954 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.751, + "match_ratio": 1.0, + "composite_score": 0.751, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2130, + "trace_count": 1, + "trace_ids": [ + 1955 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.755, + "match_ratio": 1.0, + "composite_score": 0.755, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2131, + "trace_count": 1, + "trace_ids": [ + 1957 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.636, + "match_ratio": 1.0, + "composite_score": 0.636, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2132, + "trace_count": 1, + "trace_ids": [ + 1962 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.569, + "match_ratio": 1.0, + "composite_score": 0.569, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2133, + "trace_count": 1, + "trace_ids": [ + 1964 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.699, + "match_ratio": 1.0, + "composite_score": 0.699, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2134, + "trace_count": 1, + "trace_ids": [ + 1965 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.65, + "match_ratio": 1.0, + "composite_score": 0.65, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2135, + "trace_count": 1, + "trace_ids": [ + 1967 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.701, + "match_ratio": 1.0, + "composite_score": 0.701, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2136, + "trace_count": 1, + "trace_ids": [ + 1969 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.768, + "match_ratio": 1.0, + "composite_score": 0.768, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2137, + "trace_count": 1, + "trace_ids": [ + 1970 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.668, + "match_ratio": 1.0, + "composite_score": 0.668, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2138, + "trace_count": 1, + "trace_ids": [ + 1973 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.73, + "match_ratio": 1.0, + "composite_score": 0.73, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2139, + "trace_count": 1, + "trace_ids": [ + 1974 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.757, + "match_ratio": 1.0, + "composite_score": 0.757, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2140, + "trace_count": 1, + "trace_ids": [ + 1976 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.803, + "match_ratio": 1.0, + "composite_score": 0.803, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2141, + "trace_count": 1, + "trace_ids": [ + 1978 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.656, + "match_ratio": 1.0, + "composite_score": 0.656, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2142, + "trace_count": 1, + "trace_ids": [ + 1979 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.748, + "match_ratio": 1.0, + "composite_score": 0.748, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2143, + "trace_count": 1, + "trace_ids": [ + 1981 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.641, + "match_ratio": 1.0, + "composite_score": 0.641, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2144, + "trace_count": 1, + "trace_ids": [ + 1985 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.668, + "match_ratio": 1.0, + "composite_score": 0.668, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2145, + "trace_count": 1, + "trace_ids": [ + 1986 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.643, + "match_ratio": 1.0, + "composite_score": 0.643, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2146, + "trace_count": 1, + "trace_ids": [ + 1992 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.838, + "match_ratio": 1.0, + "composite_score": 0.838, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2147, + "trace_count": 1, + "trace_ids": [ + 2005 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.658, + "match_ratio": 1.0, + "composite_score": 0.658, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2148, + "trace_count": 1, + "trace_ids": [ + 2008 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.737, + "match_ratio": 1.0, + "composite_score": 0.737, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2149, + "trace_count": 1, + "trace_ids": [ + 2010 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.793, + "match_ratio": 1.0, + "composite_score": 0.793, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2150, + "trace_count": 1, + "trace_ids": [ + 2011 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.745, + "match_ratio": 1.0, + "composite_score": 0.745, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2151, + "trace_count": 1, + "trace_ids": [ + 2014 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.573, + "match_ratio": 1.0, + "composite_score": 0.573, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2152, + "trace_count": 1, + "trace_ids": [ + 2020 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.642, + "match_ratio": 1.0, + "composite_score": 0.642, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2153, + "trace_count": 1, + "trace_ids": [ + 2028 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.773, + "match_ratio": 1.0, + "composite_score": 0.773, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2154, + "trace_count": 1, + "trace_ids": [ + 2029 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.66, + "match_ratio": 1.0, + "composite_score": 0.66, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2155, + "trace_count": 1, + "trace_ids": [ + 2031 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.695, + "match_ratio": 1.0, + "composite_score": 0.695, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2156, + "trace_count": 1, + "trace_ids": [ + 2036 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.611, + "match_ratio": 1.0, + "composite_score": 0.611, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2157, + "trace_count": 1, + "trace_ids": [ + 2038 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.776, + "match_ratio": 1.0, + "composite_score": 0.776, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2158, + "trace_count": 1, + "trace_ids": [ + 2069 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.676, + "match_ratio": 1.0, + "composite_score": 0.676, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2159, + "trace_count": 1, + "trace_ids": [ + 2070 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.603, + "match_ratio": 1.0, + "composite_score": 0.603, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2160, + "trace_count": 1, + "trace_ids": [ + 2079 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.621, + "match_ratio": 1.0, + "composite_score": 0.621, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2161, + "trace_count": 1, + "trace_ids": [ + 2085 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.678, + "match_ratio": 1.0, + "composite_score": 0.678, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2162, + "trace_count": 1, + "trace_ids": [ + 2088 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.666, + "match_ratio": 1.0, + "composite_score": 0.666, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2163, + "trace_count": 1, + "trace_ids": [ + 2089 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.657, + "match_ratio": 1.0, + "composite_score": 0.657, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2164, + "trace_count": 1, + "trace_ids": [ + 2092 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.727, + "match_ratio": 1.0, + "composite_score": 0.727, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2165, + "trace_count": 1, + "trace_ids": [ + 2094 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.712, + "match_ratio": 1.0, + "composite_score": 0.712, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2166, + "trace_count": 1, + "trace_ids": [ + 2098 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.664, + "match_ratio": 1.0, + "composite_score": 0.664, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2167, + "trace_count": 1, + "trace_ids": [ + 2107 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.761, + "match_ratio": 1.0, + "composite_score": 0.761, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2168, + "trace_count": 1, + "trace_ids": [ + 2116 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.667, + "match_ratio": 1.0, + "composite_score": 0.667, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2169, + "trace_count": 1, + "trace_ids": [ + 2118 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.581, + "match_ratio": 1.0, + "composite_score": 0.581, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2170, + "trace_count": 1, + "trace_ids": [ + 2119 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.694, + "match_ratio": 1.0, + "composite_score": 0.694, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2171, + "trace_count": 1, + "trace_ids": [ + 2122 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.639, + "match_ratio": 1.0, + "composite_score": 0.639, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2172, + "trace_count": 1, + "trace_ids": [ + 2135 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.753, + "match_ratio": 1.0, + "composite_score": 0.753, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2173, + "trace_count": 1, + "trace_ids": [ + 2137 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.781, + "match_ratio": 1.0, + "composite_score": 0.781, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2174, + "trace_count": 1, + "trace_ids": [ + 2138 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.77, + "match_ratio": 1.0, + "composite_score": 0.77, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2175, + "trace_count": 1, + "trace_ids": [ + 2144 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.823, + "match_ratio": 1.0, + "composite_score": 0.823, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2176, + "trace_count": 1, + "trace_ids": [ + 2145 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.659, + "match_ratio": 1.0, + "composite_score": 0.659, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2177, + "trace_count": 1, + "trace_ids": [ + 2148 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.625, + "match_ratio": 1.0, + "composite_score": 0.625, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2178, + "trace_count": 1, + "trace_ids": [ + 2152 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.671, + "match_ratio": 1.0, + "composite_score": 0.671, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2179, + "trace_count": 1, + "trace_ids": [ + 2161 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.732, + "match_ratio": 1.0, + "composite_score": 0.732, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2180, + "trace_count": 1, + "trace_ids": [ + 2165 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.597, + "match_ratio": 1.0, + "composite_score": 0.597, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2181, + "trace_count": 1, + "trace_ids": [ + 2168 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.847, + "match_ratio": 1.0, + "composite_score": 0.847, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2182, + "trace_count": 1, + "trace_ids": [ + 2169 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.71, + "match_ratio": 1.0, + "composite_score": 0.71, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2183, + "trace_count": 1, + "trace_ids": [ + 2179 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.655, + "match_ratio": 1.0, + "composite_score": 0.655, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2184, + "trace_count": 1, + "trace_ids": [ + 2181 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.649, + "match_ratio": 1.0, + "composite_score": 0.649, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2185, + "trace_count": 1, + "trace_ids": [ + 2184 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.812, + "match_ratio": 1.0, + "composite_score": 0.812, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2186, + "trace_count": 1, + "trace_ids": [ + 2187 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.637, + "match_ratio": 1.0, + "composite_score": 0.637, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2187, + "trace_count": 1, + "trace_ids": [ + 2189 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.556, + "match_ratio": 1.0, + "composite_score": 0.556, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2188, + "trace_count": 1, + "trace_ids": [ + 2192 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.695, + "match_ratio": 1.0, + "composite_score": 0.695, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2189, + "trace_count": 1, + "trace_ids": [ + 2202 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.617, + "match_ratio": 1.0, + "composite_score": 0.617, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2190, + "trace_count": 1, + "trace_ids": [ + 2203 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.765, + "match_ratio": 1.0, + "composite_score": 0.765, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2191, + "trace_count": 1, + "trace_ids": [ + 2205 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.724, + "match_ratio": 1.0, + "composite_score": 0.724, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2192, + "trace_count": 1, + "trace_ids": [ + 2210 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.661, + "match_ratio": 1.0, + "composite_score": 0.661, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2193, + "trace_count": 1, + "trace_ids": [ + 2212 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.632, + "match_ratio": 1.0, + "composite_score": 0.632, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2194, + "trace_count": 1, + "trace_ids": [ + 2215 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.787, + "match_ratio": 1.0, + "composite_score": 0.787, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2195, + "trace_count": 1, + "trace_ids": [ + 2216 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.69, + "match_ratio": 1.0, + "composite_score": 0.69, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2196, + "trace_count": 1, + "trace_ids": [ + 2217 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.581, + "match_ratio": 1.0, + "composite_score": 0.581, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2197, + "trace_count": 1, + "trace_ids": [ + 2220 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.573, + "match_ratio": 1.0, + "composite_score": 0.573, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2198, + "trace_count": 1, + "trace_ids": [ + 2221 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.663, + "match_ratio": 1.0, + "composite_score": 0.663, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2199, + "trace_count": 1, + "trace_ids": [ + 2222 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.676, + "match_ratio": 1.0, + "composite_score": 0.676, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2200, + "trace_count": 1, + "trace_ids": [ + 2224 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.733, + "match_ratio": 1.0, + "composite_score": 0.733, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2201, + "trace_count": 1, + "trace_ids": [ + 2228 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.677, + "match_ratio": 1.0, + "composite_score": 0.677, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2202, + "trace_count": 1, + "trace_ids": [ + 2230 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.684, + "match_ratio": 1.0, + "composite_score": 0.684, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2203, + "trace_count": 1, + "trace_ids": [ + 2233 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.741, + "match_ratio": 1.0, + "composite_score": 0.741, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2204, + "trace_count": 1, + "trace_ids": [ + 2234 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.612, + "match_ratio": 1.0, + "composite_score": 0.612, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2205, + "trace_count": 1, + "trace_ids": [ + 2237 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.76, + "match_ratio": 1.0, + "composite_score": 0.76, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2206, + "trace_count": 1, + "trace_ids": [ + 2238 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.556, + "match_ratio": 1.0, + "composite_score": 0.556, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2207, + "trace_count": 1, + "trace_ids": [ + 2253 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.692, + "match_ratio": 1.0, + "composite_score": 0.692, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2208, + "trace_count": 1, + "trace_ids": [ + 2256 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.87, + "match_ratio": 1.0, + "composite_score": 0.87, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2209, + "trace_count": 1, + "trace_ids": [ + 2260 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.638, + "match_ratio": 1.0, + "composite_score": 0.638, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2210, + "trace_count": 1, + "trace_ids": [ + 2261 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.684, + "match_ratio": 1.0, + "composite_score": 0.684, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2211, + "trace_count": 1, + "trace_ids": [ + 2264 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.727, + "match_ratio": 1.0, + "composite_score": 0.727, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2212, + "trace_count": 1, + "trace_ids": [ + 2268 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.809, + "match_ratio": 1.0, + "composite_score": 0.809, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2213, + "trace_count": 1, + "trace_ids": [ + 2274 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.772, + "match_ratio": 1.0, + "composite_score": 0.772, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2214, + "trace_count": 1, + "trace_ids": [ + 2284 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.687, + "match_ratio": 1.0, + "composite_score": 0.687, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2215, + "trace_count": 1, + "trace_ids": [ + 2286 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.614, + "match_ratio": 1.0, + "composite_score": 0.614, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2216, + "trace_count": 1, + "trace_ids": [ + 2288 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.67, + "match_ratio": 1.0, + "composite_score": 0.67, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2217, + "trace_count": 1, + "trace_ids": [ + 2289 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.741, + "match_ratio": 1.0, + "composite_score": 0.741, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2218, + "trace_count": 1, + "trace_ids": [ + 2290 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.772, + "match_ratio": 1.0, + "composite_score": 0.772, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2219, + "trace_count": 1, + "trace_ids": [ + 2291 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.765, + "match_ratio": 1.0, + "composite_score": 0.765, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2220, + "trace_count": 1, + "trace_ids": [ + 2292 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.756, + "match_ratio": 1.0, + "composite_score": 0.756, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2221, + "trace_count": 1, + "trace_ids": [ + 2304 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.664, + "match_ratio": 1.0, + "composite_score": 0.664, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2222, + "trace_count": 1, + "trace_ids": [ + 2309 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.683, + "match_ratio": 1.0, + "composite_score": 0.683, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2223, + "trace_count": 1, + "trace_ids": [ + 2311 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.599, + "match_ratio": 1.0, + "composite_score": 0.599, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2224, + "trace_count": 1, + "trace_ids": [ + 2312 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.704, + "match_ratio": 1.0, + "composite_score": 0.704, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2225, + "trace_count": 1, + "trace_ids": [ + 2313 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.766, + "match_ratio": 1.0, + "composite_score": 0.766, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2226, + "trace_count": 1, + "trace_ids": [ + 2314 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.737, + "match_ratio": 1.0, + "composite_score": 0.737, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2227, + "trace_count": 1, + "trace_ids": [ + 2317 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.736, + "match_ratio": 1.0, + "composite_score": 0.736, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2228, + "trace_count": 1, + "trace_ids": [ + 2318 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.597, + "match_ratio": 1.0, + "composite_score": 0.597, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2229, + "trace_count": 1, + "trace_ids": [ + 2325 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.636, + "match_ratio": 1.0, + "composite_score": 0.636, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2230, + "trace_count": 1, + "trace_ids": [ + 2335 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.794, + "match_ratio": 1.0, + "composite_score": 0.794, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2231, + "trace_count": 1, + "trace_ids": [ + 2337 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.662, + "match_ratio": 1.0, + "composite_score": 0.662, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2232, + "trace_count": 1, + "trace_ids": [ + 2339 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.687, + "match_ratio": 1.0, + "composite_score": 0.687, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2233, + "trace_count": 1, + "trace_ids": [ + 2340 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.645, + "match_ratio": 0.909, + "composite_score": 0.61, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2234, + "trace_count": 1, + "trace_ids": [ + 2341 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.685, + "match_ratio": 1.0, + "composite_score": 0.685, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2235, + "trace_count": 1, + "trace_ids": [ + 2342 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.671, + "match_ratio": 1.0, + "composite_score": 0.646, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2236, + "trace_count": 1, + "trace_ids": [ + 2343 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.759, + "match_ratio": 1.0, + "composite_score": 0.759, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2237, + "trace_count": 1, + "trace_ids": [ + 2344 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.573, + "match_ratio": 1.0, + "composite_score": 0.573, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2238, + "trace_count": 1, + "trace_ids": [ + 2345 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.672, + "match_ratio": 1.0, + "composite_score": 0.672, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2239, + "trace_count": 1, + "trace_ids": [ + 2346 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.621, + "match_ratio": 1.0, + "composite_score": 0.621, + "source": "video_ref_r2" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2240, + "trace_count": 1, + "trace_ids": [ + 7 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.576, + "match_ratio": 1.0, + "composite_score": 0.576, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2241, + "trace_count": 1, + "trace_ids": [ + 13 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.847, + "match_ratio": 1.0, + "composite_score": 0.847, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2242, + "trace_count": 1, + "trace_ids": [ + 34 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.851, + "match_ratio": 1.0, + "composite_score": 0.851, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2243, + "trace_count": 1, + "trace_ids": [ + 39 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.822, + "match_ratio": 1.0, + "composite_score": 0.822, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2244, + "trace_count": 1, + "trace_ids": [ + 40 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.657, + "match_ratio": 1.0, + "composite_score": 0.657, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2245, + "trace_count": 1, + "trace_ids": [ + 52 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.555, + "match_ratio": 1.0, + "composite_score": 0.555, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2246, + "trace_count": 1, + "trace_ids": [ + 105 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.825, + "match_ratio": 1.0, + "composite_score": 0.825, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2247, + "trace_count": 1, + "trace_ids": [ + 133 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.727, + "match_ratio": 1.0, + "composite_score": 0.727, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2248, + "trace_count": 1, + "trace_ids": [ + 135 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.711, + "match_ratio": 1.0, + "composite_score": 0.711, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2249, + "trace_count": 1, + "trace_ids": [ + 138 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.64, + "match_ratio": 1.0, + "composite_score": 0.64, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2250, + "trace_count": 1, + "trace_ids": [ + 166 + ], + "binding": { + "id": 22, + "name": "Raoul Delfosse", + "avg_similarity": 0.693, + "match_ratio": 1.0, + "composite_score": 0.693, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2251, + "trace_count": 1, + "trace_ids": [ + 184 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.701, + "match_ratio": 1.0, + "composite_score": 0.701, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2252, + "trace_count": 1, + "trace_ids": [ + 250 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.772, + "match_ratio": 1.0, + "composite_score": 0.772, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2253, + "trace_count": 1, + "trace_ids": [ + 268 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.614, + "match_ratio": 1.0, + "composite_score": 0.614, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2254, + "trace_count": 1, + "trace_ids": [ + 290 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.649, + "match_ratio": 1.0, + "composite_score": 0.649, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2255, + "trace_count": 1, + "trace_ids": [ + 292 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.845, + "match_ratio": 1.0, + "composite_score": 0.845, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2256, + "trace_count": 1, + "trace_ids": [ + 295 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.642, + "match_ratio": 1.0, + "composite_score": 0.642, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2257, + "trace_count": 1, + "trace_ids": [ + 321 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.713, + "match_ratio": 1.0, + "composite_score": 0.713, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2258, + "trace_count": 1, + "trace_ids": [ + 326 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.578, + "match_ratio": 1.0, + "composite_score": 0.578, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2259, + "trace_count": 1, + "trace_ids": [ + 380 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.745, + "match_ratio": 1.0, + "composite_score": 0.745, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2260, + "trace_count": 1, + "trace_ids": [ + 388 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.633, + "match_ratio": 1.0, + "composite_score": 0.633, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2261, + "trace_count": 1, + "trace_ids": [ + 439 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.743, + "match_ratio": 1.0, + "composite_score": 0.743, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2262, + "trace_count": 1, + "trace_ids": [ + 454 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.591, + "match_ratio": 1.0, + "composite_score": 0.591, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2263, + "trace_count": 1, + "trace_ids": [ + 492 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.664, + "match_ratio": 1.0, + "composite_score": 0.664, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2264, + "trace_count": 1, + "trace_ids": [ + 527 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.725, + "match_ratio": 1.0, + "composite_score": 0.694, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2265, + "trace_count": 1, + "trace_ids": [ + 537 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.723, + "match_ratio": 1.0, + "composite_score": 0.723, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2266, + "trace_count": 1, + "trace_ids": [ + 540 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.554, + "match_ratio": 1.0, + "composite_score": 0.554, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2267, + "trace_count": 1, + "trace_ids": [ + 561 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.819, + "match_ratio": 1.0, + "composite_score": 0.819, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2268, + "trace_count": 1, + "trace_ids": [ + 562 + ], + "binding": { + "id": 10, + "name": "Walter Matthau", + "avg_similarity": 0.701, + "match_ratio": 1.0, + "composite_score": 0.701, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2269, + "trace_count": 1, + "trace_ids": [ + 564 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.64, + "match_ratio": 1.0, + "composite_score": 0.64, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2270, + "trace_count": 1, + "trace_ids": [ + 611 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.616, + "match_ratio": 1.0, + "composite_score": 0.616, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2271, + "trace_count": 1, + "trace_ids": [ + 614 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.635, + "match_ratio": 1.0, + "composite_score": 0.635, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2272, + "trace_count": 1, + "trace_ids": [ + 615 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.742, + "match_ratio": 1.0, + "composite_score": 0.742, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2273, + "trace_count": 1, + "trace_ids": [ + 617 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.645, + "match_ratio": 1.0, + "composite_score": 0.645, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2274, + "trace_count": 1, + "trace_ids": [ + 628 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.626, + "match_ratio": 1.0, + "composite_score": 0.626, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2275, + "trace_count": 1, + "trace_ids": [ + 634 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.612, + "match_ratio": 1.0, + "composite_score": 0.612, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2276, + "trace_count": 1, + "trace_ids": [ + 648 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.582, + "match_ratio": 1.0, + "composite_score": 0.582, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2277, + "trace_count": 1, + "trace_ids": [ + 658 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.744, + "match_ratio": 1.0, + "composite_score": 0.744, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2278, + "trace_count": 1, + "trace_ids": [ + 670 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.553, + "match_ratio": 1.0, + "composite_score": 0.553, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2279, + "trace_count": 1, + "trace_ids": [ + 672 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.633, + "match_ratio": 1.0, + "composite_score": 0.633, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2280, + "trace_count": 1, + "trace_ids": [ + 680 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.77, + "match_ratio": 1.0, + "composite_score": 0.77, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2281, + "trace_count": 1, + "trace_ids": [ + 695 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.669, + "match_ratio": 1.0, + "composite_score": 0.669, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2282, + "trace_count": 1, + "trace_ids": [ + 728 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.627, + "match_ratio": 1.0, + "composite_score": 0.627, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2283, + "trace_count": 1, + "trace_ids": [ + 732 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.635, + "match_ratio": 1.0, + "composite_score": 0.635, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2284, + "trace_count": 1, + "trace_ids": [ + 762 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.664, + "match_ratio": 1.0, + "composite_score": 0.664, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2285, + "trace_count": 1, + "trace_ids": [ + 770 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.597, + "match_ratio": 1.0, + "composite_score": 0.525, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2286, + "trace_count": 1, + "trace_ids": [ + 791 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.795, + "match_ratio": 1.0, + "composite_score": 0.795, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2287, + "trace_count": 1, + "trace_ids": [ + 814 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "avg_similarity": 0.723, + "match_ratio": 1.0, + "composite_score": 0.723, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2288, + "trace_count": 1, + "trace_ids": [ + 822 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.66, + "match_ratio": 1.0, + "composite_score": 0.66, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2289, + "trace_count": 1, + "trace_ids": [ + 823 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.691, + "match_ratio": 1.0, + "composite_score": 0.691, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2290, + "trace_count": 1, + "trace_ids": [ + 829 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.798, + "match_ratio": 1.0, + "composite_score": 0.798, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2291, + "trace_count": 1, + "trace_ids": [ + 846 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.814, + "match_ratio": 1.0, + "composite_score": 0.814, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2292, + "trace_count": 1, + "trace_ids": [ + 847 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.722, + "match_ratio": 1.0, + "composite_score": 0.722, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2293, + "trace_count": 1, + "trace_ids": [ + 872 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.648, + "match_ratio": 1.0, + "composite_score": 0.648, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2294, + "trace_count": 1, + "trace_ids": [ + 875 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.64, + "match_ratio": 1.0, + "composite_score": 0.64, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2295, + "trace_count": 1, + "trace_ids": [ + 931 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.675, + "match_ratio": 1.0, + "composite_score": 0.675, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2296, + "trace_count": 1, + "trace_ids": [ + 933 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.672, + "match_ratio": 1.0, + "composite_score": 0.672, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2297, + "trace_count": 1, + "trace_ids": [ + 944 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.766, + "match_ratio": 1.0, + "composite_score": 0.766, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2298, + "trace_count": 1, + "trace_ids": [ + 948 + ], + "binding": { + "id": 13, + "name": "Dominique Minot", + "avg_similarity": 0.624, + "match_ratio": 1.0, + "composite_score": 0.624, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2299, + "trace_count": 1, + "trace_ids": [ + 1087 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.628, + "match_ratio": 1.0, + "composite_score": 0.628, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2300, + "trace_count": 1, + "trace_ids": [ + 1097 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.72, + "match_ratio": 1.0, + "composite_score": 0.72, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2301, + "trace_count": 1, + "trace_ids": [ + 1125 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.653, + "match_ratio": 1.0, + "composite_score": 0.653, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2302, + "trace_count": 1, + "trace_ids": [ + 1235 + ], + "binding": { + "id": 22, + "name": "Raoul Delfosse", + "avg_similarity": 0.69, + "match_ratio": 1.0, + "composite_score": 0.69, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2303, + "trace_count": 1, + "trace_ids": [ + 1256 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.628, + "match_ratio": 1.0, + "composite_score": 0.628, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2304, + "trace_count": 1, + "trace_ids": [ + 1282 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.733, + "match_ratio": 1.0, + "composite_score": 0.733, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2305, + "trace_count": 1, + "trace_ids": [ + 1290 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.659, + "match_ratio": 1.0, + "composite_score": 0.659, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2306, + "trace_count": 1, + "trace_ids": [ + 1301 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.576, + "match_ratio": 1.0, + "composite_score": 0.576, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2307, + "trace_count": 1, + "trace_ids": [ + 1320 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.677, + "match_ratio": 1.0, + "composite_score": 0.677, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2308, + "trace_count": 1, + "trace_ids": [ + 1323 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.655, + "match_ratio": 1.0, + "composite_score": 0.655, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2309, + "trace_count": 1, + "trace_ids": [ + 1375 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.676, + "match_ratio": 1.0, + "composite_score": 0.676, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2310, + "trace_count": 1, + "trace_ids": [ + 1386 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.687, + "match_ratio": 1.0, + "composite_score": 0.687, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2311, + "trace_count": 1, + "trace_ids": [ + 1388 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.772, + "match_ratio": 1.0, + "composite_score": 0.772, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2312, + "trace_count": 1, + "trace_ids": [ + 1391 + ], + "binding": { + "id": 8, + "name": "Cary Grant", + "avg_similarity": 0.661, + "match_ratio": 1.0, + "composite_score": 0.661, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2313, + "trace_count": 1, + "trace_ids": [ + 1398 + ], + "binding": { + "id": 22, + "name": "Raoul Delfosse", + "avg_similarity": 0.84, + "match_ratio": 1.0, + "composite_score": 0.84, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2314, + "trace_count": 1, + "trace_ids": [ + 1400 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.602, + "match_ratio": 1.0, + "composite_score": 0.602, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2315, + "trace_count": 1, + "trace_ids": [ + 1407 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.736, + "match_ratio": 1.0, + "composite_score": 0.736, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2316, + "trace_count": 1, + "trace_ids": [ + 1412 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.578, + "match_ratio": 1.0, + "composite_score": 0.578, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2317, + "trace_count": 1, + "trace_ids": [ + 1420 + ], + "binding": { + "id": 22, + "name": "Raoul Delfosse", + "avg_similarity": 0.635, + "match_ratio": 1.0, + "composite_score": 0.635, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2318, + "trace_count": 1, + "trace_ids": [ + 1421 + ], + "binding": { + "id": 22, + "name": "Raoul Delfosse", + "avg_similarity": 0.605, + "match_ratio": 1.0, + "composite_score": 0.605, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2319, + "trace_count": 1, + "trace_ids": [ + 1422 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.563, + "match_ratio": 1.0, + "composite_score": 0.563, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2320, + "trace_count": 1, + "trace_ids": [ + 1428 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.642, + "match_ratio": 1.0, + "composite_score": 0.642, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2321, + "trace_count": 1, + "trace_ids": [ + 1434 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.595, + "match_ratio": 1.0, + "composite_score": 0.595, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2322, + "trace_count": 1, + "trace_ids": [ + 1517 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.685, + "match_ratio": 1.0, + "composite_score": 0.685, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2323, + "trace_count": 1, + "trace_ids": [ + 1565 + ], + "binding": { + "id": 22, + "name": "Raoul Delfosse", + "avg_similarity": 0.828, + "match_ratio": 1.0, + "composite_score": 0.828, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2324, + "trace_count": 1, + "trace_ids": [ + 1571 + ], + "binding": { + "id": 12, + "name": "George Kennedy", + "avg_similarity": 0.672, + "match_ratio": 1.0, + "composite_score": 0.672, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2325, + "trace_count": 1, + "trace_ids": [ + 1589 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.711, + "match_ratio": 1.0, + "composite_score": 0.711, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2326, + "trace_count": 1, + "trace_ids": [ + 1652 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.605, + "match_ratio": 1.0, + "composite_score": 0.605, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2327, + "trace_count": 1, + "trace_ids": [ + 1685 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.837, + "match_ratio": 1.0, + "composite_score": 0.837, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2328, + "trace_count": 1, + "trace_ids": [ + 1689 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.79, + "match_ratio": 1.0, + "composite_score": 0.79, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2329, + "trace_count": 1, + "trace_ids": [ + 1758 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.72, + "match_ratio": 1.0, + "composite_score": 0.72, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2330, + "trace_count": 1, + "trace_ids": [ + 1810 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.858, + "match_ratio": 1.0, + "composite_score": 0.858, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2331, + "trace_count": 1, + "trace_ids": [ + 1961 + ], + "binding": { + "id": 11, + "name": "James Coburn", + "avg_similarity": 0.725, + "match_ratio": 1.0, + "composite_score": 0.725, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2332, + "trace_count": 1, + "trace_ids": [ + 1997 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.656, + "match_ratio": 1.0, + "composite_score": 0.656, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2333, + "trace_count": 1, + "trace_ids": [ + 2035 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.749, + "match_ratio": 1.0, + "composite_score": 0.749, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2334, + "trace_count": 1, + "trace_ids": [ + 2120 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.608, + "match_ratio": 1.0, + "composite_score": 0.608, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2335, + "trace_count": 1, + "trace_ids": [ + 2134 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.774, + "match_ratio": 1.0, + "composite_score": 0.774, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2336, + "trace_count": 1, + "trace_ids": [ + 2150 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.62, + "match_ratio": 1.0, + "composite_score": 0.62, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2337, + "trace_count": 1, + "trace_ids": [ + 2186 + ], + "binding": { + "id": 14, + "name": "Ned Glass", + "avg_similarity": 0.715, + "match_ratio": 1.0, + "composite_score": 0.715, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2338, + "trace_count": 1, + "trace_ids": [ + 2240 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.763, + "match_ratio": 1.0, + "composite_score": 0.763, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2339, + "trace_count": 1, + "trace_ids": [ + 2301 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.833, + "match_ratio": 1.0, + "composite_score": 0.833, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2340, + "trace_count": 1, + "trace_ids": [ + 2338 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.853, + "match_ratio": 1.0, + "composite_score": 0.853, + "source": "video_ref_r3" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2341, + "trace_count": 1, + "trace_ids": [ + 62 + ], + "binding": { + "id": 22, + "name": "Raoul Delfosse", + "avg_similarity": 0.56, + "match_ratio": 1.0, + "composite_score": 0.56, + "source": "video_ref_r4" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2342, + "trace_count": 1, + "trace_ids": [ + 390 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.577, + "match_ratio": 1.0, + "composite_score": 0.577, + "source": "video_ref_r4" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2343, + "trace_count": 1, + "trace_ids": [ + 622 + ], + "binding": { + "id": 15, + "name": "Jacques Marin", + "avg_similarity": 0.611, + "match_ratio": 1.0, + "composite_score": 0.611, + "source": "video_ref_r4" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2344, + "trace_count": 1, + "trace_ids": [ + 631 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.875, + "match_ratio": 1.0, + "composite_score": 0.875, + "source": "video_ref_r4" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2345, + "trace_count": 1, + "trace_ids": [ + 779 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.628, + "match_ratio": 1.0, + "composite_score": 0.628, + "source": "video_ref_r4" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + }, + { + "cluster_id": 2346, + "trace_count": 1, + "trace_ids": [ + 960 + ], + "binding": { + "id": 9, + "name": "Audrey Hepburn", + "avg_similarity": 0.557, + "match_ratio": 1.0, + "composite_score": 0.557, + "source": "video_ref_r4" + }, + "binding_stage": "stage1_face_level", + "dominant_speaker": null + } +] \ No newline at end of file diff --git a/experiments/identity_clustering/results/exp_009/metrics.json b/experiments/identity_clustering/results/exp_009/metrics.json new file mode 100644 index 0000000..d5cbd0f --- /dev/null +++ b/experiments/identity_clustering/results/exp_009/metrics.json @@ -0,0 +1,10 @@ +{ + "total_traces": 2347, + "stage1_bound": 2322, + "stage1_bound_traces": 2322, + "stage2_clusters": 25, + "stage2_unbound_clustered": 25, + "total_clusters": 2347, + "execution_time_s": 34.77600812911987, + "coverage": 1.0 +} \ No newline at end of file