Skip to content

Combined Reference

All references on one page

darts_acquisition

Acquisition of data from various sources for the DARTS dataset.

Functions

hello(name)

Say hello to the user.

Parameters:

Name Type Description Default
name str

Name of the user.

required

Returns:

Name Type Description
str str

Greating message.

Source code in darts-acquisition/src/darts_acquisition/__init__.py
def hello(name: str) -> str:
    """Say hello to the user.

    Args:
        name (str): Name of the user.

    Returns:
        str: Greating message.

    """
    return f"Hello, {name}, from darts-acquisition!"

darts_ensemble

Inference and model ensembling for the DARTS dataset.

Functions

hello()

Say hello to the user.

Returns:

Name Type Description
str str

Greating message.

Source code in darts-ensemble/src/darts_ensemble/__init__.py
def hello() -> str:
    """Say hello to the user.

    Returns:
        str: Greating message.

    """
    return "Hello from darts-ensemble!"

darts_export

darts_postprocessing

Functions

hello()

Source code in darts-postprocessing/src/darts_postprocessing/__init__.py
def hello() -> str:
    return "Hello from darts-postprocessing!"

darts_preprocessing

Data preprocessing and feature engineering for the DARTS dataset.

Functions

hello()

Say hello to the user.

Returns:

Name Type Description
str str

Greating message.

Source code in darts-preprocessing/src/darts_preprocessing/__init__.py
def hello() -> str:
    """Say hello to the user.

    Returns:
        str: Greating message.

    """
    return "Hello from darts-preprocessing!"

darts_segmentation

Image segmentation of thaw-slumps for the DARTS dataset.

Functions

hello()

Say hello to the user.

Returns:

Name Type Description
str str

Greating message.

Source code in darts-segmentation/src/darts_segmentation/__init__.py
def hello() -> str:
    """Say hello to the user.

    Returns:
        str: Greating message.

    """
    return "Hello from darts-segmentation!"

darts_superresolution

Image superresolution of Sentinel 2 imagery for the DARTS dataset.

Functions

hello()

Say hello to the user.

Returns:

Name Type Description
str str

Greating message.

Source code in darts-superresolution/src/darts_superresolution/__init__.py
def hello() -> str:
    """Say hello to the user.

    Returns:
        str: Greating message.

    """
    return "Hello from darts-superresolution!"