Rabornkraken/xhs-travel-photos
XHS Travel Photos Travel photography from Xiaohongshu (Little Red Book) across 19 destinations in China and Southeast Asia. Dataset Summary Metric Count Notes 2,882 Images 28,005 Total size 7.3 GB Keyword folders 19 Destinations Folder Notes bali 190 cambodia_angkor 200 chengdu 20 chiang_mai 213 chongqing 194 guilin 225 hainan_sanya 212 indonesia 215 laos 209 malaysia 198 myanmar 122 philippines… See the full description on the dataset page: https://huggingface.co/datasets/Rabornkraken/xhs-travel-photos.
02.2k
XHS Travel Photos
Travel photography from Xiaohongshu (Little Red Book) across 19 destinations in China and Southeast Asia.
Dataset Summary
Destinations
Files
- `notes.jsonl` — One row per note (post metadata, engagement counts, tags)
- `images.jsonl` — One row per image (dimensions, file size, HF URL, source URL)
- `{folder}/{note_id}/{N}.jpg` — Image files organized by destination and note
Loading
import json
# Load notes
notes = [json.loads(line) for line in open("notes.jsonl")]
# Load images
images = [json.loads(line) for line in open("images.jsonl")]
# Filter by destination
bali_notes = [n for n in notes if n["keyword_folder"] == "bali"]