From 917c069a10a6ba1c0bde4706c6b4b36281e6fcf0 Mon Sep 17 00:00:00 2001 From: hgherzog Date: Tue, 19 Nov 2024 18:19:43 -0600 Subject: [PATCH] add missing init file --- rslp/forest_loss_driver/inference/__init__.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 rslp/forest_loss_driver/inference/__init__.py diff --git a/rslp/forest_loss_driver/inference/__init__.py b/rslp/forest_loss_driver/inference/__init__.py new file mode 100644 index 0000000..280bc8e --- /dev/null +++ b/rslp/forest_loss_driver/inference/__init__.py @@ -0,0 +1,13 @@ +"""Inference pipeline steps for the forest loss driver.""" + +from .best_image_selector import select_best_images_pipeline +from .extract_alerts import extract_alerts_pipeline +from .materialize_dataset import materialize_forest_loss_driver_dataset +from .model_predict import forest_loss_driver_model_predict + +__all__ = [ + "select_best_images_pipeline", + "extract_alerts_pipeline", + "materialize_forest_loss_driver_dataset", + "forest_loss_driver_model_predict", +]