├── .gitignore ├── README.md ├── data └── .gitkeep ├── flownet3d.ipynb └── models ├── net.pth └── net_tf.pth /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimodallearning/flownet3d.pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimodallearning/flownet3d.pytorch/HEAD/README.md -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flownet3d.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimodallearning/flownet3d.pytorch/HEAD/flownet3d.ipynb -------------------------------------------------------------------------------- /models/net.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimodallearning/flownet3d.pytorch/HEAD/models/net.pth -------------------------------------------------------------------------------- /models/net_tf.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimodallearning/flownet3d.pytorch/HEAD/models/net_tf.pth --------------------------------------------------------------------------------