Skip to content

Commit

Permalink
use relative imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Hgherzog committed Nov 19, 2024
1 parent d7a1db6 commit ecab24a
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions rslp/forest_loss_driver/predict_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,16 @@
import os
from pathlib import Path

from rslp.forest_loss_driver.inference.best_image_selector import (
select_best_images_pipeline,
)
from rslp.forest_loss_driver.inference.config import PredictPipelineConfig
from rslp.forest_loss_driver.inference.extract_alerts import extract_alerts_pipeline
from rslp.forest_loss_driver.inference.materialize_dataset import (
materialize_forest_loss_driver_dataset,
)
from rslp.forest_loss_driver.inference.model_predict import (
forest_loss_driver_model_predict,
)
from rslp.log_utils import get_logger

from .inference.best_image_selector import select_best_images_pipeline
from .inference.config import PredictPipelineConfig
from .inference.extract_alerts import extract_alerts_pipeline
from .inference.materialize_dataset import materialize_forest_loss_driver_dataset

logger = get_logger(__name__)

GCS_FILENAMES = [
Expand Down

0 comments on commit ecab24a

Please sign in to comment.