dcase_framework.data.ProcessingChain¶
-
class
dcase_framework.data.ProcessingChain[source]¶ -
__init__()¶ x.__init__(...) initializes x; see help(type(x)) for signature
Methods
appendL.append(object) – append object to end call_method(method_name[, parameters])Call class method in the processing chain items count(...)extendL.extend(iterable) – extend list by appending elements from the iterable index((value, [start, ...)Raises ValueError if the value is not present. insertL.insert(index, object) – insert object before index pop(...)Raises IndexError if list is empty or index is out of range. process(data)Process the data with processing chain removeL.remove(value) – remove first occurrence of value. reverseL.reverse() – reverse IN PLACE sortL.sort(cmp=None, key=None, reverse=False) – stable sort IN PLACE; -