taylor-geospatial/ftp-b3
FTP-PRUE+ (EfficientNet-B3) — Fields of the Planet
  
3m PlanetScope field-boundary segmentation model from Fields of the Planet (FTP), a PlanetScope companion to Fields of the World (FTW). This is the paper's main reported model.
U-Net decoder over an EfficientNet-B3 encoder, trained on paired planting- and harvest-window PlanetScope surface-reflectance imagery (8 input channels: 2 seasonal windows x 4 bands) to predict a 3-class field mask (background / field / boundary) at 3m ground sample distance.
- Repo: taylor-geospatial/fields-of-the-planet
- Paper: Fields of the Planet: Field Boundary Mapping Beyond 10m
- Dataset: taylor-geospatial/ftw-planet
- Architecture:
smp.Unet(encoder_name="efficientnet-b3"),in_channels=8,classes=3 - Training resolution: 512x512 crops, 3m/px
- Loss: log-cosh Dice, class weights
[0.05, 0.2, 0.75],ignore_index=3 - Recipe: PRUE+ (geometry/noise augmentations, watershed post-processing, D4 TTA at eval)
Files
Usage
segmentationmodelspytorch (recommended)
import segmentation_models_pytorch as smp
model = smp.from_pretrained("taylor-geospatial/ftp-b3").eval()
logits = model(image) # image: (B, 8, H, W) float32, 2 seasonal windows x 4 bandsLightning checkpoint (raw smp.Unet)
The checkpoint's state_dict is just an smp.Unet under a model. prefix. Unless you need the Lightning training wrapper, smp.from_pretrained above is simpler.
import torch
import segmentation_models_pytorch as smp
ckpt = torch.load("ftp-b3.ckpt", map_location="cpu")
hp = ckpt["hyper_parameters"]
model = smp.Unet(encoder_name=hp["backbone"], encoder_weights=None, in_channels=hp["in_channels"], classes=hp["num_classes"])
model.load_state_dict({k.removeprefix("model."): v for k, v in ckpt["state_dict"].items()})
model.eval()
logits = model(image) # image: (B, 8, H, W) float, 2 seasonal windows x 4 bandsONNX
import onnxruntime as ort
sess = ort.InferenceSession("ftp-b3.onnx", providers=["CPUExecutionProvider"])
logits = sess.run(None, {"image": image_np})[0] # image_np: (B, 8, H, W) float32torch.export (standalone, no ftw_planet needed)
import torch
exported = torch.export.load("ftp-b3.pt2")
model = exported.module()
logits = model(image) # image: (B, 8, 512, 512) float32, any batch sizeOutput is 3-class logits (background / field / boundary). Argmax plus the repo's watershed post-processing (scripts/eval/postprocess_eval.py) recovers instance polygons.
Results
Polygon-level results macro-averaged over the ten dense-label held-out countries dominated by smallholder fields (paper Table 1). This checkpoint is the FTP-PRUE+ / EfficientNet-B3 row.
Bold marks the best value per column. \* Released models evaluated without training on FTW or FTP, each at its best swept inference resolution and confidence setting. † Pixel IoU is not comparable across sensors due to differences in resolution. ‡ PQ for small (<0.5 ha), medium (0.5-2 ha), and large (>2 ha) ground-truth fields.
Citation
@misc{corley2026fieldsplanetfieldboundary,
title = {Fields of the Planet: Field Boundary Mapping Beyond 10m},
author = {Isaac Corley and Caleb Robinson and Jennifer Marcus and Hannah Kerner},
year = {2026},
eprint = {2607.04449},
archivePrefix = {arXiv},
primaryClass = {cs.CV},
url = {https://arxiv.org/abs/2607.04449}
}License
Weights are released under CC-BY-NC-4.0 (non-commercial), subject to the licensing terms of the underlying data sources.
Trained on PlanetScope imagery © Planet Labs PBC, obtained directly from the Planet archive under a research license for academic and nonprofit use. Use and redistribution of Planet imagery remain subject to the applicable Planet license terms. See the Planet Licensing Information Center for additional information.
Trained on FTW field-boundary polygons (CC-BY-4.0); see fieldsoftheworld/ftw-baselines for source terms.
