Base

class untwist.base.Processor[source]

Processor objects are the core of the framework. It should be possible to implement any algorithm as a processor. The interface is similar to most audio signal processing frameworks. The object encapsulates a function that processes some information. Hence the only methods are __init__() (for initialization) and process(). This base class defines the interface for processors. Parameters and return values for the process() method will vary accross algorithms

class untwist.base.Model[source]

Models are algorithms that can be trained and have some state. The state can be saved and used to make predictions

untwist.base.int_

alias of int64

untwist.base.float_

alias of float64

untwist.base.complex_

alias of complex128