Real Estate Datasets
Browse 100+ HuggingFace datasets for building AI models, training AVMs, and market research.
Loading datasets...
Quick Start Code
# Install: pip install datasets
from datasets import load_dataset
# Load flagship Zillow dataset
zillow = load_dataset("zillow/real_estate_v1")
# Stream large datasets (2.88M+ rows)
zillow_viewer = load_dataset("misikoff/zillow-viewer", streaming=True)
# For AI agent training
llm_corpus = load_dataset("heba1998/real-estate-data-for-llm-fine-tuning")