Video Prediction using ConvLSTM with PyTorch (-lightning)
This dataset was originally developed and described here, and it contains 10000 sequences each of length 20 with frame size 64 x 64 showing 2 digits moving in various trajectories (and overlapping). Something to note beforehand is the inherent randomness of the digit trajectories. We do expect that this will become a major hurdle for the model we are about to describe, and we also note that newer approaches such as Variational Autoencoders might be a more efficient model for this type of task. The specific model type we will be using is called a seq2seq model, which is typically used for NLP or time-series tasks (it was actually implemented in the Google Translate engine in 2016). The original papers on seq2seq are Sutskever et al., 2014 and Cho et al., 2014.
Oct-6-2020, 08:35:48 GMT
- Technology: