Skip to content

archaeo_super_prompt.types.per_intervention_feature

[docs] module archaeo_super_prompt.types.per_intervention_feature

1
2
3
4
5
6
7
8
9
"""Global base class for per-intervention extracted features dataframe schemas."""

from pandera.pandas import DataFrameModel
from pandera.typing.pandas import Index


class BasePerInterventionFeatureSchema(DataFrameModel):
    """Base schema for dataframes containing extracted features related to one intervention."""
    id: Index[int]