-
Notifications
You must be signed in to change notification settings - Fork 728
Description
I'd like to reflect upon what functions would be desired (that could live within torchaudio or outside) in order to offer preliminary support for time series.
- Time series data format (e.g. many channels compared to audio)
- Missing data imputing
- Interaction with calendar information
- Conversion to other formats, say to audio waveform
- Option on transformations to respect time direction
- Streaming use case?
Could we make sure that our constructs are general enough to touch on time series, without sacrificing the primary goal of audio for this library?
Motivation
An audio (multichannel) waveform is a (vector) time series with constant time step whose length is given by sample_rate
.
Audio processing and time series analysis are related, though their goals may differ. The type of transformations used in audio and general time series are sometimes different (i.e. dB, Mel, ...). For instance, in time series forecasting, transforms are usually expected to respect the time direction, and only consume past information for future value, as in "online" consumption of audio waveform.
@nairbv @zdevito @kingjr @adefossez @gully -- do you have use cases for time series that could relate to torchaudio?
Additional context
- Python pandas
- R tidyverse time series
- Prophet
- GPyTorch for PyTorch and Gaussian Processes
- Internal doc streaming (internal doc)