Observation:
The README says to run:
python convert.py
python generate_cand.py
However, when I run generate_cand.py, I get:
Looking at the .pkl files generated by convert.py, they only contain:
['qpos', 'jpos', 'mpos', 'torque', 'grf']
There is no mvel key.
Proposal:
In generate_cand.py, should:
nf = joblib.load(f'data/imdy_train/{item}')['mvel'].shape[0]
be changed to:
nf = joblib.load(f'data/imdy_train/{item}')['mpos'].shape[0]
Question:
Could you confirm if these changes are correct?
Observation:
The README says to run:
However, when I run
generate_cand.py, I get:Looking at the
.pklfiles generated byconvert.py, they only contain:There is no
mvelkey.Proposal:
In
generate_cand.py, should:be changed to:
Question:
Could you confirm if these changes are correct?