Skip to content
Discussion options

You must be logged in to vote

Thanks for posting this. The following script was used, I've included the code below, and it requires IsaacGymEnvs. You can call it as follows, for example:

python export_motions.py --file PATH_TO_IsaacGymEnvs/assets/amp/motions/amp_humanoid_walk.npy --threshold 0.006

where export_motions.py is:

import argparse
parser = argparse.ArgumentParser()
parser.add_argument("--file", type=str, required=True, help="Motion file (IsaacGymEnvs/assets/amp/motions)")
parser.add_argument("--threshold", type=float, default=1.0e-3, help="Threshold for data checking")
args, _ = parser.parse_known_args()
motion_file = args.file


# avoid: ImportError: PyTorch was imported before isaacgym modules
import isaa…

Replies: 2 comments 1 reply

Comment options

You must be logged in to vote
1 reply
@roboto3759
Comment options

Answer selected by roboto3759
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants