You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
git clone https://github.com/xiaohu-art/Track.git
cd Track
pip install -e .
Training & Evaluation
Acquire training reference motion
Train the reference motion tracking policy:
cd active-adaptation/scripts
python train_ppo.py \
task=motion \
algo=ppo_track \
task.num_envs=<num envs> \
task.name=<task name>\ # task name for wandb
total_frames=<total frames>\ # Total number of frames to collect
checkpoint_path=<checkpoint path># resume training from checkpoint
Play the trained policy:
cd active-adaptation/scripts
python play.py \
task=motion \
algo=ppo_track \
task.num_envs=<num envs> \
checkpoint_path=<checkpoint path> \
export_policy=<true or false># whether to export the policy to onnx