samgis / src /__init__.py
aletrn's picture
[docs] add more docs content
6f2f547
raw
history blame
391 Bytes
"""Get machine learning predictions from geodata raster images"""
from aws_lambda_powertools import Logger
import os
from pathlib import Path
from src.utilities.constants import SERVICE_NAME
PROJECT_ROOT_FOLDER = Path(globals().get("__file__", "./_")).absolute().parent.parent
MODEL_FOLDER = Path(PROJECT_ROOT_FOLDER / "machine_learning_models")
app_logger = Logger(service=SERVICE_NAME)