FlexSED / src /local /classes_dict.py
OpenSound's picture
Upload 544 files
3b6a091 verified
"""
we store here a dict where we define the encodings for all classes in DESED task.
"""
from collections import OrderedDict
classes_labels = OrderedDict(
{
"Alarm_bell_ringing": 0,
"Blender": 1,
"Cat": 2,
"Dishes": 3,
"Dog": 4,
"Electric_shaver_toothbrush": 5,
"Frying": 6,
"Running_water": 7,
"Speech": 8,
"Vacuum_cleaner": 9,
}
)