How can ise the policies in Isaac sim?
I have train my Unitree Go1 and ı have .pt files. But i dont know how can i use this file.
I tried change the anymal_standalone.py but it doesnt work. Because this .pt file doesnt contain “constants.pkl” and the “code”.
To use the trained .pt policy files in Isaac Sim, you need to load them using PyTorch’s torch.load() function in your script, such as anymal_standalone.py, and ensure the model is in evaluation mode with model.eval(). The policy file should output actions based on the robot’s observations (e.g., joint states, velocities), and these outputs need to be applied to the robot’s actuators in Isaac Sim. If the .pt file is missing essential files like constants.pkl or the original training code, you’ll need those to ensure proper integration. For detailed guidance, refer to the Isaac Sim documentation and forums, or visit rookiesideloader.com for more resources.