--- license: cc-by-sa-4.0 task_categories: - object-detection language: - en pretty_name: Street-level Poles & Towers size_categories: - 1K_jpg.rf..jpg`). ## Parquet schema ```python { "image": Image(decode=True), # JPEG bytes "image_id": Value("string"), # filename stem "width": Value("int32"), "height": Value("int32"), "objects": { "bbox": Sequence(Sequence(Value("float32"), length=4)), # [x, y, w, h] in pixels (COCO) "category": Sequence(ClassLabel(names=["pole", "tower"])), }, "source": Value("string"), # bryan | roboflow | shanghai | oakland "panoramax_id": Value("string"), # populated for geotagged negatives "source_url": Value("string"), # original Panoramax derivate URL "lat": Value("float64"), "lon": Value("float64"), } ``` ## Loading ```python from datasets import load_dataset ds = load_dataset("kshitijrajsharma/streetlevel-poles") ds["train"][0]["image"] # PIL.Image ds["train"][0]["objects"] # {"bbox": [...], "category": [...]} ``` For the YOLO / Ultralytics workflow, point at the `data.yaml` shipped with the dataset after downloading the `coco/` and image folders, or regenerate the YOLO layout from the parquet shards (helper in this repo). ## Baseline A short YOLOv11n baseline was trained on this dataset for 10 epochs at `imgsz=640`. Test split results: | metric | value | |-----------------|------:| | mAP@50 | 0.332 | | mAP@50-95 | 0.120 | | precision | 0.455 | | recall | 0.345 | See `artifacts/baseline_results.png`, `artifacts/baseline_confusion_matrix.png`, and `artifacts/baseline_pr_curve.png` for full curves. This is intended as a sanity-check baseline, not a state-of-the-art result. The dataset is small, class-imbalanced, and the train split is dominated by negatives, so longer training and rebalancing are likely to help. ## Reproducing ```bash just setup just extract just convert just viz just parquet just train # YOLOv11n, 10 epochs just upload ``` ## License Released under **CC-BY-SA-4.0**. The negative samples derive from Panoramax / OpenStreetMap-sourced street-level imagery; share-alike compatibility is preserved. ## Citation If you use this dataset, please cite the originating work and this distribution: ``` @misc{streetlevel-poles, title = {Street-level Poles & Towers}, author = {Sharma, Kshitij Raj and contributors}, year = {2026}, howpublished = {HuggingFace Datasets}, url = {https://huggingface.co/datasets/kshitijrajsharma/streetlevel-poles} } ```