Dataset Viewer

The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.

🏠 Bishkek Real Estate Dataset

The largest open dataset of apartment listings from Kyrgyzstan

Downloads License Records

Dataset Files β€’ Quick Start β€’ Features β€’ Benchmarks β€’ Use Cases


πŸ“Š Overview

Comprehensive dataset of 8,821 apartment listings from Bishkek, Kyrgyzstan with:

  • πŸ’° Prices in USD and per mΒ²
  • πŸ“ GPS coordinates for 99.6% of listings
  • πŸ—οΈ Building data: year built, house type, floors
  • 🏒 Residential complex info (name, class, developer)
  • πŸ“ Descriptions in Russian

Why This Dataset?

Feature Value
🌍 Unique geography First ML-ready real estate dataset from Central Asia
πŸ“ˆ Rich features 60 columns including GPS, building specs, complex data
🎯 ML-ready Clean, preprocessed, with benchmark models
πŸ†“ Open license CC-BY-4.0, free for commercial use

πŸ“ Dataset Files

β”œβ”€β”€ listings.csv                    # Main dataset (8,821 rows, 60 columns)
β”œβ”€β”€ listings_with_rc.csv            # With residential complex data
└── notebooks/
    β”œβ”€β”€ bishkek_v3_best.ipynb       # Best model (MAE $121.71/mΒ²)
    └── bishkek_cv_model.ipynb      # CV experiment with ResNet-50

πŸš€ Quick Start

from datasets import load_dataset

# Load dataset
dataset = load_dataset("raimbekovm/bishkek-real-estate")
df = dataset["train"].to_pandas()

# Explore
print(f"🏠 Apartments: {len(df):,}")
print(f"πŸ’° Median price: ${df['price_usd'].median():,.0f}")
print(f"πŸ“ Median $/mΒ²: ${df['price_per_m2'].median():,.0f}")

With Pandas

import pandas as pd

df = pd.read_csv("hf://datasets/raimbekovm/bishkek-real-estate/listings.csv")

πŸ“‹ Features

Price & Size

Column Type Description
price_usd float Price in USD
price_per_m2 float Target variable β€” Price per mΒ² in USD
rooms int Number of rooms (1-6+)
area float Total area in mΒ²

Location

Column Type Description
latitude float GPS latitude (WGS84)
longitude float GPS longitude (WGS84)
district str Neighborhood (287 unique)

Building

Column Type Description
floor int Apartment floor
total_floors int Building total floors
year_built int Construction year
house_type str ΠΌΠΎΠ½ΠΎΠ»ΠΈΡ‚ / ΠΊΠΈΡ€ΠΏΠΈΡ‡ / панСль

Residential Complex

Column Type Description
jk_name str Complex name
jk_class str ΠΊΠΎΠΌΡ„ΠΎΡ€Ρ‚ / бизнСс / элит
developer str Developer company

πŸ† Benchmarks

Model Performance

Model MAE ($/mΒ²) RΒ² MAPE
Ensemble + Optuna $121.71 0.76 8.2%
XGBoost $128.45 0.73 8.9%
CatBoost $126.12 0.74 8.5%
LightGBM $130.23 0.72 9.1%

Key Finding

πŸ“Œ Image embeddings (ResNet-50) do NOT improve price prediction. Tabular features alone achieve best results.


πŸ’‘ Use Cases

  1. Price Prediction β€” Build regression models to estimate apartment prices
  2. Market Analysis β€” Analyze price trends by district, building type
  3. Geospatial ML β€” Use GPS coordinates for location-based features
  4. NLP β€” Extract features from Russian descriptions
  5. Anomaly Detection β€” Find underpriced/overpriced listings
  6. Academic Research β€” Study emerging real estate markets

πŸ“ˆ Dataset Statistics

Metric Value
Total records 8,821
Features 60
With GPS coordinates 99.6%
With year_built 73.1%
Linked to residential complex 48.9%
Price range $23K β€” $1.5M
Price per mΒ² range $400 β€” $3,500

πŸ“ Data Source

Data collected from house.kg β€” the largest real estate platform in Kyrgyzstan.

Collection period: December 2025 β€” January 2026


πŸ“œ License

This dataset is released under CC-BY-4.0.

You are free to:

  • βœ… Use for commercial purposes
  • βœ… Modify and adapt
  • βœ… Distribute

With attribution to the author.


πŸ“š Citation

@dataset{bishkek_real_estate_2026,
  title={Bishkek Real Estate Dataset},
  author={Raimbekov, Murat},
  year={2026},
  publisher={Hugging Face},
  url={https://huggingface.co/datasets/raimbekovm/bishkek-real-estate}
}

πŸ‘€ Author

Murat Raimbekov


⭐ If you find this dataset useful, please give it a like!

Downloads last month
542