--- annotations_creators: - no-annotation language: en license: cc-by-nc-3.0 size_categories: - 1K_DJI_.jpg`; grouping by flight_id recovers each drone's actual, contiguous flight sequence.""" m = FLIGHT_PATTERN.match(filename) return m.group(1) if m else None # Tier 0: eval holdout, carved out FIRST and stratified per class, before # any annotation tier gets a chance to claim these images. for cls in TARGET_CLASSES: candidates = [fn for fn, lbls in fn_labels.items() if cls in lbls and fn not in selected] rng.shuffle(candidates) picked = candidates[:EVAL_HOLDOUT_PER_CLASS] for fn in picked: selected[fn] = f"eval_holdout:{cls}" # Tier 1: all 4 target classes, capped at the same per-flight, per-class quota for cls in TARGET_CLASSES: candidates = [fn for fn, lbls in fn_labels.items() if cls in lbls and fn not in selected] rng.shuffle(candidates) per_flight_count = defaultdict(int) picked = [] for fn in candidates: fid = flight_of(fn) if per_flight_count[fid] < TARGET_CLASS_PER_FLIGHT_CAP and len(picked) < TARGET_CLASS_QUOTA: picked.append(fn) per_flight_count[fid] += 1 # Tier 2: N_DUP_WALL_FLIGHTS whole flights, every frame kept flight_ids_sorted = sorted(flights.keys()) dup_wall_flights = rng.sample(flight_ids_sorted, N_DUP_WALL_FLIGHTS) # Tier 3: one remaining image per flight, for long-tail texture for fid, fns in flights.items(): remaining = [fn for fn in fns if fn not in selected] if remaining: pick = rng.choice(remaining) ``` Result, with `seed=51`: | Tier | What it keeps | Images | |---|---|---| | 0: Eval holdout (25/class, carved out first) | `tower id plate`, `polymer insulator`, `glass insulator`, `yoke`, 25 each | 100 | | 1: Balanced annotation targets (capped per class, per flight) | `tower id plate` (214), `polymer insulator` (217), `glass insulator` (217), `yoke` (217) | 865 | | 2: Duplicate-wall flights (14 flights, 100% intact) | real contiguous drone-frame sequences | 574 | | 3: Long-tail texture (1/remaining flight) | everything else, thinly | 215 | | **Total** | | **1,754** | The 100 eval-holdout images are tagged `eval_holdout` at import time (step 4) and excluded from every interactive step of the companion workshop; the true interactive pool at any point is 1,654 images. A later staging step copies all 1,754 images into a lean pool directory and converts their real COCO boxes to FiftyOne's relative `[x, y, w, h]` format, but writes them to `heldout_ground_truth.json` rather than into the FiftyOne dataset, which is imported strictly media-only. ### Source Data #### Data Collection and Processing The underlying images were captured by UAV (drone) during real-world inspections of operating power lines, at 1920x1080 resolution, under varied environmental conditions, orientations, and distances. See the original [InsPLAD dataset card](https://huggingface.co/datasets/harpreetsahota/InsPLAD) for the full collection and annotation process. This derivative pool applies no further transformation to the images themselves; it only selects which 1,754 of the 10,561 to include, per the stratified sampling above. #### Who are the source data producers? UAV inspection imagery of real, operating power lines, collected by the Voxar Labs group at Universidade Federal de Pernambuco (see the original InsPLAD paper and dataset card). ### Annotations This dataset ships with no annotations. The real bounding boxes for these same 1,754 images exist (extracted from InsPLAD-det's COCO annotations during staging) but are deliberately withheld from this Hub dataset, distributed alongside the workshop's companion code as `heldout_ground_truth.json` instead. #### Personal and Sensitive Information Not addressed explicitly in the source paper. Images are aerial captures of power line hardware and surrounding infrastructure; there is no statement in the source material regarding incidental capture of people or other personal data. `[More Information Needed]` ## Citation **BibTeX:** ``` @article{doi:10.1080/01431161.2023.2283900, author = {André Luiz Buarque Vieira e Silva, Heitor de Castro Felix, Franscisco Paulo Magalhães Simões, Veronica Teichrieb, Michel dos Santos, Hemir Santiago, Virginia Sgotti and Henrique Lott Neto}, title = {InsPLAD: A Dataset and Benchmark for Power Line Asset Inspection in UAV Images}, journal = {International Journal of Remote Sensing}, volume = {44}, number = {23}, pages = {1-27}, year = {2023}, publisher = {Taylor & Francis}, doi = {10.1080/01431161.2023.2283900}, URL = {https://doi.org/10.1080/01431161.2023.2283900}, eprint = {https://doi.org/10.1080/01431161.2023.2283900}, } ``` **APA:** Vieira-e-Silva, A. L. B., de Castro Felix, H., Simões, F. P. M., Teichrieb, V., dos Santos, M., Santiago, H., Sgotti, V., & Lott Neto, H. (2023). InsPLAD: A Dataset and Benchmark for Power Line Asset Inspection in UAV Images. *International Journal of Remote Sensing*, 44(23), 1-27. ## More Information This is a derivative sampling of InsPLAD-det for the "Cold Pool to Hot Queue" FiftyOne workshop. The full pipeline that builds this pool from scratch (source download through media-only import), plus the in-App workshop steps and the eval-holdout reveal/scoring script, lives in the workshop's companion GitHub repository: **https://github.com/harpreetsahota204/annotation_workshop/tree/main**. For the full, labeled InsPLAD dataset (all three official sub-tasks, 49,706 samples), see https://huggingface.co/datasets/harpreetsahota/InsPLAD. ## Dataset Card Authors Harpreet Sahota (FiftyOne / Voxel51 sampling and card) ## Dataset Card Contact harpreetsahota