├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── pyproject.toml ├── rscope ├── README.md ├── __init__.py ├── __main__.py ├── brax.py ├── config.py ├── event_handler.py ├── event_handler_test.py ├── image_processing.py ├── image_processing_test.py ├── main.py ├── main_test.py ├── model_loader.py ├── rollout.py ├── rollout_test.py ├── rscope_utils.py ├── ssh_utils.py ├── ssh_utils_test.py ├── state.py ├── test_utils.py └── viewer_utils.py └── test_utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | __pycache__ 3 | *.egg-info 4 | .venv 5 | uv.lock 6 | dist/ 7 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew-Luo1/rscope/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew-Luo1/rscope/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew-Luo1/rscope/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew-Luo1/rscope/HEAD/pyproject.toml -------------------------------------------------------------------------------- /rscope/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew-Luo1/rscope/HEAD/rscope/README.md -------------------------------------------------------------------------------- /rscope/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew-Luo1/rscope/HEAD/rscope/__init__.py -------------------------------------------------------------------------------- /rscope/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew-Luo1/rscope/HEAD/rscope/__main__.py -------------------------------------------------------------------------------- /rscope/brax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew-Luo1/rscope/HEAD/rscope/brax.py -------------------------------------------------------------------------------- /rscope/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew-Luo1/rscope/HEAD/rscope/config.py -------------------------------------------------------------------------------- /rscope/event_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew-Luo1/rscope/HEAD/rscope/event_handler.py -------------------------------------------------------------------------------- /rscope/event_handler_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew-Luo1/rscope/HEAD/rscope/event_handler_test.py -------------------------------------------------------------------------------- /rscope/image_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew-Luo1/rscope/HEAD/rscope/image_processing.py -------------------------------------------------------------------------------- /rscope/image_processing_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew-Luo1/rscope/HEAD/rscope/image_processing_test.py -------------------------------------------------------------------------------- /rscope/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew-Luo1/rscope/HEAD/rscope/main.py -------------------------------------------------------------------------------- /rscope/main_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew-Luo1/rscope/HEAD/rscope/main_test.py -------------------------------------------------------------------------------- /rscope/model_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew-Luo1/rscope/HEAD/rscope/model_loader.py -------------------------------------------------------------------------------- /rscope/rollout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew-Luo1/rscope/HEAD/rscope/rollout.py -------------------------------------------------------------------------------- /rscope/rollout_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew-Luo1/rscope/HEAD/rscope/rollout_test.py -------------------------------------------------------------------------------- /rscope/rscope_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew-Luo1/rscope/HEAD/rscope/rscope_utils.py -------------------------------------------------------------------------------- /rscope/ssh_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew-Luo1/rscope/HEAD/rscope/ssh_utils.py -------------------------------------------------------------------------------- /rscope/ssh_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew-Luo1/rscope/HEAD/rscope/ssh_utils_test.py -------------------------------------------------------------------------------- /rscope/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew-Luo1/rscope/HEAD/rscope/state.py -------------------------------------------------------------------------------- /rscope/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew-Luo1/rscope/HEAD/rscope/test_utils.py -------------------------------------------------------------------------------- /rscope/viewer_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew-Luo1/rscope/HEAD/rscope/viewer_utils.py -------------------------------------------------------------------------------- /test_utils.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------