├── .gitignore ├── models ├── mvae.onnx ├── target.onnx └── joystick.onnx ├── images └── target_demo.gif ├── README.md └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ -------------------------------------------------------------------------------- /models/mvae.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/belinghy/MotionVAEs-WebGL/HEAD/models/mvae.onnx -------------------------------------------------------------------------------- /models/target.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/belinghy/MotionVAEs-WebGL/HEAD/models/target.onnx -------------------------------------------------------------------------------- /models/joystick.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/belinghy/MotionVAEs-WebGL/HEAD/models/joystick.onnx -------------------------------------------------------------------------------- /images/target_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/belinghy/MotionVAEs-WebGL/HEAD/images/target_demo.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Motion VAEs WebGL Demo 2 | 3 | This repo contains the source code for the [Motion VAE WebGL demo](https://www.cs.ubc.ca/~hyuling/projects/mvae/). 4 | 5 |
6 |
7 |