Skip to content

Demonstrating the use of Prefect to orchestrate the creation of machine learning surrogate models as applied to mechanistic crop models.

License

Notifications You must be signed in to change notification settings

JBris/prefect-surrogate-models

Repository files navigation

Prefect Surrogate Models

Validate Pipeline Generate Documentation pages-build-deployment CodeQL

Website: Prefect Surrogate Models

Demonstrating the use of Prefect to orchestrate the creation of machine learning surrogate models as applied to mechanistic crop models.

Table of contents

Introduction

The purpose of this project is to provide a simple demonstration of how to construct a Prefect pipeline, with MLOps integration, to orchestrate the creation of machine learning surrogate models as applied to mechanistic crop models.

We use this machine learning model (a Gaussian process) to support various downstream model calibration tasks. In the example here, we perform global optimisation. Note that the demonstrated approach is different from Bayesian optimisation.

Our mechanistic crop model is WOFOST, as implemented in the Python Crop Simulation Environment library.

For building Gaussian processes, we use GPyTorch.

For performing optimisation, we use Optuna.

The Prefect pipeline

Prefect has been included to orchestrate the surrogate modelling pipeline.

The pipeline is composed of the following steps:

  1. Make use of Latin Hypercube sampling to draw from the parameter space and construct a design matrix.
  2. Run the WOFOST model n times for each sampled parameter set.
  3. Train a variational Gaussian process to map the parameter sets against the WOFOST simulation outputs.
  4. Perform parameter optimisation using the Tree-Structured Parzen Estimator algorithm. Rather than directly executing WOFOST during the optimisation procedure, we instead perform optimisation on the Gaussian process.

Run prefect.sh to run the full pipeline.

The results of the pipeline can be accessed from the output directory.

Python Environment

Python dependencies are specified in this requirements.txt file.

These dependencies are installed during the build process for the following Docker image: ghcr.io/jbris/prefect-surrogate-models:1.0.0

Execute the following command to pull the image: docker pull ghcr.io/jbris/prefect-surrogate-models:1.0.0

MLOps