This is the official code repository of the paper Learning Long-Term Dependencies in Irregularly-Sampled Time Series [arXiv link].
Efficient and flexible PyTorch implementation added.
Supports adaptive step-size solvers through the TorchDyn package, as well as much faster but less precise custom implemented fixed-stepsize solvers.
The file torch_node_cell.py contains the implementation of the ODE-LSTM. The file pt_trainer.py uses PyTorch-Lightning to train a ODE-LSTM on some of the datasets of the paper. In particular, the PyTorch implementation give lightly better results than the TensorFlow implemenation.
Here is a subset of the available solver types:
dopri5
Dormand-Prince adaptive stepsize solver using TorchDyn package,fixed_rk4
Fixed-stepsize 4-th order Runge-Kuttafixed_heun
Fixed-stepsize Heun's method solverfixed_euler
Fixed-stepsize explicit Euler method
Example usage
python3 pt_trainer.py --dataset person --solver fixed_rk4 --size 128 --epochs 50
Trains a ODE-LSTM of 128 units on the person activity dataset for 50 epochs.
Why the fixed-stepsize solvers? Similar to the issue of the Dormand-Prince solver implementation of the TensorFlow-probability package, the adaptive-stepsize solvers of the TorchDyn and the torchdiffeq only have limited support for requesting a batched solution time, i.e., each item of a batch may require a different solution time.
We implemented a workaround that simulates an entire batch at the union of the solution times in the batch, which may results in unnecessary computations. The custom implementation of the fixed-stepsize solvers are implemented with full support of batched solution times, thus are much faster (at the cost of lower numerical precision).
Packages
- Python 3.5 or newer
- TensorFlow 2.0 or newer
- (torch 1.7.1, torchdiffeq 0.1.1, torchdyn 0.2.2.1, torchsde 0.2.4)
Tested with python3.6/python3.5 and TensorFlow 2.1 on Ubuntu 18.04 and Ubuntu 16.04
Data for the XOR experiment are generated on the fly, i.e., no manual downloading necessary.
The MNIST data are loaded through the tf.keras.datasets
API, i.e., no manual downloading necessary.
Data for the Walker kinematic and the person activity task however, must be downloaded first.
This can be done by
source download_datasets.sh
node_cell.py
: Implementation of all continuous-time RNNs used in the experimental evaluation in the paperxor_task.py
: Executable to run the synthetic XOR experiment (both the dense and the event-based modes)person_activity.py
: Executable to run the Person activity experimentet_mnist.py
: Executable to run the Event-based sequential MNIST experimentwalker_kinematic.py
: Executable to run the Walker2d kinematic simulation experiment
Each of the four executable python scripts contain the code for loading and pre-processing the data, as well the code to train and evaluate the models.
The four executable python scripts use some command line argument parsing to specify the RNN type and hyperparameters.
The RNN type can be specified by --model RNN
, where RNN
is one of the following
--model RNN |
Description |
---|---|
lstm |
Augmented LSTM |
ctrnn |
CT-RNN |
node |
ODE-RNN |
ctgru |
CT-GRU |
grud |
GRU-D |
gruode |
GRU-ODE |
vanilla |
Vanilla RNN with time-dependent decay |
bidirect |
Bidirectional RNN (LSTM with ODE-RNN) |
phased |
PhasedLSTM |
hawk |
Hawkes process LSTM |
odelstm |
ODE-LSTM (ours) |
For instance
python3 xor_task.py --model lstm --epochs 500 --dense
runs the XOR sequence classification experiment with the dense encoding (=regularly sampled time-series).
By omitting the --dense
flag one can run the same experiment but with the event-based encoding (=irregularly sampled time-series)
Each executable python script stores the result of the experiment in the directory results
(which will be created if it does not exists).
The results
directory will have the following structure:
results/xor_event
Results of the event-based XOR taskresults/xor_dense
Results of the dense encoded XOR taskresults/smnist
Results of the event-based sequential MNIST experimentresults/person_activity
Results of the Person activity datasetresults/walker
Results of the Walker2d kinematic simulation dataset
The results for different RNN types will be logged in separate files.
For instance, results/xor_event/lstm_64.csv
will contain the results of the augmented LSTM with 64 hidden units on the event-based XOR task. The naming of the RNN models is the same as for the --model
argument as described above.
The following ODE solvers are available for running the ODE-RNNs:
euler
: Fixed-stepsize explicit Euler's methodheun
: Fixed-stepsize Heun's methodrk4
: Fixed-stepsize 4th order Runge-Kuttadopri5
: Dormand and Prince adaptive stepsize solver
Choosing a fixed-stepsize solver also requires specifying the number of ODE solver steps unfoldings per RNN step. It is recommended to use a fixed-stepsize solver, due to the much faster runtime.
The Dormand and Prince adaptive stepsize solver uses the ODE solver implemented in the TensorFlow Probability package. This implementation does not support to specify batched solution times. As this feature is vital for irregularly sampled time-series, we had to implement a workaround to support it. Therefore, choosing this ODE solving method simulates more than necessary, which reduces the computational efficiency.
@article{lechner2020longterm,
title={Learning Long-Term Dependencies in Irregularly-Sampled Time Series},
author={Lechner, Mathias and Hasani, Ramin},
journal={arXiv preprint arXiv:2006.04418},
year={2020}
}