alessandro trinca tornidor
[refactor] rename samgis module tosamgis_lisa_on_cuda, bump to version 1.3.0, update samgis and lisa_on_cuda dependencies
fcb8c81
raw
history blame
No virus
992 Bytes
"""Get machine learning predictions from geodata raster images"""
import os
# not used here but contextily_tile is imported in samgis_lisa_on_cuda.io.tms2geotiff
from contextily import tile as contextily_tile
from pathlib import Path
from samgis_lisa_on_cuda.utilities.constants import SERVICE_NAME
ROOT = Path(globals().get("__file__", "./_")).absolute().parent.parent
PROJECT_ROOT_FOLDER = Path(os.getenv("PROJECT_ROOT_FOLDER", ROOT))
WORKDIR = Path(os.getenv("WORKDIR", ROOT))
MODEL_FOLDER = Path(PROJECT_ROOT_FOLDER / "machine_learning_models")
IS_AWS_LAMBDA = bool(os.getenv("IS_AWS_LAMBDA", ""))
if IS_AWS_LAMBDA:
try:
from aws_lambda_powertools import Logger
app_logger = Logger(service=SERVICE_NAME)
except ModuleNotFoundError:
print("this should be AWS LAMBDA environment but we miss the required aws lambda powertools package")
else:
from samgis_core.utilities.fastapi_logger import setup_logging
app_logger = setup_logging(debug=True)