Views
No views yet
1# Clone Kinetix submodule
2git submodule update --init
3# Install uv
4curl -LsSf https://astral.sh/uv/install.sh | sh
5# Install dependencies
6uv syncgs://rtc-assets/expert/ contains expert checkpoints generated by src/train_expert.py, and gs://rtc-assets/expert/data/ contains million-transition datasets for each level (generated by src/generate_data.py). Be aware that the expert/ directory is about 60GiB in total.gs://rtc-assets/bc/ contains imitation learning policies for each level trained on the aforementioned data (generated by src/train_flow.py). These are directly usable with src/eval_flow.py.uv run src/train_expert.py
rtc-kinetix-expert and the local directory ./logs-expert/<wandb-run-name>. It is recommended to control other wandb options, like the run name, using environment variables.uv run src/generate_data.py --config.run-path ./logs-expert/<wandb-run-name>
./logs-expert/<wandb-run-name>/data/.uv run src/train_flow.py --config.run-path ./logs-expert/<wandb-run-name>
rtc-kinetix-bc and the local directory ./logs-bc/<wandb-run-name>. It is recommended to control other wandb options, like the run name, using environment variables.uv run src/eval_flow.py --config.run-path ./logs-bc/<wandb-run-name> --output-dir <output-dir>
simulated_delay in the model config to 5.uv run src/train_flow.py --config.run-path <run_path> --config.load-dir bc/24 --config.num-epochs 8 where bc is the contents of gs://rtc-assets/bc/.