Annotator
Annotator
Class that performs the annotation of a file.
Source code in src/annotation/annotator.py
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
|
__init__(lf, filtering, transformation)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
lf |
LFBase
|
Labelling function to be used to annotate the files. |
required |
filtering |
FilteringBase
|
Filtering strategy to be used to mark as unannotated files with noisy annotations. |
required |
transformation |
TransformationBase
|
Transformation to apply to the annotation vector. |
required |
Source code in src/annotation/annotator.py
12 13 14 15 16 17 18 19 20 21 22 |
|