google-deepmind/jeo

Python

Open original ↗

Captured source

source ↗
published Oct 26, 2024seen 5dcaptured 10hhttp 200method plain

google-deepmind/jeo

Description: Jeo: Jax model training lib for Earth Observation

Language: Python

License: Apache-2.0

Stars: 163

Forks: 20

Open issues: 1

Created: 2024-10-26T07:52:24Z

Pushed: 2026-05-22T14:53:04Z

Default branch: main

Fork: no

Archived: no

README:

Jeo - Jax Geo lib

*Model training and inference for geospatial remote sensing and Earth Observation in JAX.*

Jeo provides a framework for training machine learning models for geospatial remote sensing and Earth Observation using JAX and Flax. It leverages tf.data for efficient data pipelines, with a focus on TensorFlow Datasets for scalable and reproducible input. While TensorFlow Datasets are preferred, other dataset loaders are also supported. The codebase is designed to run seamlessly on CPUs, GPUs, or Google Cloud TPU VMs.

This project is open-sourced to share research code and facilitate collaboration in geospatial and sustainability model development. Jeo integrates effectively with the GeeFlow library to construct large-scale geospatial datasets using Google Earth Engine (GEE). An example workflow is outlined below.

Projects and publications

Projects and publications that used this codebase:

*Anton Raichuk, Michelle Sims, Radost Stanimirova, and Maxim Neumann*. Presented at the NeurIPS 2024 Workshop on Tackling Climate Change with Machine Learning in Vancouver, BC, Canada, Dec 2024.

  • [Planted: a dataset for planted forest identification from multi-satellite

time series](https://arxiv.org/abs/2406.18554), by *Luis Miguel Pazos-Outón, Cristina Nader Vasconcelos, Anton Raichuk, Anurag Arnab, Dan Morris, and Maxim Neumann*. In proceedings of IGARSS 2024, Athens, Greece, Jul 2024.

by *Michelle Sims, Radost Stanimirova, Anton Raichuk, Maxim Neumann, Jessica Richter, Forrest Follett, James MacCarthy, Kristine Lister, Christopher Randle, Lindsey Sloat, Elena Esipova, Jaelah Jupiter, Charlotte Stanton, Dan Morris, Christy Slay, Drew Purves, and Nancy Harris*, Environmental Research Letters, Jun 2025.

by *Yuchang Jiang and Maxim Neumann*. In proceedings of IGARSS 2025, Brisbane, Australia, Aug 2025.

by *Mélanie Rey, Andriy Mnih, Maxim Neumann, Matt Overlan, Drew Purves*. ArXiv, Oct 2025.

*Matthew Overlan, Charlotte Stanton, Maxim Neumann, Arianna Manzini, Julia Haas, Michelangelo Conserva, Melanie Rey, Kira Prabhu, Youngin Shin, Kuan Lu, Drew Purves*, EarthArXiv, Nov 2025.

by *Maxim Neumann, Anton Raichuk, Yuchang Jiang, Mélanie Rey, Radost Stanimirova, Michelle J. Sims, Sarah Carter, Elizabeth Goldman, Keith Anderson, Petra Poklukar, Katelyn Tarrio, Myroslava Lesiv, Steffen Fritz, Nicholas Clinton, Charlotte Stanton, Dan Morris, Drew Purves*. Nature Scientific Data, Nov 2025.

Getting started

Installation

The first step is to checkout JEO and install relevant python dependencies in a virtual environment:

git clone https://github.com/google-deepmind/jeo
# Go into the code directory for the examples below.
cd jeo/jeo
# Install and activate a virtual environment
python -m venv .venv
source .venv/bin/activate
# Install JEO.
pip install -e ..

Local demo run

Launching a quick local model training for just a few steps on the CPU:

python -m jeo.train --config configs/tests/tiny_bit.py:runlocal \
--workdir /tmp/jeo/demo_tiny_bit

This will start to train a bit model (which is a modified convolutional neureal net (CNN) model based on ResNet, see jeo/models/bit.py) on CIFAR-10 TFDS dataset. Since we run this on a local CPU just as a demo, we appended the :runlocal config arg above, which specifies within the config to run just for a few training and evaluation steps. For more configuration details, see the config file jeo/configs/tests/tiny_bit.py.

In a standard workflow, the given workdir will be used to save checkpoints and potentially other artifacts, such as final evaluation metrics.

Contributors

Alex Wilson, Anton Raichuk, Burak Ekim, Cristina Nader Vasconcelos, Evelyn Camacho Soberon, Giovanni Ciampi, Keith Anderson, Linus Scheibenreif, Luis Miguel Pazos-Outón, Matt Overlan, Maxim Neumann, Mélanie Rey, Michelangelo Conserva, Petra Poklukar, Vishal Batchu, Yuchang Jiang

Citing JEO

To cite this repository:

@software{jeo2025:github,
author = {Jeo team},
title = {{JEO}: Model training and inference for geospatial remote sensing and
{E}arth {O}bservation in {JAX}},
url = {https://github.com/google-deepmind/jeo},
year = {2025}
}

License

Copyright 2024 DeepMind Technologies Limited

This code is licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an AS IS BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Disclaimer

This is not an official Google product.

Notability

notability 5.0/10

New repo by DeepMind, modest stars.