├── .gitignore ├── LICENSE ├── README.md ├── imgs ├── check.gif └── eval.gif ├── main.py └── src ├── __init__.py ├── data.py ├── explore.py ├── models.py ├── tools.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouZijie77/lift-splat-shoot-annotated/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouZijie77/lift-splat-shoot-annotated/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouZijie77/lift-splat-shoot-annotated/HEAD/README.md -------------------------------------------------------------------------------- /imgs/check.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouZijie77/lift-splat-shoot-annotated/HEAD/imgs/check.gif -------------------------------------------------------------------------------- /imgs/eval.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouZijie77/lift-splat-shoot-annotated/HEAD/imgs/eval.gif -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouZijie77/lift-splat-shoot-annotated/HEAD/main.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouZijie77/lift-splat-shoot-annotated/HEAD/src/__init__.py -------------------------------------------------------------------------------- /src/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouZijie77/lift-splat-shoot-annotated/HEAD/src/data.py -------------------------------------------------------------------------------- /src/explore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouZijie77/lift-splat-shoot-annotated/HEAD/src/explore.py -------------------------------------------------------------------------------- /src/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouZijie77/lift-splat-shoot-annotated/HEAD/src/models.py -------------------------------------------------------------------------------- /src/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouZijie77/lift-splat-shoot-annotated/HEAD/src/tools.py -------------------------------------------------------------------------------- /src/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouZijie77/lift-splat-shoot-annotated/HEAD/src/train.py --------------------------------------------------------------------------------