├── .gitignore ├── README.md ├── images └── target_demo.gif ├── index.html └── models ├── joystick.onnx ├── mvae.onnx └── target.onnx /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/belinghy/MotionVAEs-WebGL/HEAD/README.md -------------------------------------------------------------------------------- /images/target_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/belinghy/MotionVAEs-WebGL/HEAD/images/target_demo.gif -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/belinghy/MotionVAEs-WebGL/HEAD/index.html -------------------------------------------------------------------------------- /models/joystick.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/belinghy/MotionVAEs-WebGL/HEAD/models/joystick.onnx -------------------------------------------------------------------------------- /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 --------------------------------------------------------------------------------