--- license: cc-by-4.0 task_categories: - image-classification - image-to-image language: - en tags: - biodiversity - remote-sensing - tropical-forest - tree-species - aerial-imagery - drone - multi-temporal - crown-view - closeup - BCI - Panama pretty_name: BCI Temporal Crown Dataset size_categories: - 10K, ...} # Close-up photos closeup = load_dataset("sulagnasaharasha/bci-temporal", "closeup") print(closeup["train"][0]) # {'polygon_id': 12345, 'species_label': 'Anacardium excelsum', # 'closeup': , ...} ``` ### Join temporal + closeup for multi-modal training ```python from datasets import load_dataset import pandas as pd temporal = load_dataset("sulagnasaharasha/bci-temporal", "temporal") closeup = load_dataset("sulagnasaharasha/bci-temporal", "closeup") # Convert to pandas and join t = temporal["train"].to_pandas() c = closeup["train"].to_pandas()[["polygon_id", "closeup"]] paired = t.merge(c, on="polygon_id") # Each row now has both crownview (date-specific) and closeup (date-invariant) ``` ### PyTorch Dataset example ```python import torch from torch.utils.data import Dataset from datasets import load_dataset from torchvision import transforms class BCITemporalDataset(Dataset): def __init__(self, split: str = "train", transform=None): temporal = load_dataset("sulagnasaharasha/bci-temporal", "temporal", split=split) closeup = load_dataset("sulagnasaharasha/bci-temporal", "closeup", split=split) t_df = temporal.to_pandas() c_df = closeup.to_pandas()[["polygon_id", "closeup"]] self.df = t_df.merge(c_df, on="polygon_id").reset_index(drop=True) self.species = sorted(self.df["species_label"].unique()) self.label_map = {s: i for i, s in enumerate(self.species)} self.transform = transform or transforms.ToTensor() def __len__(self) -> int: return len(self.df) def __getitem__(self, idx: int) -> dict: row = self.df.iloc[idx] crown = self.transform(row["crownview"].convert("RGB")) # [3, H, W] closeup = self.transform(row["closeup"].convert("RGB")) # [3, H, W] label = self.label_map[row["species_label"]] return {"crownview": crown, "closeup": closeup, "label": torch.tensor(label), "date": row["date"], "polygon_id": row["polygon_id"]} ``` --- ## Source Data - **Site**: Barro Colorado Island (BCI) - **Crown polygons**: Produced by [CanopyRS](https://github.com/hugobaudchon/CanopyRS) using automated segmentation + expert annotation - **Aerial rasters**: Monthly RGB orthomosaics acquired over BCI (COG format), hosted by the CanopyRS platform - **Taxonomy**: Species names resolved against [GBIF Backbone Taxonomy](https://www.gbif.org/dataset/d7dddbf4-2cf0-4f39-9b2a-bb099caae36c) and [WCVP](https://wcvp.science.kew.org/) --- ## License [Creative Commons Attribution 4.0 International (CC BY 4.0)](https://creativecommons.org/licenses/by/4.0/) --- ## Citation If you use this dataset, please cite: ```bibtex @misc{sulagna_saha_2026, author = { Sulagna Saha and Arthur Ouaknine and Etienne Laliberté and Carol Altimas and Evan M. Gora and Adriane Esquivel Muelbert and Ian R. McGregor and Cesar Gutierrez and Vanessa E. Rubio and David Rolnick }, title = { Understanding Representation Gaps Across Scales in Tropical Tree Species Classification from Drone Imagery }, year = 2026, url = { https://arxiv.org/abs/2604.23019 }, doi = { 10.57967/hf/8132 }, publisher = { ML4RS @ICLR 2026 } } ```