-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_TestAC.py
34 lines (28 loc) · 1012 Bytes
/
_TestAC.py
1
2
3
4
5
6
7
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
from wai.common.cli.options import TypedOption
from wai.annotations.core.component import SinkComponent
from wai.annotations.domain.audio.classification import AudioClassificationInstance
OUTPUT_FILENAME = "filename"
OUTPUT_LABEL = "label"
OUTPUTS = [
OUTPUT_FILENAME,
OUTPUT_LABEL,
]
class TestAC(SinkComponent[AudioClassificationInstance]):
output: str = TypedOption(
"--output",
type=str,
default=OUTPUT_FILENAME,
help="the information to output: %s" % "|".join(OUTPUTS)
)
def consume_element(self, element: AudioClassificationInstance):
"""
Consumes instances.
"""
if self.output == OUTPUT_FILENAME:
self.logger.info(element.data.filename)
elif self.output == OUTPUT_LABEL:
self.logger.info(element.annotations.label)
else:
raise Exception("Unknown output type (%s): %s" % ("|".join(OUTPUTS), self.output))
def finish(self):
self.logger.info("finished")