Views
No views yet
Approach -> Grasp -> Transport (for each gear).rl_games| Policy | Stage | Avg Reward | Critic Loss | Entropy | Status |
|---|---|---|---|---|---|
| Approach | 1 (Foundation) | ~241.4 | 3.8e-5 | 2.58 | Converged |
| Grasp | 2 (Manipulation) | ~240.9 | 3.3e-5 | -0.92 | Converged |
| Transport 1 | 3 (Assembly) | ~282.6 | 1.7e-4 | 11.2 | Robust |
policy_approach.pth: PyTorch checkpoint for the Approach phase.policy_grasp.pth: PyTorch checkpoint for the Grasping phase.policy_transport_gear_1.pth: PyTorch checkpoint for Transporting the first Sun Gear.env_config.py: The environment configuration used for training (PhysX settings, rewards).agent_config.yaml: The PPO hyperparameters.1# Pseudo-code for loading
2from rl_games.torch_runner import Runner
3
4runner = Runner()
5runner.load('policy_approach.pth')
6# ... run inference ...