--- license: cc-by-4.0 task_categories: - video-classification - image-to-video language: - en tags: - i2v - image-to-video - human-preferences - rlhf - dpo - video-generation - preference-data - pika - cogvideox - video - text pretty_name: I2V Human Preferences (Medium) size_categories: - 1K= 0.8) print(f"{len(high_agreement)} rows with ≥80% agreement") ``` ### Train a Reward Model ```python from datasets import load_dataset ds = load_dataset("datapointai/image-2-video-human-preferences-medium", split="train") for row in ds: prompt = row["prompt"] reference = row["reference_image"] winner = row["winner"] pika_score = row["pika_win_rate"] cog_score = row["cog_win_rate"] # Use as preference pairs for DPO, reward modeling, etc. # winner == "pika" → pika_video is preferred over cog_video # winner == "cog" → cog_video is preferred over pika_video # winner == "tie" → no clear preference (consider filtering) ``` ### Explore Ties ```python # Analyze the most ambiguous comparisons ties = ds.filter(lambda x: x["winner"] == "tie") print(f"{len(ties)} ties ({len(ties)/len(ds)*100:.1f}%)") ``` ## Data Collection Annotations were collected through [Datapoint AI](https://trydatapoint.com)'s consumer app SDK using forced-choice pairwise comparison. Each comparison was annotated by **10 unique annotators**. Annotators were shown the reference image alongside both candidate videos and asked which video better represents the prompt. Video display positions (left/right) were randomized per session to mitigate position bias. ### Annotation Quality - **Majority vote**: The `winner` field reflects the choice of >50% of annotators (or `tie` at exactly 50/50) - **Agreement scores**: The `agreement` field measures consensus — higher values indicate stronger annotator agreement - **Time tracking**: `time_taken_ms` in detailed results allows filtering out suspiciously fast annotations ## License CC-BY-4.0 ## Citation ```bibtex @dataset{datapointai_i2v_preferences_2026, title={I2V Human Preferences: Pika vs CogVideoX}, author={Datapoint AI}, year={2026}, url={https://huggingface.co/datasets/datapointai/image-2-video-human-preferences-medium}, note={20,000 pairwise human preference labels for image-to-video generation quality} } ```