Skip to content

Analysis

Analysis

Bases: BaseModel

Class modelling the analysis run. Contains the project info and configs for the annotation.

Source code in src/entity/analysis.py
 6
 7
 8
 9
10
11
12
13
class Analysis(BaseModel):
    """
    Class modelling the analysis run. Contains the project info and configs for the annotation.
    """
    name: str
    remote: str
    languages: List[str]
    config: Optional[Dict[str, str]] = None