Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -12,4 +12,60 @@ tags:
|
|
| 12 |
- nlp
|
| 13 |
- embeddings
|
| 14 |
pretty_name: YouTube Alignment – Recommendation Title Embeddings
|
| 15 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
- nlp
|
| 13 |
- embeddings
|
| 14 |
pretty_name: YouTube Alignment – Recommendation Title Embeddings
|
| 15 |
+
---
|
| 16 |
+
# YouTube Alignment: Recommendation Title Embeddings
|
| 17 |
+
|
| 18 |
+
Dataset accompanying the paper "Evaluating feedback mechanisms for aligning YouTube recommendations with user interests" (Cho, Hale, Zhao, Shadbolt & Przybylski; University of Oxford).
|
| 19 |
+
|
| 20 |
+
## Dataset Summary
|
| 21 |
+
|
| 22 |
+
This dataset contains YouTube homepage recommendation titles and their semantic embeddings, collected from 12 simulated adolescent puzzle-gamer accounts across four experimental personas. It supports a controlled output-based audit of how YouTube's explicit feedback controls ('like' and 'not-interested') shift recommendation content relative to implicit engagement alone.
|
| 23 |
+
|
| 24 |
+
## Experimental Design
|
| 25 |
+
|
| 26 |
+
We used a 2x2 between-subjects design crossing two explicit feedback conditions: (i) liking watched puzzle-gaming videos and (ii) clicking 'not-interested' on non-puzzle-gaming homepage recommendations. This yielded four personas: Watch (control), Like, Not-Interested, and Combined.
|
| 27 |
+
|
| 28 |
+
Three independent accounts were created per persona (12 accounts total). Accounts were modelled on a 13-year-old UK adolescent puzzle-gamer archetype (DoB: 12 March 2012; gender: Rather not say). All accounts were trained in synchrony over 7 days on a randomised playlist of 70 puzzle-gaming videos (10 videos/day). Homepage recommendations were scraped hourly during a 5-day maintenance phase (days 3-7). The 2-day warm-up period was excluded from analysis. Device and software were fixed across all accounts (MacBook Pro 13", macOS Ventura 13.0.1, Chrome 134.0.6998.89; single UK geolocation) to minimise confounds.
|
| 29 |
+
|
| 30 |
+
## Data Collection
|
| 31 |
+
|
| 32 |
+
Recommendation titles were collected using an automated scraper adapted from TheirTube (Kihara 2020). Standard video recommendations were retained; Shorts and advertisements were excluded. Titles were cleaned by removing emojis, punctuation, and excess whitespace, and only English-language titles were kept.
|
| 33 |
+
|
| 34 |
+
Total recommendations collected: Watch (control) 1,517 | Like 1,359 | Not-Interested 1,200 | Combined 1,220 | Total 5,296.
|
| 35 |
+
|
| 36 |
+
## Embeddings
|
| 37 |
+
|
| 38 |
+
Titles were embedded using Sentence-BERT (all-MiniLM-L6-v2; Reimers and Gurevych 2019). Embeddings were reduced from 768 to 100 dimensions via PCA prior to clustering and t-SNE visualisation.
|
| 39 |
+
|
| 40 |
+
## File Description
|
| 41 |
+
|
| 42 |
+
allDfEmbed.pkl — Pandas DataFrame (pickle) containing recommendation titles, persona and account labels, SBERT embeddings.
|
| 43 |
+
|
| 44 |
+
To load:
|
| 45 |
+
|
| 46 |
+
```
|
| 47 |
+
import pandas as pd
|
| 48 |
+
df = pd.read_pickle("allDfEmbed.pkl")
|
| 49 |
+
```
|
| 50 |
+
|
| 51 |
+
## Ethics
|
| 52 |
+
|
| 53 |
+
This study received institutional ethics approval from the University of Oxford (CUREC Ref: 1562454). Data collection used only newly created accounts with age-appropriate content, limiting the risk of affecting real users' recommendations. The study followed Oxford CUREC Best Practice Guidance 06 for internet-mediated research.
|
| 54 |
+
|
| 55 |
+
## Citation
|
| 56 |
+
|
| 57 |
+
If you use this dataset, please cite the accompanying paper:
|
| 58 |
+
|
| 59 |
+
@article{cho2026youtube,
|
| 60 |
+
title = {Evaluating feedback mechanisms for aligning {YouTube} recommendations with user interests},
|
| 61 |
+
author = {Cho, Desiree and Hale, Scott A. and Zhao, Jun and Shadbolt, Nigel and Przybylski, Andrew K.},
|
| 62 |
+
year = {2026},
|
| 63 |
+
note = {Manuscript under review}
|
| 64 |
+
}
|
| 65 |
+
|
| 66 |
+
## Authors
|
| 67 |
+
|
| 68 |
+
Desiree Cho, Scott A. Hale, Jun Zhao, Nigel Shadbolt, Andrew K. Przybylski
|
| 69 |
+
Oxford Internet Institute / Department of Computer Science / Institute for Ethics in AI, University of Oxford
|
| 70 |
+
Correspondence: desiree.cho@cs.ox.ac.uk
|
| 71 |
+
|