Datasets:
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
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
- Price Prediction β Build regression models to estimate apartment prices
- Market Analysis β Analyze price trends by district, building type
- Geospatial ML β Use GPS coordinates for location-based features
- NLP β Extract features from Russian descriptions
- Anomaly Detection β Find underpriced/overpriced listings
- 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
- GitHub: @raimbekovm
- LinkedIn: Murat Raimbekov
- Email: murat.raimbekov2004@gmail.com
β If you find this dataset useful, please give it a like!
- Downloads last month
- 542